@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 */
/*
 * Provides a drop-in pointer for the default Trix stylesheet that will format the toolbar and
 * the trix-editor content (whether displayed or under editing). Feel free to incorporate this
 * inclusion directly in any other asset bundle and remove this file.
 *
 *= require trix
*/
/*
 * We need to override trix.css’s image gallery styles to accommodate the
 * <action-text-attachment> element we wrap around attachments. Otherwise,
 * images in galleries will be squished by the max-width: 33%; rule.
*/
/* line 14, app/assets/stylesheets/actiontext.scss */
.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

/* line 21, app/assets/stylesheets/actiontext.scss */
.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* line 28, app/assets/stylesheets/actiontext.scss */
.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}

/* line 34, app/assets/stylesheets/actiontext.scss */
trix-editor.customized-min-height {
  min-height: 6em;
}

/* line 41, app/assets/stylesheets/actiontext.scss */
.supplier-notes-editor trix-toolbar .trix-button-group--block-tools,
.supplier-notes-editor trix-toolbar .trix-button-group--file-tools {
  display: none;
}

/* line 18, app/assets/stylesheets/application.scss */
.form-control label.label {
  padding-bottom: .1rem;
}

/* line 21, app/assets/stylesheets/application.scss */
.form-control span.label-text {
  color: black !important;
  font-weight: 500 !important;
}

/* line 27, app/assets/stylesheets/application.scss */
.select {
  padding-inline-start: 0.55rem;
  padding-inline-end: 1.85rem;
}

/* line 32, app/assets/stylesheets/application.scss */
.input {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* line 37, app/assets/stylesheets/application.scss */
.input-sm {
  padding-left: 0.35rem;
  padding-right: 0.35rem;
}

/* line 42, app/assets/stylesheets/application.scss */
.form-control > input:read-only:not([type="submit"]) {
  background-color: #f0f0f0 !important;
}

/* line 44, app/assets/stylesheets/application.scss */
.container {
  max-width: 1300px !important;
}

/* line 48, app/assets/stylesheets/application.scss */
.table-sm :where(th,td):not(:first-child):not(:last-child) {
  padding-left: .2rem;
  padding-right: .2rem;
}

/* line 53, app/assets/stylesheets/application.scss */
.table-sm button.btn {
  height: 2% !important;
  min-height: 2rem !important;
}

/* line 58, app/assets/stylesheets/application.scss */
.table-sm :where(th,td) {
  padding-left: .4rem;
  padding-right: .4rem;
  padding-top: .2rem;
  padding-bottom: .2rem;
}

/* line 69, app/assets/stylesheets/application.scss */
.modal-box {
  padding: 1rem;
  max-height: 87vh;
  max-width: 90%;
  width: 65rem;
}

/* line 76, app/assets/stylesheets/application.scss */
.modal-box select:not(.select-bordered) {
  min-width: 71px;
  padding: 0 8px;
}

@media (max-width: 54rem) {
  /* line 83, app/assets/stylesheets/application.scss */
  .modal-box {
    width: 90%;
  }
}

/* line 88, app/assets/stylesheets/application.scss */
#products .card, #suppliers .card, #sales .card, #operations .card {
  cursor: pointer !important;
}

/* line 92, app/assets/stylesheets/application.scss */
.badge-success {
  background-color: #00d7bf;
}

/* line 101, app/assets/stylesheets/application.scss */
.menu li > .active:not(ul, .menu-title, details, .btn), .menu li > :not(ul, .menu-title, details, .btn):active, .menu li > details > summary:active {
  --tw-bg-opacity: 0;
}

/* line 105, app/assets/stylesheets/application.scss */
.btn-primary {
  background-color: #2b3a9f;
  color: white !important;
  outline-color: #2b3a9f;
  border-color: #2b3a9f;
  box-shadow: none !important;
}

/* line 113, app/assets/stylesheets/application.scss */
.trix-button-group.trix-button-group--file-tools {
  display: none;
}

