/* ============================================================
   Entrada del build de Tailwind — facturación NI
   Salida: app/web/static/css/app.css   (npm run css)

   Este archivo es AHORA la única fuente del diseño. Ya no existe un
   `theme.css` suelto en la raíz: los tokens viven acá, en `@layer base`, y
   `tailwind.config.js` los referencia. Un solo archivo, un solo build.

   Por qué los colores siguen siendo variables CSS y no valores en el config:
   porque el modo oscuro y las tres densidades cambian los MISMOS tokens en
   tiempo de ejecución, con un atributo en <html>. Si los valores vivieran en
   el config, Tailwind generaría dos juegos de clases y habría que duplicar
   cada utilidad. Con variables, `bg-card` sirve para claro, oscuro y las tres
   densidades sin generar una clase de más.

   Las decisiones de color, contraste y densidad están explicadas en
   `guia-ui.md`, que sigue siendo la ley.
   ============================================================ */

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com *//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: var(--font-sans); /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: var(--font-mono); /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
  :root {
    /* --- Superficies: gris cálido neutro, no blanco ---------------
       El lienzo y la superficie casi no se distinguen: en esta estética el
       panel se lee por su hairline, no por su relleno. Que la tarjeta sea
       apenas más clara que el fondo alcanza para que un `thead` pegajoso
       tape lo que pasa por debajo. */
    --background:        240 3% 95%;    /* #f2f2f3 */
    --foreground:        200 4% 12%;    /* #1d1f20 */
    --card:              240 6% 97%;    /* #f7f7f8 */
    --card-foreground:   200 4% 12%;
    --popover:           240 6% 97%;
    --popover-foreground:200 4% 12%;

    --muted:             240 5% 91%;    /* #e7e7ea */
    --muted-foreground:  240 2% 48%;    /* #7a7a7d */

    --border:            240 4% 84%;    /* #d4d4d7 hairline */
    --input:             240 3% 79%;
    --ring:              210 33% 38%;

    /* --- Acento: azul acero -------------------------------------
       El de la referencia es #5980a6 y da 3.71:1 sobre el lienzo: no pasa AA
       para texto ni para el rótulo de un botón. Se conserva el tono y se baja
       la luminosidad a #416180 —5.78:1 en texto, 6.47:1 en el botón—, que es
       exactamente el mismo arreglo que ya se le había hecho al violeta. */
    --primary:           210 33% 38%;   /* #416180 */
    --primary-foreground:0 0% 100%;
    --primary-hover:     210 36% 27%;   /* #2c455d */
    --primary-tint:      210 100% 97%;  /* #eef6ff */
    --primary-tint-fg:   210 36% 27%;   /* #2c455d */

    --secondary:         240 5% 91%;
    --secondary-foreground: 200 4% 18%;
    --accent:            240 5% 91%;
    --accent-foreground: 200 4% 18%;

    /* --- Estados: siempre acompañados de glifo + palabra -------- */
    --success:           164 78% 24%;
    --success-bg:        164 30% 90%;
    --warning:           30 90% 26%;
    --warning-bg:        38 60% 90%;
    --destructive:       4 68% 38%;
    --destructive-foreground: 0 0% 100%;
    --destructive-bg:    4 55% 93%;
    --neutral-state:     240 2% 40%;
    --neutral-state-bg:  240 5% 91%;

    /* --- Forma: esquina recta ------------------------------------
       Es el rasgo que más define esta estética. Los componentes son objetos
       de plano técnico: cuadrados, con borde de un pelo y sin relleno. */
    --radius:       0px;
    --radius-card:  0px;

    /* Barlow para el texto y Barlow Condensed para los títulos, que es lo que
       da el aire industrial. El mono se queda para las cifras: en un sistema
       fiscal una columna de montos que no alinea es un defecto, no un gusto. */
    --font-sans: "Barlow", ui-sans-serif, system-ui, sans-serif;
    --font-titulo: "Barlow Condensed", "Barlow", ui-sans-serif, sans-serif;
    --font-mono: "JetBrains Mono", "IBM Plex Mono", ui-monospace, monospace;

    /* --- Densidad ------------------------------------------------ */
    --row-h:       2.5rem;
    --control-h:   2.25rem;
    --pad-cell:    0.5rem 0.625rem;
    --text-base:   0.9375rem;           /* 15px: pantallas de 1366 y vista
                                           cansada. La referencia usa 13 y esa
                                           es la única densidad que no se copia. */
  }

  [data-density="compacta"] {
    --row-h:     2rem;                  /* 32px: kardex, mayor */
    --control-h: 2rem;
    --pad-cell:  0.3125rem 0.5rem;
  }

  [data-density="caja"] {
    --row-h:     2.75rem;               /* 44px: touch en mostrador */
    --control-h: 2.75rem;
    --text-base: 1rem;
  }

  .dark {
    --background:        200 5% 11%;
    --foreground:        240 6% 92%;
    --card:              200 5% 14%;
    --card-foreground:   240 6% 92%;
    --popover:           200 5% 14%;
    --popover-foreground:240 6% 92%;
    --muted:             200 5% 19%;
    --muted-foreground:  240 3% 63%;
    --border:            200 5% 26%;
    --input:             200 5% 30%;
    --ring:              210 45% 62%;
    --primary:           210 40% 60%;
    --primary-foreground:200 10% 10%;
    --primary-hover:     210 45% 68%;
    --primary-tint:      210 30% 22%;
    --primary-tint-fg:   210 60% 84%;
    --secondary:         200 5% 20%;
    --secondary-foreground: 240 6% 90%;
    --accent:            200 5% 20%;
    --accent-foreground: 240 6% 90%;
    --success:           164 45% 60%;
    --success-bg:        164 25% 17%;
    --warning:           38 65% 62%;
    --warning-bg:        36 32% 18%;
    /* 64% daba 4.48:1 sobre `--destructive-bg` y el piso de la guía es
       4.5. Se sube la luminosidad tres puntos —el tono no se toca— y
       queda en 4.95:1. Es el mismo arreglo que ya se le hizo dos veces
       al acento: el piso de contraste no se negocia, el tono sí se
       respeta. El estado "vencida" es texto rojo sobre fondo rojo
       oscuro, la combinación más apretada de toda la paleta. */
    --destructive:       4 65% 67%;
    --destructive-bg:    4 32% 19%;
    --neutral-state:     240 3% 66%;
    --neutral-state-bg:  200 5% 20%;
  }

  html { font-size: 100%; }

  body {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--background) / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: hsl(var(--foreground) / var(--tw-text-opacity, 1));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    font-family: var(--font-sans);
    font-size: var(--text-base);
}

  /* Los títulos llevan la condensada. Es lo que hace que la pantalla se lea
     como un plano y no como una app genérica. */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titulo);
    font-weight: 600;
    letter-spacing: -0.01em;
  }

  /* Foco visible en todo control: hay gente que factura sin soltar el
     teclado, y un foco invisible la deja sin saber dónde está. */
  :where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity, 1));
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: hsl(var(--background) / 1);
}

  /* La firma del sistema: toda cifra en mono tabular a la derecha.
     Va en `base` y no como utilidad porque aplica a un elemento por lo que
     ES (un input de monto), no por cómo se lo quiera ver. */
  input[inputmode="decimal"] {
  text-align: right;
  font-family: var(--font-mono);
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: .01ms !important;
      transition-duration: .01ms !important;
    }
  }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-y-0 {
  top: 0px;
  bottom: 0px;
}
.-top-12 {
  top: -3rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-full {
  bottom: 100%;
}
.left-2 {
  left: 0.5rem;
}
.left-2\.5 {
  left: 0.625rem;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.z-10 {
  z-index: 10;
}
.z-30 {
  z-index: 30;
}
.col-span-full {
  grid-column: 1 / -1;
}
.m-0 {
  margin: 0px;
}
.m-auto {
  margin: auto;
}
.my-0\.5 {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.-mb-px {
  margin-bottom: -1px;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-3\.5 {
  margin-bottom: 0.875rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-1\.5 {
  margin-top: 0.375rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-2\.5 {
  margin-top: 0.625rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-auto {
  margin-top: auto;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.table-header-group {
  display: table-header-group;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.size-3\.5 {
  width: 0.875rem;
  height: 0.875rem;
}
.size-4 {
  width: 1rem;
  height: 1rem;
}
.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}
.size-7 {
  width: 1.75rem;
  height: 1.75rem;
}
.size-\[1\.125rem\] {
  width: 1.125rem;
  height: 1.125rem;
}
.size-\[1\.625rem\] {
  width: 1.625rem;
  height: 1.625rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-24 {
  height: 6rem;
}
.h-8 {
  height: 2rem;
}
.h-\[7rem\] {
  height: 7rem;
}
.h-\[8\.5rem\] {
  height: 8.5rem;
}
.h-control {
  height: var(--control-h);
}
.h-fila {
  height: var(--row-h);
}
.h-full {
  height: 100%;
}
.max-h-72 {
  max-height: 18rem;
}
.max-h-\[70vh\] {
  max-height: 70vh;
}
.max-h-\[min\(32rem\2c calc\(100vh-6rem\)\)\] {
  max-height: min(32rem, calc(100vh - 6rem));
}
.min-h-\[\.125rem\] {
  min-height: .125rem;
}
.min-h-\[3rem\] {
  min-height: 3rem;
}
.min-h-control {
  min-height: var(--control-h);
}
.min-h-screen {
  min-height: 100vh;
}
.min-h-toque {
  min-height: 2.75rem;
}
.w-11 {
  width: 2.75rem;
}
.w-36 {
  width: 9rem;
}
.w-40 {
  width: 10rem;
}
.w-44 {
  width: 11rem;
}
.w-48 {
  width: 12rem;
}
.w-56 {
  width: 14rem;
}
.w-6 {
  width: 1.5rem;
}
.w-60 {
  width: 15rem;
}
.w-\[11rem\] {
  width: 11rem;
}
.w-\[min\(26rem\2c calc\(100vw-2rem\)\)\] {
  width: min(26rem, calc(100vw - 2rem));
}
.w-\[min\(34rem\2c 92vw\)\] {
  width: min(34rem, 92vw);
}
.w-auto {
  width: auto;
}
.w-control {
  width: var(--control-h);
}
.w-full {
  width: 100%;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[10rem\] {
  min-width: 10rem;
}
.min-w-\[11rem\] {
  min-width: 11rem;
}
.min-w-\[12rem\] {
  min-width: 12rem;
}
.min-w-\[13rem\] {
  min-width: 13rem;
}
.min-w-\[14rem\] {
  min-width: 14rem;
}
.min-w-\[15rem\] {
  min-width: 15rem;
}
.min-w-\[16rem\] {
  min-width: 16rem;
}
.min-w-\[18rem\] {
  min-width: 18rem;
}
.min-w-\[9rem\] {
  min-width: 9rem;
}
.max-w-\[1\.5rem\] {
  max-width: 1.5rem;
}
.max-w-\[24rem\] {
  max-width: 24rem;
}
.max-w-\[46rem\] {
  max-width: 46rem;
}
.max-w-\[56rem\] {
  max-width: 56rem;
}
.max-w-\[60rem\] {
  max-width: 60rem;
}
.max-w-\[64rem\] {
  max-width: 64rem;
}
.max-w-full {
  max-width: 100%;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-grab {
  cursor: grab;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.cursor-pointer {
  cursor: pointer;
}
.select-none {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.resize-y {
  resize: vertical;
}
.resize {
  resize: both;
}
.list-disc {
  list-style-type: disc;
}
.list-none {
  list-style-type: none;
}
.auto-cols-\[minmax\(17rem\2c 1fr\)\] {
  grid-auto-columns: minmax(17rem,1fr);
}
.grid-flow-col {
  grid-auto-flow: column;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-\[minmax\(6rem\2c auto\)_1fr\] {
  grid-template-columns: minmax(6rem,auto) 1fr;
}
.grid-cols-app {
  grid-template-columns: 13.5rem 1fr;
}
.grid-cols-emision {
  grid-template-columns: 1fr 19rem;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.place-items-center {
  place-items: center;
}
.content-start {
  align-content: flex-start;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.items-stretch {
  align-items: stretch;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0 {
  gap: 0px;
}
.gap-0\.5 {
  gap: 0.125rem;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-3\.5 {
  gap: 0.875rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-\[\.3125rem\] {
  gap: .3125rem;
}
.gap-px {
  gap: 1px;
}
.gap-x-3 {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-1 {
  row-gap: 0.25rem;
}
.gap-y-3\.5 {
  row-gap: 0.875rem;
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overscroll-x-contain {
  overscroll-behavior-x: contain;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.whitespace-pre-line {
  white-space: pre-line;
}
.break-words {
  overflow-wrap: break-word;
}
.rounded-\[\.4375rem\] {
  border-radius: .4375rem;
}
.rounded-card {
  border-radius: var(--radius-card);
}
.rounded-control {
  border-radius: var(--radius);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-r-control {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
.rounded-t-\[\.25rem\] {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}
.rounded-t-\[4px\] {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.\!border-destructive {
  --tw-border-opacity: 1 !important;
  border-color: hsl(var(--destructive) / var(--tw-border-opacity, 1)) !important;
}
.border-border {
  --tw-border-opacity: 1;
  border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
}
.border-destructive {
  --tw-border-opacity: 1;
  border-color: hsl(var(--destructive) / var(--tw-border-opacity, 1));
}
.border-destructive\/30 {
  border-color: hsl(var(--destructive) / 0.3);
}
.border-foreground\/40 {
  border-color: hsl(var(--foreground) / 0.4);
}
.border-input {
  --tw-border-opacity: 1;
  border-color: hsl(var(--input) / var(--tw-border-opacity, 1));
}
.border-primary {
  --tw-border-opacity: 1;
  border-color: hsl(var(--primary) / var(--tw-border-opacity, 1));
}
.border-primary\/30 {
  border-color: hsl(var(--primary) / 0.3);
}
.border-success\/30 {
  border-color: hsl(var(--success) / 0.3);
}
.border-transparent {
  border-color: transparent;
}
.border-warning\/30 {
  border-color: hsl(var(--warning) / 0.3);
}
.border-b-transparent {
  border-bottom-color: transparent;
}
.bg-border {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--border) / var(--tw-bg-opacity, 1));
}
.bg-card {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--card) / var(--tw-bg-opacity, 1));
}
.bg-destructive {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--destructive) / var(--tw-bg-opacity, 1));
}
.bg-destructive-bg {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--destructive-bg) / var(--tw-bg-opacity, 1));
}
.bg-foreground {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--foreground) / var(--tw-bg-opacity, 1));
}
.bg-muted {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--muted) / var(--tw-bg-opacity, 1));
}
.bg-muted-foreground\/35 {
  background-color: hsl(var(--muted-foreground) / 0.35);
}
.bg-muted-foreground\/80 {
  background-color: hsl(var(--muted-foreground) / 0.8);
}
.bg-muted\/40 {
  background-color: hsl(var(--muted) / 0.4);
}
.bg-muted\/50 {
  background-color: hsl(var(--muted) / 0.5);
}
.bg-muted\/60 {
  background-color: hsl(var(--muted) / 0.6);
}
.bg-neutro-bg {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--neutral-state-bg) / var(--tw-bg-opacity, 1));
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--primary) / var(--tw-bg-opacity, 1));
}
.bg-primary-tint {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--primary-tint) / var(--tw-bg-opacity, 1));
}
.bg-success-bg {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--success-bg) / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-warning-bg {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--warning-bg) / var(--tw-bg-opacity, 1));
}
.fill-none {
  fill: none;
}
.stroke-current {
  stroke: currentColor;
}
.stroke-\[1\.75\] {
  stroke-width: 1.75;
}
.p-0 {
  padding: 0px;
}
.p-3 {
  padding: 0.75rem;
}
.p-3\.5 {
  padding: 0.875rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-celda {
  padding: var(--pad-cell);
}
.\!px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5 {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-\[\.5625rem\] {
  padding-left: .5625rem;
  padding-right: .5625rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5 {
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-3\.5 {
  padding-bottom: 0.875rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pr-11 {
  padding-right: 2.75rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-2\.5 {
  padding-top: 0.625rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-px {
  padding-top: 1px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-mono {
  font-family: var(--font-mono);
}
.font-sans {
  font-family: var(--font-sans);
}
.font-titulo {
  font-family: var(--font-titulo);
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-\[\.625rem\] {
  font-size: .625rem;
}
.text-\[\.6875rem\] {
  font-size: .6875rem;
}
.text-\[\.78125rem\] {
  font-size: .78125rem;
}
.text-\[\.8125rem\] {
  font-size: .8125rem;
}
.text-\[\.875em\] {
  font-size: .875em;
}
.text-\[\.9375rem\] {
  font-size: .9375rem;
}
.text-\[\.9em\] {
  font-size: .9em;
}
.text-\[1\.0625rem\] {
  font-size: 1.0625rem;
}
.text-\[1\.3125rem\] {
  font-size: 1.3125rem;
}
.text-\[2\.5rem\] {
  font-size: 2.5rem;
}
.text-\[2\.75rem\] {
  font-size: 2.75rem;
}
.text-base {
  font-size: var(--text-base);
  line-height: 1.45;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.tabular-nums {
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-snug {
  line-height: 1.375;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[\.01em\] {
  letter-spacing: .01em;
}
.tracking-\[\.05em\] {
  letter-spacing: .05em;
}
.tracking-\[\.08em\] {
  letter-spacing: .08em;
}
.tracking-normal {
  letter-spacing: 0em;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.text-destructive {
  --tw-text-opacity: 1;
  color: hsl(var(--destructive) / var(--tw-text-opacity, 1));
}
.text-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--foreground) / var(--tw-text-opacity, 1));
}
.text-inherit {
  color: inherit;
}
.text-muted-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--muted-foreground) / var(--tw-text-opacity, 1));
}
.text-muted-foreground\/50 {
  color: hsl(var(--muted-foreground) / 0.5);
}
.text-neutro {
  --tw-text-opacity: 1;
  color: hsl(var(--neutral-state) / var(--tw-text-opacity, 1));
}
.text-primary {
  --tw-text-opacity: 1;
  color: hsl(var(--primary) / var(--tw-text-opacity, 1));
}
.text-primary-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--primary-foreground) / var(--tw-text-opacity, 1));
}
.text-primary-tint-fg {
  --tw-text-opacity: 1;
  color: hsl(var(--primary-tint-fg) / var(--tw-text-opacity, 1));
}
.text-success {
  --tw-text-opacity: 1;
  color: hsl(var(--success) / var(--tw-text-opacity, 1));
}
.text-warning {
  --tw-text-opacity: 1;
  color: hsl(var(--warning) / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.decoration-border {
  text-decoration-color: hsl(var(--border) / 1);
}
.underline-offset-2 {
  text-underline-offset: 2px;
}
.accent-primary {
  accent-color: hsl(var(--primary) / 1);
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.outline {
  outline-style: solid;
}
.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-primary {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--primary) / var(--tw-ring-opacity, 1));
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
  /* Tailwind no trae una utilidad de `letter-spacing` negativo tan fino, y
     las columnas de montos la necesitan para que los miles no se separen. */
  .tracking-cifra { letter-spacing: -0.01em; }
.\[grid-column\:1\/-1\] {
  grid-column: 1/-1;
}
.\[grid-template-columns\:1\.6fr_1fr\] {
  grid-template-columns: 1.6fr 1fr;
}
.\[grid-template-columns\:1\.7fr_1fr\] {
  grid-template-columns: 1.7fr 1fr;
}
.\[grid-template-columns\:1fr_1\.6fr\] {
  grid-template-columns: 1fr 1.6fr;
}
.\[grid-template-columns\:minmax\(0\2c 1fr\)_minmax\(0\2c 1\.15fr\)\] {
  grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);
}
.\[grid-template-columns\:minmax\(0\2c 1fr\)_minmax\(17rem\2c 26rem\)\] {
  grid-template-columns: minmax(0,1fr) minmax(17rem,26rem);
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(10rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(10rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(11rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(11rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(12rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(12rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(13rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(13rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(14rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(14rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(15rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(15rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(16rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(16rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(18rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(18rem,1fr));
}
.\[grid-template-columns\:repeat\(auto-fit\2c minmax\(21rem\2c 1fr\)\)\] {
  grid-template-columns: repeat(auto-fit,minmax(21rem,1fr));
}
.\[overflow-wrap\:anywhere\] {
  overflow-wrap: anywhere;
}
.\[scrollbar-width\:thin\] {
  scrollbar-width: thin;
}
.\[stroke-linecap\:round\] {
  stroke-linecap: round;
}
.\[stroke-linejoin\:round\] {
  stroke-linejoin: round;
}
.placeholder\:text-muted-foreground::-moz-placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--muted-foreground) / var(--tw-text-opacity, 1));
}
.placeholder\:text-muted-foreground::placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--muted-foreground) / var(--tw-text-opacity, 1));
}
.backdrop\:bg-foreground\/40::backdrop {
  background-color: hsl(var(--foreground) / 0.4);
}
.first\:border-t-0:first-child {
  border-top-width: 0px;
}
.first\:pt-0:first-child {
  padding-top: 0px;
}
.empty\:hidden:empty {
  display: none;
}
.hover\:border-muted-foreground\/45:hover {
  border-color: hsl(var(--muted-foreground) / 0.45);
}
.hover\:border-primary-hover:hover {
  --tw-border-opacity: 1;
  border-color: hsl(var(--primary-hover) / var(--tw-border-opacity, 1));
}
.hover\:bg-destructive-bg:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--destructive-bg) / var(--tw-bg-opacity, 1));
}
.hover\:bg-muted:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--muted) / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-hover:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--primary-hover) / var(--tw-bg-opacity, 1));
}
.hover\:text-foreground:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--foreground) / var(--tw-text-opacity, 1));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:decoration-current:hover {
  text-decoration-color: currentColor;
}
.focus\:top-2:focus {
  top: 0.5rem;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-ring:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity, 1));
}
.active\:bg-secondary:active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--secondary) / var(--tw-bg-opacity, 1));
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:border-border:disabled {
  --tw-border-opacity: 1;
  border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
}
.disabled\:bg-muted:disabled {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--muted) / var(--tw-bg-opacity, 1));
}
.disabled\:text-muted-foreground:disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--muted-foreground) / var(--tw-text-opacity, 1));
}
.disabled\:hover\:border-border:hover:disabled {
  --tw-border-opacity: 1;
  border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
}
.disabled\:hover\:bg-muted:hover:disabled {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--muted) / var(--tw-bg-opacity, 1));
}
.peer:checked ~ .peer-checked\:flex {
  display: flex;
}
.peer:checked ~ .peer-checked\:bg-muted {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--muted) / var(--tw-bg-opacity, 1));
}
.peer:checked ~ .peer-checked\:text-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--foreground) / var(--tw-text-opacity, 1));
}
.peer:checked ~ .peer-checked\:text-warning {
  --tw-text-opacity: 1;
  color: hsl(var(--warning) / var(--tw-text-opacity, 1));
}
.peer:focus-visible ~ .peer-focus-visible\:rounded-control {
  border-radius: var(--radius);
}
.peer:focus-visible ~ .peer-focus-visible\:ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.peer:focus-visible ~ .peer-focus-visible\:ring-ring {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity, 1));
}
.peer:focus-visible ~ .peer-focus-visible\:ring-offset-2 {
  --tw-ring-offset-width: 2px;
}
.peer:focus-visible ~ .peer-focus-visible\:ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background) / 1);
}
@media not all and (min-width: 1280px) {

  .max-xl\:hidden {
    display: none;
  }

  .max-xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media not all and (min-width: 1024px) {

  .max-lg\:sticky {
    position: sticky;
  }

  .max-lg\:top-0 {
    top: 0px;
  }

  .max-lg\:z-20 {
    z-index: 20;
  }

  .max-lg\:order-1 {
    order: 1;
  }

  .max-lg\:order-2 {
    order: 2;
  }

  .max-lg\:order-3 {
    order: 3;
  }

  .max-lg\:order-4 {
    order: 4;
  }

  .max-lg\:order-5 {
    order: 5;
  }

  .max-lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .max-lg\:mt-0 {
    margin-top: 0px;
  }

  .max-lg\:block {
    display: block;
  }

  .max-lg\:flex {
    display: flex;
  }

  .max-lg\:hidden {
    display: none;
  }

  .max-lg\:size-\[2\.75rem\] {
    width: 2.75rem;
    height: 2.75rem;
  }

  .max-lg\:min-h-toque {
    min-height: 2.75rem;
  }

  .max-lg\:w-auto {
    width: auto;
  }

  .max-lg\:min-w-toque {
    min-width: 2.75rem;
  }

  .max-lg\:grow {
    flex-grow: 1;
  }

  .max-lg\:basis-full {
    flex-basis: 100%;
  }

  .max-lg\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .max-lg\:flex-row {
    flex-direction: row;
  }

  .max-lg\:flex-wrap {
    flex-wrap: wrap;
  }

  .max-lg\:content-start {
    align-content: flex-start;
  }

  .max-lg\:items-center {
    align-items: center;
  }

  .max-lg\:items-stretch {
    align-items: stretch;
  }

  .max-lg\:justify-start {
    justify-content: flex-start;
  }

  .max-lg\:gap-2 {
    gap: 0.5rem;
  }

  .max-lg\:justify-self-end {
    justify-self: end;
  }

  .max-lg\:border-b {
    border-bottom-width: 1px;
  }

  .max-lg\:border-r-0 {
    border-right-width: 0px;
  }

  .max-lg\:border-t {
    border-top-width: 1px;
  }

  .max-lg\:border-border {
    --tw-border-opacity: 1;
    border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
  }

  .max-lg\:\!px-3\.5 {
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .max-lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .max-lg\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  .max-lg\:pt-1 {
    padding-top: 0.25rem;
  }
}
@media not all and (min-width: 768px) {

  .max-md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .max-md\:block {
    display: block;
  }

  .max-md\:hidden {
    display: none;
  }

  .max-md\:w-full {
    width: 100%;
  }

  .max-md\:max-w-6 {
    max-width: 1.5rem;
  }

  .max-md\:flex-col {
    flex-direction: column;
  }

  .max-md\:items-stretch {
    align-items: stretch;
  }

  .max-md\:gap-3 {
    gap: 0.75rem;
  }

  .max-md\:gap-6 {
    gap: 1.5rem;
  }

  .max-md\:self-end {
    align-self: flex-end;
  }

  .max-md\:justify-self-end {
    justify-self: end;
  }

  .max-md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .max-md\:pt-4 {
    padding-top: 1rem;
  }

  .max-md\:text-left {
    text-align: left;
  }

  .max-md\:text-\[2rem\] {
    font-size: 2rem;
  }

  .max-md\:font-medium {
    font-weight: 500;
  }
}

@media (min-width: 1024px) {
  html.sidebar-colapsado .grid-cols-app {
    grid-template-columns: minmax(0, 1fr);
  }

  html.sidebar-colapsado #sidebar {
    display: none;
  }
}
@media not all and (min-width: 640px) {

  .max-sm\:bottom-3 {
    bottom: 0.75rem;
  }

  .max-sm\:right-3 {
    right: 0.75rem;
  }

  .max-sm\:hidden {
    display: none;
  }

  .max-sm\:w-full {
    width: 100%;
  }

  .max-sm\:min-w-0 {
    min-width: 0px;
  }

  .max-sm\:grow {
    flex-grow: 1;
  }

  .max-sm\:flex-col {
    flex-direction: column;
  }

  .max-sm\:items-start {
    align-items: flex-start;
  }

  .max-sm\:items-stretch {
    align-items: stretch;
  }

  .max-sm\:justify-between {
    justify-content: space-between;
  }

  .max-sm\:gap-1\.5 {
    gap: 0.375rem;
  }

  .max-sm\:p-3 {
    padding: 0.75rem;
  }

  .max-sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 640px) {

  .sm\:block {
    display: block;
  }

  .sm\:table-cell {
    display: table-cell;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:w-28 {
    width: 7rem;
  }

  .sm\:items-end {
    align-items: flex-end;
  }
}
@media (min-width: 768px) {

  .md\:table-cell {
    display: table-cell;
  }

  .md\:hidden {
    display: none;
  }
}
@media (min-width: 1024px) {

  .lg\:sticky {
    position: sticky;
  }

  .lg\:top-0 {
    top: 0px;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:table-cell {
    display: table-cell;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:table-fixed {
    table-layout: fixed;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:divide-x > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
  }

  .lg\:divide-border > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity: 1;
    border-color: hsl(var(--border) / var(--tw-divide-opacity, 1));
  }

  .lg\:pb-\[1\.125rem\] {
    padding-bottom: 1.125rem;
  }

  .lg\:pt-1\.5 {
    padding-top: 0.375rem;
  }
}
@media (min-width: 1280px) {

  .xl\:sticky {
    position: sticky;
  }

  .xl\:top-4 {
    top: 1rem;
  }

  .xl\:table-cell {
    display: table-cell;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:min-w-\[62rem\] {
    min-width: 62rem;
  }

  .xl\:min-w-\[64rem\] {
    min-width: 64rem;
  }

  .xl\:min-w-\[70rem\] {
    min-width: 70rem;
  }

  .xl\:grid-cols-emision {
    grid-template-columns: 1fr 19rem;
  }

  .xl\:\[grid-template-columns\:minmax\(0\2c 1fr\)_19rem\] {
    grid-template-columns: minmax(0,1fr) 19rem;
  }

  .xl\:\[grid-template-columns\:minmax\(0\2c 1fr\)_22rem\] {
    grid-template-columns: minmax(0,1fr) 22rem;
  }

  .xl\:\[grid-template-columns\:minmax\(0\2c 76rem\)_19rem\] {
    grid-template-columns: minmax(0,76rem) 19rem;
  }

  .xl\:\[grid-template-columns\:minmax\(0\2c 76rem\)_20rem\] {
    grid-template-columns: minmax(0,76rem) 20rem;
  }
}
@media print {

  .print\:hidden {
    display: none;
  }
}
.\[\&\:\:-webkit-details-marker\]\:hidden::-webkit-details-marker {
  display: none;
}
@media not all and (min-width: 1024px) {

  .max-lg\:\[\&_tbody\]\:block tbody {
    display: block;
  }
}
@media not all and (min-width: 768px) {

  .max-md\:\[\&_tbody\]\:block tbody {
    display: block;
  }
}
@media not all and (min-width: 1024px) {

  .max-lg\:\[\&_td\]\:block td {
    display: block;
  }

  .max-lg\:\[\&_td\]\:h-auto td {
    height: auto;
  }

  .max-lg\:\[\&_td\]\:border-0 td {
    border-width: 0px;
  }

  .max-lg\:\[\&_td\]\:p-0 td {
    padding: 0px;
  }
}
@media not all and (min-width: 768px) {

  .max-md\:\[\&_td\]\:h-auto td {
    height: auto;
  }

  .max-md\:\[\&_td\]\:border-0 td {
    border-width: 0px;
  }

  .max-md\:\[\&_td\]\:p-0 td {
    padding: 0px;
  }
}
@media not all and (min-width: 1024px) {

  .max-lg\:\[\&_thead\]\:hidden thead {
    display: none;
  }
}
@media not all and (min-width: 768px) {

  .max-md\:\[\&_thead\]\:hidden thead {
    display: none;
  }
}
@media not all and (min-width: 1024px) {

  .max-lg\:\[\&_tr\.linea\]\:grid tr.linea {
    display: grid;
  }

  .max-lg\:\[\&_tr\.linea\]\:grid-cols-2 tr.linea {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .max-lg\:\[\&_tr\.linea\]\:gap-2 tr.linea {
    gap: 0.5rem;
  }

  .max-lg\:\[\&_tr\.linea\]\:border-b tr.linea {
    border-bottom-width: 1px;
  }

  .max-lg\:\[\&_tr\.linea\]\:border-border tr.linea {
    --tw-border-opacity: 1;
    border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
  }

  .max-lg\:\[\&_tr\.linea\]\:p-3 tr.linea {
    padding: 0.75rem;
  }

  .max-lg\:\[\&_tr\]\:grid tr {
    display: grid;
  }

  .max-lg\:\[\&_tr\]\:grid-cols-2 tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .max-lg\:\[\&_tr\]\:gap-x-3 tr {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .max-lg\:\[\&_tr\]\:gap-y-2\.5 tr {
    row-gap: 0.625rem;
  }

  .max-lg\:\[\&_tr\]\:border-b tr {
    border-bottom-width: 1px;
  }

  .max-lg\:\[\&_tr\]\:border-border tr {
    --tw-border-opacity: 1;
    border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
  }

  .max-lg\:\[\&_tr\]\:p-3 tr {
    padding: 0.75rem;
  }
}
@media not all and (min-width: 768px) {

  .max-md\:\[\&_tr\]\:grid tr {
    display: grid;
  }

  .max-md\:\[\&_tr\]\:grid-cols-2 tr {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .max-md\:\[\&_tr\]\:gap-x-3 tr {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }

  .max-md\:\[\&_tr\]\:gap-y-1\.5 tr {
    row-gap: 0.375rem;
  }

  .max-md\:\[\&_tr\]\:border-b tr {
    border-bottom-width: 1px;
  }

  .max-md\:\[\&_tr\]\:border-border tr {
    --tw-border-opacity: 1;
    border-color: hsl(var(--border) / var(--tw-border-opacity, 1));
  }

  .max-md\:\[\&_tr\]\:p-3 tr {
    padding: 0.75rem;
  }
}