/* line 117, app/assets/stylesheets/application.scss */
.badge-secondary {
  background: #e2e2e2 !important;
  border-color: #e2e2e2 !important;
  color: black !important;
}

/* line 123, app/assets/stylesheets/application.scss */
.field_with_errors input {
  width: 100% !important;
}

/* Añade esto a tu archivo CSS */
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* line 150, app/assets/stylesheets/application.scss */
.slide-out-right {
  animation: slideOutRight 0.3s forwards;
}

/* line 154, app/assets/stylesheets/application.scss */
.slide-in-left {
  animation: slideInLeft 0.3s forwards;
}

/* line 163, app/assets/stylesheets/application.scss */
.input-disabled, .input:disabled, .input:has(> input[disabled]), .input[disabled], .select-disabled, .select:disabled, .select[disabled] {
  color: #424242 !important;
}

/* line 171, app/assets/stylesheets/application.scss */
.card span {
  white-space: break-spaces;
}

/* line 175, app/assets/stylesheets/application.scss */
.input input {
  color: #6a6a6a;
}

/* line 180, app/assets/stylesheets/application.scss */
.join select {
  border-color: #d7d8db;
  border-radius: 0 5px 5px 0;
  padding-left: 7px !important;
  padding-right: 7px !important;
  min-width: 60px;
}

/* line 188, app/assets/stylesheets/application.scss */
.card-absolute-right {
  right: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
  height: 100%;
}

@media (max-width: 768px) {
  /* line 188, app/assets/stylesheets/application.scss */
  .card-absolute-right {
    height: calc(100% - 1rem);
  }
}

/* line 199, app/assets/stylesheets/application.scss */
.height-card-absolute-right {
  height: calc(100% - 1rem) !important;
}

/* line 203, app/assets/stylesheets/application.scss */
.input:has(> input[disabled]) > input[disabled] {
  background: #f6f6f6;
}

/* line 207, app/assets/stylesheets/application.scss */
label.input.disabled {
  background: #f6f6f6 !important;
}

/* line 211, app/assets/stylesheets/application.scss */
#revenueChart {
  width: 100%;
  height: 100%;
}

/* line 216, app/assets/stylesheets/application.scss */
.chart-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  /* Ajusta la altura según tus necesidades */
}

/* line 222, app/assets/stylesheets/application.scss */
#revenueChart, #circleChart {
  max-width: 800px;
  max-height: 800px;
}

/* line 229, app/assets/stylesheets/application.scss */
form span.font-medium {
  font-weight: normal;
  white-space: nowrap;
}

/* line 235, app/assets/stylesheets/application.scss */
.card-information {
  background: #f8f8f8;
}

/* line 240, app/assets/stylesheets/application.scss */
.card-body {
  padding: 0.5rem 1rem !important;
}

/* line 245, app/assets/stylesheets/application.scss */
.badge-celeste {
  background-color: #bbf3ed !important;
}

/* line 249, app/assets/stylesheets/application.scss */
.badge-azul {
  background-color: #ccdefe !important;
}

/* line 253, app/assets/stylesheets/application.scss */
.badge-outline {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  /* line 257, app/assets/stylesheets/application.scss */
  #structure-tabs .tab span {
    font-size: 0.8rem;
  }
}

/* line 263, app/assets/stylesheets/application.scss */
hr {
  color: #e2e2e2;
}

/* line 267, app/assets/stylesheets/application.scss */
.package-products-drag-handle {
  cursor: grab;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

/* line 272, app/assets/stylesheets/application.scss */
.package-products-drag-handle:active {
  cursor: grabbing;
}

/* line 276, app/assets/stylesheets/application.scss */
tbody.package-products-drag-active tr[data-package-products-target="itemRow"] {
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 280, app/assets/stylesheets/application.scss */
tr.package-products-row-dragging {
  opacity: 0.65;
  background-color: #eef6ff;
  transform: scale(0.995);
}

/* line 286, app/assets/stylesheets/application.scss */
tr.package-products-row-drop-before {
  box-shadow: inset 0 3px 0 #2b3a9f;
  background-color: #f5f8ff;
}

/* line 291, app/assets/stylesheets/application.scss */
tr.package-products-row-drop-after {
  box-shadow: inset 0 -3px 0 #2b3a9f;
  background-color: #f5f8ff;
}

/* line 300, app/assets/stylesheets/application.scss */
button.btn, a.btn, .input.input-bordered, select.select-bordered, input[type='submit'], input.file-input {
  height: 2rem;
  min-height: 2rem;
  font-size: 0.85rem;
}

/* line 306, app/assets/stylesheets/application.scss */
[type='number']::-webkit-outer-spin-button,
[type='number']::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 312, app/assets/stylesheets/application.scss */
[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* line 317, app/assets/stylesheets/application.scss */
span.text-gray-500, [multiple], [type=date], [type=datetime-local], [type=email], [type=month], [type=number], [type=password], [type=search], [type=tel], [type=text], [type=time], [type=url], [type=week], input:where(:not([type])), select, textarea {
  font-size: 0.85rem;
}

/* line 322, app/assets/stylesheets/application.scss */
span.page a {
  background: #e5e5e5;
  padding: 0.5rem;
  text-align: center;
  line-height: 1rem;
  display: inline-block;
  border-radius: 4px;
}

/* line 331, app/assets/stylesheets/application.scss */
span.page.active {
  padding: 0.5rem;
  text-align: center;
  line-height: 1rem;
  display: inline-block;
  border-radius: 4px;
  background: #2b3a9f;
  color: white;
}

/* line 342, app/assets/stylesheets/application.scss */
::placeholder {
  color: oklch(0.278078 0.029596 256.848) !important;
  opacity: 1;
}

/* line 347, app/assets/stylesheets/application.scss */
.input-disabled, .input:disabled, .input:has(> input[disabled]), .input[disabled] {
  background: #f5f5f5 !important;
  border: 0;
}

/* line 351, app/assets/stylesheets/application.scss */
.input-disabled, .input:disabled, .input:has(> input[readonly]), .input[readonly] {
  background: #f5f5f5 !important;
  border: 0;
}

/* line 356, app/assets/stylesheets/application.scss */
.card-compact .card-body {
  padding-bottom: 0.4rem;
  padding-top: 0.6rem;
}

/* line 361, app/assets/stylesheets/application.scss */
.card.clickeable {
  border: 1px solid transparent;
}

/* line 365, app/assets/stylesheets/application.scss */
.card.clickeable:hover {
  background-color: #eef8fc !important;
  border: 1px solid #2b3a9f !important;
  cursor: pointer !important;
}

/* line 371, app/assets/stylesheets/application.scss */
.remove-sale-extra {
  width: 100%;
  height: 100%;
}

/* line 376, app/assets/stylesheets/application.scss */
.product-tab {
  min-width: 8rem;
  height: 2.5rem;
  min-height: 2.5rem;
  font-size: 0.9rem;
  border-radius: 0;
}

/* line 384, app/assets/stylesheets/application.scss */
.input:focus, .input:focus-within {
  border-color: var(--fallback-bc, oklch(var(--bc)/0.2));
  box-shadow: none;
  outline-color: var(--fallback-bc, oklch(var(--bc)/0.2));
  outline-offset: 0;
  outline-style: solid;
  outline-width: 0;
}

/* line 402, app/assets/stylesheets/application.scss */
.tabs-boxed .tab {
  min-width: 80px;
}

/* line 406, app/assets/stylesheets/application.scss */
.menu :where(li ul):before {
  opacity: 0 !important;
}

/* line 410, app/assets/stylesheets/application.scss */
.menu :where(li ul) {
  margin: 0 !important;
  padding: 0 !important;
}
