@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');




/* ═══════════════════════════════════════════════════════════════════════════
   MAIC Design System — CSS Custom Properties
   Importar en src/index.css o src/main.jsx
   ═══════════════════════════════════════════════════════════════════════════ */

/* Fuente Plus Jakarta Sans desde Google Fonts */

/* ─── Variables globales ─────────────────────────────────────────────────── */

:root {
  /* Fondos */
  --maic-bg:        #0D1117;
  --maic-surface:   #161B22;
  --maic-elevated:  #1C2333;
  --maic-content:   #0F1419;

  /* Acento único */
  --maic-accent:      #00E096;
  --maic-accent-dim:  #00B377;
  --maic-accent-bg:   rgba(0, 224, 150, 0.09);
  --maic-accent-brd:  rgba(0, 224, 150, 0.22);

  /* Semánticos */
  --maic-red:       #FF4D4D;
  --maic-red-bg:    rgba(255, 77,  77,  0.10);
  --maic-red-brd:   rgba(255, 77,  77,  0.20);
  --maic-amber:     #FFB020;
  --maic-amber-bg:  rgba(255, 176, 32,  0.10);
  --maic-amber-brd: rgba(255, 176, 32,  0.20);
  --maic-blue:      #4D9EFF;
  --maic-blue-bg:   rgba(77,  158, 255, 0.10);
  --maic-blue-brd:  rgba(77,  158, 255, 0.20);

  /* Texto */
  --maic-t1: #F0F6FC;
  --maic-t2: #8B949E;
  --maic-t3: #484F58;

  /* Bordes */
  --maic-border:    rgba(255, 255, 255, 0.08);
  --maic-border-md: rgba(255, 255, 255, 0.14);

  /* Radios */
  --maic-r-sm:  4px;
  --maic-r:     6px;
  --maic-r-lg:  10px;
  --maic-r-xl:  14px;

  /* Espaciado de página */
  --maic-px: 24px;
  --maic-py: 20px;
}

/* ─── Reset y base ────────────────────────────────────────────────────────── */

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: var(--maic-content);
  color: var(--maic-t1);
  font-family: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Números tabulares en métricas ─────────────────────────────────────── */

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

/* ─── Scrollbar minimal ──────────────────────────────────────────────────── */

::-webkit-scrollbar               { width: 4px; height: 4px; }

::-webkit-scrollbar-track         { background: transparent; }

::-webkit-scrollbar-thumb         { background: var(--maic-border-md); border-radius: 2px; }

::-webkit-scrollbar-thumb:hover   { background: var(--maic-t3); }

/* ─── .maic-print-mode — export PDF via html2canvas (mismos tokens que print) */

/* Se aplica programáticamente antes de capturar, se remueve después           */

.maic-print-mode {
  --maic-bg:        #ffffff !important;
  --maic-surface:   #f8f8f8 !important;
  --maic-elevated:  #f0f0f0 !important;
  --maic-content:   #ffffff !important;
  --maic-accent:    #00995f !important;
  --maic-red:       #cc0000 !important;
  --maic-amber:     #b36b00 !important;
  --maic-blue:      #1a5fa8 !important;
  --maic-t1:        #0a0a0a !important;
  --maic-t2:        #444444 !important;
  --maic-t3:        #888888 !important;
  --maic-border:    rgba(0,0,0,0.12) !important;
  --maic-border-md: rgba(0,0,0,0.20) !important;
  background-color: #ffffff !important;
  color:            #0a0a0a !important;
}

/* ─── Print / PDF — override a tema claro ───────────────────────────────── */

@media print {
  :root {
    --maic-bg:        #ffffff;
    --maic-surface:   #f8f8f8;
    --maic-elevated:  #f0f0f0;
    --maic-content:   #ffffff;
    --maic-accent:    #00995f;   /* acento más oscuro para imprimir */
    --maic-red:       #cc0000;
    --maic-amber:     #b36b00;
    --maic-blue:      #1a5fa8;
    --maic-t1:        #0a0a0a;
    --maic-t2:        #444444;
    --maic-t3:        #888888;
    --maic-border:    rgba(0, 0, 0, 0.12);
    --maic-border-md: rgba(0, 0, 0, 0.20);
  }

  /* Ocultar elementos de navegación */
  nav, aside, .sidebar,
  [class*="sidebar"],
  [class*="nav-"],
  button:not(.print-visible) { display: none !important; }

  /* Fondo blanco en toda la página */
  body, html {
    background: #ffffff !important;
    color: #0a0a0a !important;
    font-size: 11pt;
  }

  /* Asegurar que el contenido ocupe el ancho completo */
  main, [class*="content"] {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* Tablas: bordes visibles */
  [class*="data-table"] td,
  [class*="data-table"] th,
  [class*="dt-row"] {
    border-color: #cccccc !important;
  }

  /* Evitar corte de filas entre páginas */
  tr, [class*="dt-row"] { page-break-inside: avoid; }

  /* Score pills legibles en blanco */
  [class*="ScorePill"],
  [class*="badge"] {
    border: 1px solid currentColor !important;
    background: transparent !important;
  }
}

*, ::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: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif; /* 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: "JetBrains Mono", "Fira Code", ui-monospace, monospace; /* 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;
}

.pointer-events-none{
  pointer-events:        none;
}

.visible{
  visibility:        visible;
}

.fixed{
  position:        fixed;
}

.absolute{
  position:        absolute;
}

.relative{
  position:        relative;
}

.sticky{
  position:        sticky;
}

.inset-0{
  inset:        0px;
}

.bottom-2{
  bottom:        0.5rem;
}

.bottom-5{
  bottom:        1.25rem;
}

.bottom-6{
  bottom:        1.5rem;
}

.bottom-\[58px\]{
  bottom:        58px;
}

.left-0{
  left:        0px;
}

.left-0\.5{
  left:        0.125rem;
}

.left-1{
  left:        0.25rem;
}

.left-2{
  left:        0.5rem;
}

.left-3{
  left:        0.75rem;
}

.left-3\.5{
  left:        0.875rem;
}

.left-5{
  left:        1.25rem;
}

.left-6{
  left:        1.5rem;
}

.left-\[-28px\]{
  left:        -28px;
}

.left-\[7px\]{
  left:        7px;
}

.right-2{
  right:        0.5rem;
}

.right-2\.5{
  right:        0.625rem;
}

.right-3{
  right:        0.75rem;
}

.right-6{
  right:        1.5rem;
}

.right-\[30px\]{
  right:        30px;
}

.right-\[60px\]{
  right:        60px;
}

.top-0{
  top:        0px;
}

.top-0\.5{
  top:        0.125rem;
}

.top-1{
  top:        0.25rem;
}

.top-1\/2{
  top:        50%;
}

.top-2{
  top:        0.5rem;
}

.top-3{
  top:        0.75rem;
}

.top-\[-30px\]{
  top:        -30px;
}

.top-\[-60px\]{
  top:        -60px;
}

.top-full{
  top:        100%;
}

.z-10{
  z-index:        10;
}

.z-20{
  z-index:        20;
}

.z-40{
  z-index:        40;
}

.z-50{
  z-index:        50;
}

.z-\[60\]{
  z-index:        60;
}

.z-\[9999\]{
  z-index:        9999;
}

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

.m-0{
  margin:        0px;
}

.-mx-6{
  margin-left:        -1.5rem;
  margin-right:        -1.5rem;
}

.mx-4{
  margin-left:        1rem;
  margin-right:        1rem;
}

.mx-auto{
  margin-left:        auto;
  margin-right:        auto;
}

.my-2{
  margin-top:        0.5rem;
  margin-bottom:        0.5rem;
}

.-mb-px{
  margin-bottom:        -1px;
}

.mb-0\.5{
  margin-bottom:        0.125rem;
}

.mb-1{
  margin-bottom:        0.25rem;
}

.mb-1\.5{
  margin-bottom:        0.375rem;
}

.mb-2{
  margin-bottom:        0.5rem;
}

.mb-2\.5{
  margin-bottom:        0.625rem;
}

.mb-3{
  margin-bottom:        0.75rem;
}

.mb-3\.5{
  margin-bottom:        0.875rem;
}

.mb-4{
  margin-bottom:        1rem;
}

.mb-5{
  margin-bottom:        1.25rem;
}

.mb-6{
  margin-bottom:        1.5rem;
}

.mb-7{
  margin-bottom:        1.75rem;
}

.mb-8{
  margin-bottom:        2rem;
}

.mb-\[18px\]{
  margin-bottom:        18px;
}

.mb-\[22px\]{
  margin-bottom:        22px;
}

.ml-0\.5{
  margin-left:        0.125rem;
}

.ml-1{
  margin-left:        0.25rem;
}

.ml-1\.5{
  margin-left:        0.375rem;
}

.ml-2{
  margin-left:        0.5rem;
}

.ml-3{
  margin-left:        0.75rem;
}

.ml-4{
  margin-left:        1rem;
}

.ml-6{
  margin-left:        1.5rem;
}

.ml-auto{
  margin-left:        auto;
}

.mr-1{
  margin-right:        0.25rem;
}

.mr-1\.5{
  margin-right:        0.375rem;
}

.mr-2{
  margin-right:        0.5rem;
}

.mr-3\.5{
  margin-right:        0.875rem;
}

.mr-5{
  margin-right:        1.25rem;
}

.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-5{
  margin-top:        1.25rem;
}

.mt-6{
  margin-top:        1.5rem;
}

.mt-\[5px\]{
  margin-top:        5px;
}

.line-clamp-2{
  overflow:        hidden;
  display:        -webkit-box;
  -webkit-box-orient:        vertical;
  -webkit-line-clamp:        2;
}

.block{
  display:        block;
}

.inline-block{
  display:        inline-block;
}

.inline{
  display:        inline;
}

.flex{
  display:        flex;
}

.inline-flex{
  display:        inline-flex;
}

.table{
  display:        table;
}

.grid{
  display:        grid;
}

.hidden{
  display:        none;
}

.aspect-square{
  aspect-ratio:        1 / 1;
}

.h-1\.5{
  height:        0.375rem;
}

.h-10{
  height:        2.5rem;
}

.h-11{
  height:        2.75rem;
}

.h-12{
  height:        3rem;
}

.h-14{
  height:        3.5rem;
}

.h-16{
  height:        4rem;
}

.h-2{
  height:        0.5rem;
}

.h-2\.5{
  height:        0.625rem;
}

.h-20{
  height:        5rem;
}

.h-24{
  height:        6rem;
}

.h-3{
  height:        0.75rem;
}

.h-3\.5{
  height:        0.875rem;
}

.h-4{
  height:        1rem;
}

.h-40{
  height:        10rem;
}

.h-5{
  height:        1.25rem;
}

.h-6{
  height:        1.5rem;
}

.h-64{
  height:        16rem;
}

.h-7{
  height:        1.75rem;
}

.h-72{
  height:        18rem;
}

.h-8{
  height:        2rem;
}

.h-9{
  height:        2.25rem;
}

.h-\[140px\]{
  height:        140px;
}

.h-\[14px\]{
  height:        14px;
}

.h-\[18px\]{
  height:        18px;
}

.h-\[220px\]{
  height:        220px;
}

.h-\[300px\]{
  height:        300px;
}

.h-\[30px\]{
  height:        30px;
}

.h-\[34px\]{
  height:        34px;
}

.h-\[3px\]{
  height:        3px;
}

.h-\[500px\]{
  height:        500px;
}

.h-\[5px\]{
  height:        5px;
}

.h-\[calc\(100vh-8rem\)\]{
  height:        calc(100vh - 8rem);
}

.h-fit{
  height:        -moz-fit-content;
  height:        fit-content;
}

.h-full{
  height:        100%;
}

.h-px{
  height:        1px;
}

.h-screen{
  height:        100vh;
}

.max-h-32{
  max-height:        8rem;
}

.max-h-40{
  max-height:        10rem;
}

.max-h-48{
  max-height:        12rem;
}

.max-h-72{
  max-height:        18rem;
}

.max-h-96{
  max-height:        24rem;
}

.max-h-\[120px\]{
  max-height:        120px;
}

.max-h-\[60vh\]{
  max-height:        60vh;
}

.max-h-\[80vh\]{
  max-height:        80vh;
}

.max-h-\[90vh\]{
  max-height:        90vh;
}

.min-h-\[130px\]{
  min-height:        130px;
}

.min-h-\[300px\]{
  min-height:        300px;
}

.min-h-\[40px\]{
  min-height:        40px;
}

.min-h-\[44px\]{
  min-height:        44px;
}

.min-h-\[600px\]{
  min-height:        600px;
}

.min-h-\[60px\]{
  min-height:        60px;
}

.min-h-screen{
  min-height:        100vh;
}

.w-0\.5{
  width:        0.125rem;
}

.w-1{
  width:        0.25rem;
}

.w-1\.5{
  width:        0.375rem;
}

.w-10{
  width:        2.5rem;
}

.w-11{
  width:        2.75rem;
}

.w-12{
  width:        3rem;
}

.w-14{
  width:        3.5rem;
}

.w-16{
  width:        4rem;
}

.w-2{
  width:        0.5rem;
}

.w-2\.5{
  width:        0.625rem;
}

.w-20{
  width:        5rem;
}

.w-24{
  width:        6rem;
}

.w-28{
  width:        7rem;
}

.w-3{
  width:        0.75rem;
}

.w-3\.5{
  width:        0.875rem;
}

.w-36{
  width:        9rem;
}

.w-4{
  width:        1rem;
}

.w-40{
  width:        10rem;
}

.w-5{
  width:        1.25rem;
}

.w-52{
  width:        13rem;
}

.w-56{
  width:        14rem;
}

.w-6{
  width:        1.5rem;
}

.w-64{
  width:        16rem;
}

.w-7{
  width:        1.75rem;
}

.w-72{
  width:        18rem;
}

.w-8{
  width:        2rem;
}

.w-9{
  width:        2.25rem;
}

.w-\[140px\]{
  width:        140px;
}

.w-\[14px\]{
  width:        14px;
}

.w-\[180px\]{
  width:        180px;
}

.w-\[18px\]{
  width:        18px;
}

.w-\[220px\]{
  width:        220px;
}

.w-\[240px\]{
  width:        240px;
}

.w-\[30px\]{
  width:        30px;
}

.w-\[34px\]{
  width:        34px;
}

.w-\[500px\]{
  width:        500px;
}

.w-\[520px\]{
  width:        520px;
}

.w-\[5px\]{
  width:        5px;
}

.w-\[640px\]{
  width:        640px;
}

.w-fit{
  width:        -moz-fit-content;
  width:        fit-content;
}

.w-full{
  width:        100%;
}

.min-w-0{
  min-width:        0px;
}

.min-w-40{
  min-width:        10rem;
}

.min-w-\[120px\]{
  min-width:        120px;
}

.min-w-\[130px\]{
  min-width:        130px;
}

.min-w-\[200px\]{
  min-width:        200px;
}

.min-w-\[36px\]{
  min-width:        36px;
}

.min-w-\[52px\]{
  min-width:        52px;
}

.min-w-\[90px\]{
  min-width:        90px;
}

.max-w-2xl{
  max-width:        42rem;
}

.max-w-3xl{
  max-width:        48rem;
}

.max-w-4xl{
  max-width:        56rem;
}

.max-w-5xl{
  max-width:        64rem;
}

.max-w-7xl{
  max-width:        80rem;
}

.max-w-\[1200px\]{
  max-width:        1200px;
}

.max-w-\[160px\]{
  max-width:        160px;
}

.max-w-\[180px\]{
  max-width:        180px;
}

.max-w-\[200px\]{
  max-width:        200px;
}

.max-w-\[260px\]{
  max-width:        260px;
}

.max-w-\[380px\]{
  max-width:        380px;
}

.max-w-\[400px\]{
  max-width:        400px;
}

.max-w-\[420px\]{
  max-width:        420px;
}

.max-w-\[480px\]{
  max-width:        480px;
}

.max-w-\[520px\]{
  max-width:        520px;
}

.max-w-\[560px\]{
  max-width:        560px;
}

.max-w-\[600px\]{
  max-width:        600px;
}

.max-w-\[680px\]{
  max-width:        680px;
}

.max-w-\[80\%\]{
  max-width:        80%;
}

.max-w-\[96vw\]{
  max-width:        96vw;
}

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

.max-w-lg{
  max-width:        32rem;
}

.max-w-md{
  max-width:        28rem;
}

.max-w-sm{
  max-width:        24rem;
}

.max-w-xs{
  max-width:        20rem;
}

.flex-1{
  flex:        1 1 0%;
}

.flex-shrink-0{
  flex-shrink:        0;
}

.shrink-0{
  flex-shrink:        0;
}

.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));
}

.rotate-0{
  --tw-rotate:        0deg;
  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));
}

.rotate-180{
  --tw-rotate:        180deg;
  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));
}

.rotate-90{
  --tw-rotate:        90deg;
  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));
}

.scale-105{
  --tw-scale-x:        1.05;
  --tw-scale-y:        1.05;
  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));
}

@keyframes pulse{

  50%{
    opacity:        .5;
  }
}

.animate-pulse{
  animation:        pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes skeleton-pulse{

  0%, 100%{
    opacity:        0.4;
  }

  50%{
    opacity:        0.8;
  }
}

.animate-skeleton-pulse{
  animation:        skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes spin{

  to{
    transform:        rotate(360deg);
  }
}

.animate-spin{
  animation:        spin 1s linear infinite;
}

.cursor-default{
  cursor:        default;
}

.cursor-help{
  cursor:        help;
}

.cursor-not-allowed{
  cursor:        not-allowed;
}

.cursor-pointer{
  cursor:        pointer;
}

.select-none{
  -webkit-user-select:        none;
     -moz-user-select:        none;
          user-select:        none;
}

.resize-none{
  resize:        none;
}

.list-none{
  list-style-type:        none;
}

.appearance-none{
  -webkit-appearance:        none;
     -moz-appearance:        none;
          appearance:        none;
}

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

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

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

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

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

.grid-cols-\[1fr_80px\]{
  grid-template-columns:        1fr 80px;
}

.flex-row-reverse{
  flex-direction:        row-reverse;
}

.flex-col{
  flex-direction:        column;
}

.flex-wrap{
  flex-wrap:        wrap;
}

.items-start{
  align-items:        flex-start;
}

.items-end{
  align-items:        flex-end;
}

.items-center{
  align-items:        center;
}

.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-5{
  gap:        1.25rem;
}

.gap-6{
  gap:        1.5rem;
}

.gap-8{
  gap:        2rem;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(0.375rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(1rem * var(--tw-space-y-reverse));
}

.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(1.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse:        0;
  margin-top:        calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom:        calc(1.5rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse:        0;
  border-top-width:        calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width:        calc(1px * var(--tw-divide-y-reverse));
}

.divide-white\/\[0\.04\] > :not([hidden]) ~ :not([hidden]){
  border-color:        rgb(255 255 255 / 0.04);
}

.divide-white\/\[0\.06\] > :not([hidden]) ~ :not([hidden]){
  border-color:        rgb(255 255 255 / 0.06);
}

.self-start{
  align-self:        flex-start;
}

.overflow-hidden{
  overflow:        hidden;
}

.overflow-x-auto{
  overflow-x:        auto;
}

.overflow-y-auto{
  overflow-y:        auto;
}

.truncate{
  overflow:        hidden;
  text-overflow:        ellipsis;
  white-space:        nowrap;
}

.text-ellipsis{
  text-overflow:        ellipsis;
}

.whitespace-nowrap{
  white-space:        nowrap;
}

.whitespace-pre-wrap{
  white-space:        pre-wrap;
}

.break-all{
  word-break:        break-all;
}

.rounded{
  border-radius:        0.25rem;
}

.rounded-2xl{
  border-radius:        1rem;
}

.rounded-\[10px\]{
  border-radius:        10px;
}

.rounded-\[7px\]{
  border-radius:        7px;
}

.rounded-\[8px\]{
  border-radius:        8px;
}

.rounded-\[9px\]{
  border-radius:        9px;
}

.rounded-full{
  border-radius:        9999px;
}

.rounded-lg{
  border-radius:        0.5rem;
}

.rounded-maic{
  border-radius:        6px;
}

.rounded-maic-lg{
  border-radius:        10px;
}

.rounded-maic-xl{
  border-radius:        14px;
}

.rounded-md{
  border-radius:        0.375rem;
}

.rounded-sm{
  border-radius:        0.125rem;
}

.rounded-xl{
  border-radius:        0.75rem;
}

.rounded-b-maic-lg{
  border-bottom-right-radius:        10px;
  border-bottom-left-radius:        10px;
}

.rounded-b-maic-xl{
  border-bottom-right-radius:        14px;
  border-bottom-left-radius:        14px;
}

.rounded-l-none{
  border-top-left-radius:        0px;
  border-bottom-left-radius:        0px;
}

.rounded-t-lg{
  border-top-left-radius:        0.5rem;
  border-top-right-radius:        0.5rem;
}

.rounded-t-maic-lg{
  border-top-left-radius:        10px;
  border-top-right-radius:        10px;
}

.border{
  border-width:        1px;
}

.border-2{
  border-width:        2px;
}

.border-4{
  border-width:        4px;
}

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

.border-b-2{
  border-bottom-width:        2px;
}

.border-l{
  border-left-width:        1px;
}

.border-l-2{
  border-left-width:        2px;
}

.border-l-4{
  border-left-width:        4px;
}

.border-r{
  border-right-width:        1px;
}

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

.border-t-0{
  border-top-width:        0px;
}

.border-dashed{
  border-style:        dashed;
}

.border-none{
  border-style:        none;
}

.\!border-maic-amber\/30{
  border-color:        rgb(255 176 32 / 0.3) !important;
}

.border-\[\#00E096\]\/20{
  border-color:        rgb(0 224 150 / 0.2);
}

.border-amber-200{
  --tw-border-opacity:        1;
  border-color:        rgb(253 230 138 / var(--tw-border-opacity, 1));
}

.border-amber-500\/20{
  border-color:        rgb(245 158 11 / 0.2);
}

.border-amber-500\/30{
  border-color:        rgb(245 158 11 / 0.3);
}

.border-blue-500{
  --tw-border-opacity:        1;
  border-color:        rgb(59 130 246 / var(--tw-border-opacity, 1));
}

.border-blue-500\/20{
  border-color:        rgb(59 130 246 / 0.2);
}

.border-blue-600{
  --tw-border-opacity:        1;
  border-color:        rgb(37 99 235 / var(--tw-border-opacity, 1));
}

.border-current{
  border-color:        currentColor;
}

.border-emerald-200{
  --tw-border-opacity:        1;
  border-color:        rgb(167 243 208 / var(--tw-border-opacity, 1));
}

.border-gray-100{
  --tw-border-opacity:        1;
  border-color:        rgb(243 244 246 / var(--tw-border-opacity, 1));
}

.border-gray-200{
  --tw-border-opacity:        1;
  border-color:        rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.border-gray-300{
  --tw-border-opacity:        1;
  border-color:        rgb(209 213 219 / var(--tw-border-opacity, 1));
}

.border-green-500\/20{
  border-color:        rgb(34 197 94 / 0.2);
}

.border-green-500\/30{
  border-color:        rgb(34 197 94 / 0.3);
}

.border-maic-accent{
  --tw-border-opacity:        1;
  border-color:        rgb(0 224 150 / var(--tw-border-opacity, 1));
}

.border-maic-accent\/20{
  border-color:        rgb(0 224 150 / 0.2);
}

.border-maic-accent\/30{
  border-color:        rgb(0 224 150 / 0.3);
}

.border-maic-accent\/40{
  border-color:        rgb(0 224 150 / 0.4);
}

.border-maic-accent\/50{
  border-color:        rgb(0 224 150 / 0.5);
}

.border-maic-amber{
  --tw-border-opacity:        1;
  border-color:        rgb(255 176 32 / var(--tw-border-opacity, 1));
}

.border-maic-amber\/20{
  border-color:        rgb(255 176 32 / 0.2);
}

.border-maic-amber\/30{
  border-color:        rgb(255 176 32 / 0.3);
}

.border-maic-amber\/40{
  border-color:        rgb(255 176 32 / 0.4);
}

.border-maic-amber\/50{
  border-color:        rgb(255 176 32 / 0.5);
}

.border-maic-blue\/10{
  border-color:        rgb(77 158 255 / 0.1);
}

.border-maic-blue\/20{
  border-color:        rgb(77 158 255 / 0.2);
}

.border-maic-blue\/30{
  border-color:        rgb(77 158 255 / 0.3);
}

.border-maic-red{
  --tw-border-opacity:        1;
  border-color:        rgb(255 77 77 / var(--tw-border-opacity, 1));
}

.border-maic-red\/20{
  border-color:        rgb(255 77 77 / 0.2);
}

.border-maic-red\/30{
  border-color:        rgb(255 77 77 / 0.3);
}

.border-maic-red\/50{
  border-color:        rgb(255 77 77 / 0.5);
}

.border-maic-t3{
  --tw-border-opacity:        1;
  border-color:        rgb(72 79 88 / var(--tw-border-opacity, 1));
}

.border-orange-200{
  --tw-border-opacity:        1;
  border-color:        rgb(254 215 170 / var(--tw-border-opacity, 1));
}

.border-orange-500\/20{
  border-color:        rgb(249 115 22 / 0.2);
}

.border-purple-500\/20{
  border-color:        rgb(168 85 247 / 0.2);
}

.border-red-200{
  --tw-border-opacity:        1;
  border-color:        rgb(254 202 202 / var(--tw-border-opacity, 1));
}

.border-red-400\/20{
  border-color:        rgb(248 113 113 / 0.2);
}

.border-red-500\/20{
  border-color:        rgb(239 68 68 / 0.2);
}

.border-red-500\/30{
  border-color:        rgb(239 68 68 / 0.3);
}

.border-red-500\/40{
  border-color:        rgb(239 68 68 / 0.4);
}

.border-rose-200{
  --tw-border-opacity:        1;
  border-color:        rgb(254 205 211 / var(--tw-border-opacity, 1));
}

.border-transparent{
  border-color:        transparent;
}

.border-white\/10{
  border-color:        rgb(255 255 255 / 0.1);
}

.border-white\/20{
  border-color:        rgb(255 255 255 / 0.2);
}

.border-white\/\[0\.04\]{
  border-color:        rgb(255 255 255 / 0.04);
}

.border-white\/\[0\.05\]{
  border-color:        rgb(255 255 255 / 0.05);
}

.border-white\/\[0\.06\]{
  border-color:        rgb(255 255 255 / 0.06);
}

.border-white\/\[0\.08\]{
  border-color:        rgb(255 255 255 / 0.08);
}

.border-white\/\[0\.12\]{
  border-color:        rgb(255 255 255 / 0.12);
}

.border-white\/\[0\.14\]{
  border-color:        rgb(255 255 255 / 0.14);
}

.border-white\/\[0\.15\]{
  border-color:        rgb(255 255 255 / 0.15);
}

.border-white\/\[0\.2\]{
  border-color:        rgb(255 255 255 / 0.2);
}

.border-yellow-500\/10{
  border-color:        rgb(234 179 8 / 0.1);
}

.border-yellow-500\/20{
  border-color:        rgb(234 179 8 / 0.2);
}

.border-l-maic-accent{
  --tw-border-opacity:        1;
  border-left-color:        rgb(0 224 150 / var(--tw-border-opacity, 1));
}

.border-l-maic-amber{
  --tw-border-opacity:        1;
  border-left-color:        rgb(255 176 32 / var(--tw-border-opacity, 1));
}

.border-l-maic-t1{
  --tw-border-opacity:        1;
  border-left-color:        rgb(240 246 252 / var(--tw-border-opacity, 1));
}

.border-l-transparent{
  border-left-color:        transparent;
}

.border-t-transparent{
  border-top-color:        transparent;
}

.bg-\[\#00E096\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(0 224 150 / var(--tw-bg-opacity, 1));
}

.bg-\[\#00E096\]\/10{
  background-color:        rgb(0 224 150 / 0.1);
}

.bg-\[\#0D1117\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(13 17 23 / var(--tw-bg-opacity, 1));
}

.bg-\[\#0d2035\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(13 32 53 / var(--tw-bg-opacity, 1));
}

.bg-\[\#161D2B\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(22 29 43 / var(--tw-bg-opacity, 1));
}

.bg-\[\#1a2435\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(26 36 53 / var(--tw-bg-opacity, 1));
}

.bg-\[\#E1F5EE\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(225 245 238 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FCEBEB\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(252 235 235 / var(--tw-bg-opacity, 1));
}

.bg-\[\#FDF3DC\]{
  --tw-bg-opacity:        1;
  background-color:        rgb(253 243 220 / var(--tw-bg-opacity, 1));
}

.bg-amber-300{
  --tw-bg-opacity:        1;
  background-color:        rgb(252 211 77 / var(--tw-bg-opacity, 1));
}

.bg-amber-50{
  --tw-bg-opacity:        1;
  background-color:        rgb(255 251 235 / var(--tw-bg-opacity, 1));
}

.bg-amber-500\/10{
  background-color:        rgb(245 158 11 / 0.1);
}

.bg-black{
  --tw-bg-opacity:        1;
  background-color:        rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-black\/30{
  background-color:        rgb(0 0 0 / 0.3);
}

.bg-black\/40{
  background-color:        rgb(0 0 0 / 0.4);
}

.bg-black\/50{
  background-color:        rgb(0 0 0 / 0.5);
}

.bg-black\/55{
  background-color:        rgb(0 0 0 / 0.55);
}

.bg-black\/60{
  background-color:        rgb(0 0 0 / 0.6);
}

.bg-blue-50{
  --tw-bg-opacity:        1;
  background-color:        rgb(239 246 255 / var(--tw-bg-opacity, 1));
}

.bg-blue-500{
  --tw-bg-opacity:        1;
  background-color:        rgb(59 130 246 / var(--tw-bg-opacity, 1));
}

.bg-blue-500\/10{
  background-color:        rgb(59 130 246 / 0.1);
}

.bg-current{
  background-color:        currentColor;
}

.bg-emerald-200{
  --tw-bg-opacity:        1;
  background-color:        rgb(167 243 208 / var(--tw-bg-opacity, 1));
}

.bg-gray-50{
  --tw-bg-opacity:        1;
  background-color:        rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.bg-green-400{
  --tw-bg-opacity:        1;
  background-color:        rgb(74 222 128 / var(--tw-bg-opacity, 1));
}

.bg-green-500\/10{
  background-color:        rgb(34 197 94 / 0.1);
}

.bg-green-500\/20{
  background-color:        rgb(34 197 94 / 0.2);
}

.bg-green-500\/5{
  background-color:        rgb(34 197 94 / 0.05);
}

.bg-indigo-100{
  --tw-bg-opacity:        1;
  background-color:        rgb(224 231 255 / var(--tw-bg-opacity, 1));
}

.bg-indigo-600{
  --tw-bg-opacity:        1;
  background-color:        rgb(79 70 229 / var(--tw-bg-opacity, 1));
}

.bg-maic-accent{
  --tw-bg-opacity:        1;
  background-color:        rgb(0 224 150 / var(--tw-bg-opacity, 1));
}

.bg-maic-accent\/10{
  background-color:        rgb(0 224 150 / 0.1);
}

.bg-maic-accent\/15{
  background-color:        rgb(0 224 150 / 0.15);
}

.bg-maic-accent\/20{
  background-color:        rgb(0 224 150 / 0.2);
}

.bg-maic-accent\/30{
  background-color:        rgb(0 224 150 / 0.3);
}

.bg-maic-accent\/5{
  background-color:        rgb(0 224 150 / 0.05);
}

.bg-maic-amber{
  --tw-bg-opacity:        1;
  background-color:        rgb(255 176 32 / var(--tw-bg-opacity, 1));
}

.bg-maic-amber\/10{
  background-color:        rgb(255 176 32 / 0.1);
}

.bg-maic-amber\/20{
  background-color:        rgb(255 176 32 / 0.2);
}

.bg-maic-amber\/5{
  background-color:        rgb(255 176 32 / 0.05);
}

.bg-maic-bg{
  --tw-bg-opacity:        1;
  background-color:        rgb(13 17 23 / var(--tw-bg-opacity, 1));
}

.bg-maic-blue{
  --tw-bg-opacity:        1;
  background-color:        rgb(77 158 255 / var(--tw-bg-opacity, 1));
}

.bg-maic-blue\/10{
  background-color:        rgb(77 158 255 / 0.1);
}

.bg-maic-blue\/5{
  background-color:        rgb(77 158 255 / 0.05);
}

.bg-maic-elevated{
  --tw-bg-opacity:        1;
  background-color:        rgb(28 35 51 / var(--tw-bg-opacity, 1));
}

.bg-maic-elevated\/40{
  background-color:        rgb(28 35 51 / 0.4);
}

.bg-maic-red{
  --tw-bg-opacity:        1;
  background-color:        rgb(255 77 77 / var(--tw-bg-opacity, 1));
}

.bg-maic-red\/10{
  background-color:        rgb(255 77 77 / 0.1);
}

.bg-maic-red\/5{
  background-color:        rgb(255 77 77 / 0.05);
}

.bg-maic-surface{
  --tw-bg-opacity:        1;
  background-color:        rgb(22 27 34 / var(--tw-bg-opacity, 1));
}

.bg-maic-t1{
  --tw-bg-opacity:        1;
  background-color:        rgb(240 246 252 / var(--tw-bg-opacity, 1));
}

.bg-maic-t2{
  --tw-bg-opacity:        1;
  background-color:        rgb(139 148 158 / var(--tw-bg-opacity, 1));
}

.bg-maic-t3{
  --tw-bg-opacity:        1;
  background-color:        rgb(72 79 88 / var(--tw-bg-opacity, 1));
}

.bg-orange-400{
  --tw-bg-opacity:        1;
  background-color:        rgb(251 146 60 / var(--tw-bg-opacity, 1));
}

.bg-orange-50{
  --tw-bg-opacity:        1;
  background-color:        rgb(255 247 237 / var(--tw-bg-opacity, 1));
}

.bg-orange-500\/10{
  background-color:        rgb(249 115 22 / 0.1);
}

.bg-purple-500\/10{
  background-color:        rgb(168 85 247 / 0.1);
}

.bg-red-100{
  --tw-bg-opacity:        1;
  background-color:        rgb(254 226 226 / var(--tw-bg-opacity, 1));
}

.bg-red-400{
  --tw-bg-opacity:        1;
  background-color:        rgb(248 113 113 / var(--tw-bg-opacity, 1));
}

.bg-red-400\/10{
  background-color:        rgb(248 113 113 / 0.1);
}

.bg-red-500\/10{
  background-color:        rgb(239 68 68 / 0.1);
}

.bg-red-500\/20{
  background-color:        rgb(239 68 68 / 0.2);
}

.bg-rose-600{
  --tw-bg-opacity:        1;
  background-color:        rgb(225 29 72 / var(--tw-bg-opacity, 1));
}

.bg-transparent{
  background-color:        transparent;
}

.bg-white{
  --tw-bg-opacity:        1;
  background-color:        rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-white\/10{
  background-color:        rgb(255 255 255 / 0.1);
}

.bg-white\/20{
  background-color:        rgb(255 255 255 / 0.2);
}

.bg-white\/5{
  background-color:        rgb(255 255 255 / 0.05);
}

.bg-white\/\[0\.01\]{
  background-color:        rgb(255 255 255 / 0.01);
}

.bg-white\/\[0\.03\]{
  background-color:        rgb(255 255 255 / 0.03);
}

.bg-white\/\[0\.04\]{
  background-color:        rgb(255 255 255 / 0.04);
}

.bg-white\/\[0\.05\]{
  background-color:        rgb(255 255 255 / 0.05);
}

.bg-white\/\[0\.06\]{
  background-color:        rgb(255 255 255 / 0.06);
}

.bg-white\/\[0\.07\]{
  background-color:        rgb(255 255 255 / 0.07);
}

.bg-white\/\[0\.08\]{
  background-color:        rgb(255 255 255 / 0.08);
}

.bg-white\/\[0\.25\]{
  background-color:        rgb(255 255 255 / 0.25);
}

.bg-yellow-400{
  --tw-bg-opacity:        1;
  background-color:        rgb(250 204 21 / var(--tw-bg-opacity, 1));
}

.bg-yellow-500\/10{
  background-color:        rgb(234 179 8 / 0.1);
}

.bg-yellow-500\/5{
  background-color:        rgb(234 179 8 / 0.05);
}

.bg-opacity-50{
  --tw-bg-opacity:        0.5;
}

.bg-gradient-to-br{
  background-image:        linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-emerald-500{
  --tw-gradient-from:        #10b981 var(--tw-gradient-from-position);
  --tw-gradient-to:        rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops:        var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-slate-100{
  --tw-gradient-to:        #f1f5f9 var(--tw-gradient-to-position);
}

.to-teal-600{
  --tw-gradient-to:        #0d9488 var(--tw-gradient-to-position);
}

.p-0{
  padding:        0px;
}

.p-0\.5{
  padding:        0.125rem;
}

.p-1{
  padding:        0.25rem;
}

.p-1\.5{
  padding:        0.375rem;
}

.p-12{
  padding:        3rem;
}

.p-2{
  padding:        0.5rem;
}

.p-2\.5{
  padding:        0.625rem;
}

.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-7{
  padding:        1.75rem;
}

.p-8{
  padding:        2rem;
}

.p-9{
  padding:        2.25rem;
}

.p-\[22px\]{
  padding:        22px;
}

.px-0\.5{
  padding-left:        0.125rem;
  padding-right:        0.125rem;
}

.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-5{
  padding-left:        1.25rem;
  padding-right:        1.25rem;
}

.px-6{
  padding-left:        1.5rem;
  padding-right:        1.5rem;
}

.px-8{
  padding-left:        2rem;
  padding-right:        2rem;
}

.px-\[18px\]{
  padding-left:        18px;
  padding-right:        18px;
}

.py-0\.5{
  padding-top:        0.125rem;
  padding-bottom:        0.125rem;
}

.py-1{
  padding-top:        0.25rem;
  padding-bottom:        0.25rem;
}

.py-1\.5{
  padding-top:        0.375rem;
  padding-bottom:        0.375rem;
}

.py-10{
  padding-top:        2.5rem;
  padding-bottom:        2.5rem;
}

.py-12{
  padding-top:        3rem;
  padding-bottom:        3rem;
}

.py-16{
  padding-top:        4rem;
  padding-bottom:        4rem;
}

.py-2{
  padding-top:        0.5rem;
  padding-bottom:        0.5rem;
}

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

.py-20{
  padding-top:        5rem;
  padding-bottom:        5rem;
}

.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;
}

.py-5{
  padding-top:        1.25rem;
  padding-bottom:        1.25rem;
}

.py-6{
  padding-top:        1.5rem;
  padding-bottom:        1.5rem;
}

.py-7{
  padding-top:        1.75rem;
  padding-bottom:        1.75rem;
}

.py-8{
  padding-top:        2rem;
  padding-bottom:        2rem;
}

.py-\[11px\]{
  padding-top:        11px;
  padding-bottom:        11px;
}

.py-\[18px\]{
  padding-top:        18px;
  padding-bottom:        18px;
}

.py-\[3px\]{
  padding-top:        3px;
  padding-bottom:        3px;
}

.pb-0{
  padding-bottom:        0px;
}

.pb-1\.5{
  padding-bottom:        0.375rem;
}

.pb-10{
  padding-bottom:        2.5rem;
}

.pb-2{
  padding-bottom:        0.5rem;
}

.pb-2\.5{
  padding-bottom:        0.625rem;
}

.pb-3{
  padding-bottom:        0.75rem;
}

.pb-4{
  padding-bottom:        1rem;
}

.pb-5{
  padding-bottom:        1.25rem;
}

.pb-6{
  padding-bottom:        1.5rem;
}

.pb-\[14px\]{
  padding-bottom:        14px;
}

.pb-\[5px\]{
  padding-bottom:        5px;
}

.pl-12{
  padding-left:        3rem;
}

.pl-16{
  padding-left:        4rem;
}

.pl-20{
  padding-left:        5rem;
}

.pl-3\.5{
  padding-left:        0.875rem;
}

.pl-5{
  padding-left:        1.25rem;
}

.pl-7{
  padding-left:        1.75rem;
}

.pl-8{
  padding-left:        2rem;
}

.pl-9{
  padding-left:        2.25rem;
}

.pr-1{
  padding-right:        0.25rem;
}

.pr-12{
  padding-right:        3rem;
}

.pr-2{
  padding-right:        0.5rem;
}

.pr-4{
  padding-right:        1rem;
}

.pr-8{
  padding-right:        2rem;
}

.pr-9{
  padding-right:        2.25rem;
}

.pt-0{
  padding-top:        0px;
}

.pt-1{
  padding-top:        0.25rem;
}

.pt-2{
  padding-top:        0.5rem;
}

.pt-3\.5{
  padding-top:        0.875rem;
}

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

.pt-5{
  padding-top:        1.25rem;
}

.pt-8{
  padding-top:        2rem;
}

.pt-\[14px\]{
  padding-top:        14px;
}

.text-left{
  text-align:        left;
}

.text-center{
  text-align:        center;
}

.text-right{
  text-align:        right;
}

.font-\[inherit\]{
  font-family:        inherit;
}

.font-mono{
  font-family:        "JetBrains Mono", "Fira Code", ui-monospace, monospace;
}

.text-2xl{
  font-size:        1.5rem;
  line-height:        2rem;
}

.text-3xl{
  font-size:        1.875rem;
  line-height:        2.25rem;
}

.text-4xl{
  font-size:        2.25rem;
  line-height:        2.5rem;
}

.text-\[10px\]{
  font-size:        10px;
}

.text-\[11\.5px\]{
  font-size:        11.5px;
}

.text-\[11px\]{
  font-size:        11px;
}

.text-\[12\.5px\]{
  font-size:        12.5px;
}

.text-\[12px\]{
  font-size:        12px;
}

.text-\[13px\]{
  font-size:        13px;
}

.text-\[14px\]{
  font-size:        14px;
}

.text-\[15px\]{
  font-size:        15px;
}

.text-\[16px\]{
  font-size:        16px;
}

.text-\[17px\]{
  font-size:        17px;
}

.text-\[18px\]{
  font-size:        18px;
}

.text-\[20px\]{
  font-size:        20px;
}

.text-\[22px\]{
  font-size:        22px;
}

.text-\[26px\]{
  font-size:        26px;
}

.text-\[28px\]{
  font-size:        28px;
}

.text-\[32px\]{
  font-size:        32px;
}

.text-\[36px\]{
  font-size:        36px;
}

.text-\[40px\]{
  font-size:        40px;
}

.text-\[44px\]{
  font-size:        44px;
}

.text-\[52px\]{
  font-size:        52px;
}

.text-\[8px\]{
  font-size:        8px;
}

.text-\[9px\]{
  font-size:        9px;
}

.text-base{
  font-size:        1rem;
  line-height:        1.5rem;
}

.text-lg{
  font-size:        1.125rem;
  line-height:        1.75rem;
}

.text-sm{
  font-size:        0.875rem;
  line-height:        1.25rem;
}

.text-xl{
  font-size:        1.25rem;
  line-height:        1.75rem;
}

.text-xs{
  font-size:        0.75rem;
  line-height:        1rem;
}

.font-bold{
  font-weight:        700;
}

.font-medium{
  font-weight:        500;
}

.font-normal{
  font-weight:        400;
}

.font-semibold{
  font-weight:        600;
}

.uppercase{
  text-transform:        uppercase;
}

.italic{
  font-style:        italic;
}

.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-\[-0\.01em\]{
  letter-spacing:        -0.01em;
}

.tracking-\[0\.06em\]{
  letter-spacing:        0.06em;
}

.tracking-\[0\.07em\]{
  letter-spacing:        0.07em;
}

.tracking-\[0\.08em\]{
  letter-spacing:        0.08em;
}

.tracking-\[0\.1em\]{
  letter-spacing:        0.1em;
}

.tracking-tight{
  letter-spacing:        -0.025em;
}

.tracking-wide{
  letter-spacing:        0.025em;
}

.tracking-wider{
  letter-spacing:        0.05em;
}

.tracking-widest{
  letter-spacing:        0.1em;
}

.\!text-maic-accent{
  --tw-text-opacity:        1 !important;
  color:        rgb(0 224 150 / var(--tw-text-opacity, 1)) !important;
}

.\!text-maic-amber{
  --tw-text-opacity:        1 !important;
  color:        rgb(255 176 32 / var(--tw-text-opacity, 1)) !important;
}

.\!text-maic-red{
  --tw-text-opacity:        1 !important;
  color:        rgb(255 77 77 / var(--tw-text-opacity, 1)) !important;
}

.text-\[\#085041\]{
  --tw-text-opacity:        1;
  color:        rgb(8 80 65 / var(--tw-text-opacity, 1));
}

.text-\[\#0D1117\]{
  --tw-text-opacity:        1;
  color:        rgb(13 17 23 / var(--tw-text-opacity, 1));
}

.text-\[\#1A1A18\]{
  --tw-text-opacity:        1;
  color:        rgb(26 26 24 / var(--tw-text-opacity, 1));
}

.text-\[\#633806\]{
  --tw-text-opacity:        1;
  color:        rgb(99 56 6 / var(--tw-text-opacity, 1));
}

.text-\[\#6B6A65\]{
  --tw-text-opacity:        1;
  color:        rgb(107 106 101 / var(--tw-text-opacity, 1));
}

.text-\[\#791F1F\]{
  --tw-text-opacity:        1;
  color:        rgb(121 31 31 / var(--tw-text-opacity, 1));
}

.text-\[\#B4B2A9\]{
  --tw-text-opacity:        1;
  color:        rgb(180 178 169 / var(--tw-text-opacity, 1));
}

.text-amber-700{
  --tw-text-opacity:        1;
  color:        rgb(180 83 9 / var(--tw-text-opacity, 1));
}

.text-amber-900{
  --tw-text-opacity:        1;
  color:        rgb(120 53 15 / var(--tw-text-opacity, 1));
}

.text-black{
  --tw-text-opacity:        1;
  color:        rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-blue-400{
  --tw-text-opacity:        1;
  color:        rgb(96 165 250 / var(--tw-text-opacity, 1));
}

.text-blue-700{
  --tw-text-opacity:        1;
  color:        rgb(29 78 216 / var(--tw-text-opacity, 1));
}

.text-blue-900{
  --tw-text-opacity:        1;
  color:        rgb(30 58 138 / var(--tw-text-opacity, 1));
}

.text-emerald-500{
  --tw-text-opacity:        1;
  color:        rgb(16 185 129 / var(--tw-text-opacity, 1));
}

.text-emerald-600{
  --tw-text-opacity:        1;
  color:        rgb(5 150 105 / var(--tw-text-opacity, 1));
}

.text-emerald-900{
  --tw-text-opacity:        1;
  color:        rgb(6 78 59 / var(--tw-text-opacity, 1));
}

.text-gray-400{
  --tw-text-opacity:        1;
  color:        rgb(156 163 175 / var(--tw-text-opacity, 1));
}

.text-gray-500{
  --tw-text-opacity:        1;
  color:        rgb(107 114 128 / var(--tw-text-opacity, 1));
}

.text-gray-600{
  --tw-text-opacity:        1;
  color:        rgb(75 85 99 / var(--tw-text-opacity, 1));
}

.text-gray-700{
  --tw-text-opacity:        1;
  color:        rgb(55 65 81 / var(--tw-text-opacity, 1));
}

.text-gray-900{
  --tw-text-opacity:        1;
  color:        rgb(17 24 39 / var(--tw-text-opacity, 1));
}

.text-green-400{
  --tw-text-opacity:        1;
  color:        rgb(74 222 128 / var(--tw-text-opacity, 1));
}

.text-green-700{
  --tw-text-opacity:        1;
  color:        rgb(21 128 61 / var(--tw-text-opacity, 1));
}

.text-indigo-600{
  --tw-text-opacity:        1;
  color:        rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.text-maic-accent{
  --tw-text-opacity:        1;
  color:        rgb(0 224 150 / var(--tw-text-opacity, 1));
}

.text-maic-accent\/70{
  color:        rgb(0 224 150 / 0.7);
}

.text-maic-amber{
  --tw-text-opacity:        1;
  color:        rgb(255 176 32 / var(--tw-text-opacity, 1));
}

.text-maic-amber\/70{
  color:        rgb(255 176 32 / 0.7);
}

.text-maic-amber\/80{
  color:        rgb(255 176 32 / 0.8);
}

.text-maic-bg{
  --tw-text-opacity:        1;
  color:        rgb(13 17 23 / var(--tw-text-opacity, 1));
}

.text-maic-blue{
  --tw-text-opacity:        1;
  color:        rgb(77 158 255 / var(--tw-text-opacity, 1));
}

.text-maic-blue\/70{
  color:        rgb(77 158 255 / 0.7);
}

.text-maic-red{
  --tw-text-opacity:        1;
  color:        rgb(255 77 77 / var(--tw-text-opacity, 1));
}

.text-maic-red\/60{
  color:        rgb(255 77 77 / 0.6);
}

.text-maic-red\/70{
  color:        rgb(255 77 77 / 0.7);
}

.text-maic-t1{
  --tw-text-opacity:        1;
  color:        rgb(240 246 252 / var(--tw-text-opacity, 1));
}

.text-maic-t2{
  --tw-text-opacity:        1;
  color:        rgb(139 148 158 / var(--tw-text-opacity, 1));
}

.text-maic-t3{
  --tw-text-opacity:        1;
  color:        rgb(72 79 88 / var(--tw-text-opacity, 1));
}

.text-orange-400{
  --tw-text-opacity:        1;
  color:        rgb(251 146 60 / var(--tw-text-opacity, 1));
}

.text-orange-700{
  --tw-text-opacity:        1;
  color:        rgb(194 65 12 / var(--tw-text-opacity, 1));
}

.text-purple-400{
  --tw-text-opacity:        1;
  color:        rgb(192 132 252 / var(--tw-text-opacity, 1));
}

.text-red-300{
  --tw-text-opacity:        1;
  color:        rgb(252 165 165 / var(--tw-text-opacity, 1));
}

.text-red-400{
  --tw-text-opacity:        1;
  color:        rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.text-red-500{
  --tw-text-opacity:        1;
  color:        rgb(239 68 68 / var(--tw-text-opacity, 1));
}

.text-red-600{
  --tw-text-opacity:        1;
  color:        rgb(220 38 38 / var(--tw-text-opacity, 1));
}

.text-red-700{
  --tw-text-opacity:        1;
  color:        rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.text-white{
  --tw-text-opacity:        1;
  color:        rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.text-white\/30{
  color:        rgb(255 255 255 / 0.3);
}

.text-white\/40{
  color:        rgb(255 255 255 / 0.4);
}

.text-yellow-400{
  --tw-text-opacity:        1;
  color:        rgb(250 204 21 / var(--tw-text-opacity, 1));
}

.text-yellow-500{
  --tw-text-opacity:        1;
  color:        rgb(234 179 8 / var(--tw-text-opacity, 1));
}

.underline{
  text-decoration-line:        underline;
}

.no-underline{
  text-decoration-line:        none;
}

.placeholder-maic-t3::-moz-placeholder{
  --tw-placeholder-opacity:        1;
  color:        rgb(72 79 88 / var(--tw-placeholder-opacity, 1));
}

.placeholder-maic-t3::placeholder{
  --tw-placeholder-opacity:        1;
  color:        rgb(72 79 88 / var(--tw-placeholder-opacity, 1));
}

.accent-\[\#00E096\]{
  accent-color:        #00E096;
}

.accent-maic-accent{
  accent-color:        #00E096;
}

.accent-maic-amber{
  accent-color:        #FFB020;
}

.opacity-0{
  opacity:        0;
}

.opacity-30{
  opacity:        0.3;
}

.opacity-40{
  opacity:        0.4;
}

.opacity-50{
  opacity:        0.5;
}

.opacity-55{
  opacity:        0.55;
}

.opacity-60{
  opacity:        0.6;
}

.opacity-70{
  opacity:        0.7;
}

.opacity-75{
  opacity:        0.75;
}

.opacity-80{
  opacity:        0.8;
}

.shadow{
  --tw-shadow:        0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:        0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow:        var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl{
  --tw-shadow:        0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored:        0 25px 50px -12px var(--tw-shadow-color);
  box-shadow:        var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-maic-card{
  --tw-shadow:        0 1px 4px rgba(0, 0, 0, 0.50);
  --tw-shadow-colored:        0 1px 4px var(--tw-shadow-color);
  box-shadow:        var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm{
  --tw-shadow:        0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored:        0 1px 2px 0 var(--tw-shadow-color);
  box-shadow:        var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow:        0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored:        0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow:        var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none{
  outline:        2px solid transparent;
  outline-offset:        2px;
}

.ring{
  --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(3px + 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-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);
}

.ring-maic-accent\/30{
  --tw-ring-color:        rgb(0 224 150 / 0.3);
}

.ring-slate-800{
  --tw-ring-opacity:        1;
  --tw-ring-color:        rgb(30 41 59 / var(--tw-ring-opacity, 1));
}

.ring-offset-1{
  --tw-ring-offset-width:        1px;
}

.drop-shadow{
  --tw-drop-shadow:        drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}

.backdrop-blur-sm{
  --tw-backdrop-blur:        blur(4px);
  backdrop-filter:        var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition{
  transition-property:        color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function:        cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:        150ms;
}

.transition-\[width\]{
  transition-property:        width;
  transition-timing-function:        cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:        150ms;
}

.transition-all{
  transition-property:        all;
  transition-timing-function:        cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:        150ms;
}

.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;
}

.transition-opacity{
  transition-property:        opacity;
  transition-timing-function:        cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:        150ms;
}

.transition-transform{
  transition-property:        transform;
  transition-timing-function:        cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration:        150ms;
}

.duration-100{
  transition-duration:        100ms;
}

.duration-150{
  transition-duration:        150ms;
}

.duration-200{
  transition-duration:        200ms;
}

.duration-300{
  transition-duration:        300ms;
}

.duration-500{
  transition-duration:        500ms;
}

.duration-700{
  transition-duration:        700ms;
}

.duration-\[1200ms\]{
  transition-duration:        1200ms;
}

.duration-\[120ms\]{
  transition-duration:        120ms;
}

.ease-\[cubic-bezier\(0\.4\2c 0\2c 0\.2\2c 1\)\]{
  transition-timing-function:        cubic-bezier(0.4,0,0.2,1);
}

.ease-in{
  transition-timing-function:        cubic-bezier(0.4, 0, 1, 1);
}

.ease-out{
  transition-timing-function:        cubic-bezier(0, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════════════════════
   MAIC Design System — Variables CSS
   Basado en Claude Design dashboard
════════════════════════════════════════════════════════════════ */

:root {
  /* Paleta principal */
  --navy:           #06192E;
  --navy-2:         #0a2440;
  --navy-3:         #0d2d4f;
  --amber:          #E8A830;
  --amber-2:        #F2BB55;
  --amber-3:        #C58E22;
  --blue:           #378ADD;
  --blue-2:         #5BA3EA;
  --blue-soft:      #DBEAFE;

  /* Semánticos */
  --success:        #10B981;
  --success-bg:     #D1FAE5;
  --warning:        #F59E0B;
  --warning-bg:     #FEF3C7;
  --danger:         #EF4444;
  --danger-bg:      #FEE2E2;
  --info:           #3B82F6;
  --info-bg:        #DBEAFE;

  /* Superficies y layout */
  --bg:             #F8FAFC;
  --card:           #FFFFFF;
  --border:         #E2E8F0;
  --border-2:       #CBD5E1;

  /* Tipografía */
  --ink:            #0F172A;
  --ink-2:          #334155;
  --muted:          #64748B;
  --muted-2:        #94A3B8;

  /* Aliases de compatibilidad (para componentes existentes) */
  --color-navy:        #06192E;
  --color-navy-light:  #378ADD;
  --color-amber:       #E8A830;
  --color-bg:          #F8FAFC;
  --color-surface:     #FFFFFF;
  --color-border:      rgba(255,255,255,0.08);
  --color-border-2:    rgba(255,255,255,0.14);
  --color-text:        #0F172A;
  --color-muted:       #64748B;
  --color-hint:        #94A3B8;
  --color-green:       #10B981;
  --color-green-bg:    #D1FAE5;
  --color-red:         #EF4444;
  --color-red-bg:      #FEE2E2;
  --color-blue:        #378ADD;
  --color-blue-bg:     #DBEAFE;

  /* Radios */
  --radius-xs:      4px;
  --radius-sm:      6px;
  --radius-md:      8px;
  --radius-lg:      10px;
  --radius-xl:      12px;
}

/* ── Reset y base ────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding: 0;
}

button { font-family: inherit; cursor: pointer; }

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

/* ── Scrollbar ───────────────────────────────────────────────── */

::-webkit-scrollbar { width: 5px; height: 5px; }

::-webkit-scrollbar-track { background: transparent; }

::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 10px; }

::-webkit-scrollbar-thumb:hover { background: var(--muted-2); }

/* ══════════════════════════════════════════════════════════════
   CARDS
════════════════════════════════════════════════════════════════ */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  padding: 20px;
}

.card-sm {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
  padding: 14px 16px;
}

.card-head {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

.card-head h3 {
  margin: 0;
  font-size: 14px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em;
}

.card-body { padding: 18px; }

.card-body.tight { padding: 12px; }

.card-body.flush { padding: 0; }

/* ══════════════════════════════════════════════════════════════
   BADGES
════════════════════════════════════════════════════════════════ */

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 8px; border-radius: 4px;
  font-size: 11px; font-weight: 600; line-height: 1.4;
  border: 1px solid transparent; white-space: nowrap;
}

.badge-success { background: var(--success-bg); color: #059669;  border-color: #6EE7B7; }

.badge-danger  { background: var(--danger-bg);  color: #DC2626;  border-color: #FCA5A5; }

.badge-warning { background: var(--warning-bg); color: #D97706;  border-color: #FCD34D; }

.badge-info    { background: var(--info-bg);    color: #1D4ED8;  border-color: #93C5FD; }

.badge-amber   { background: var(--amber);      color: var(--navy); border-color: var(--amber-3); }

.badge-neutral { background: #EEF2F7;           color: var(--ink-2); border-color: var(--border-2); }

/* Aliases para compatibilidad */

.badge-success { background: var(--success-bg); color: var(--success); }

.badge-muted   { background: var(--bg); color: var(--muted-2); }

/* ══════════════════════════════════════════════════════════════
   BOTONES
════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; font-family: inherit;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
  white-space: nowrap; border: 1px solid transparent; cursor: pointer;
}

.btn-primary {
  padding: 9px 16px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: white;
  font-size: 13.5px; font-weight: 600;
  border: none; cursor: pointer;
  font-family: inherit;
  transition: background .15s ease;
}

.btn-primary:hover { background: var(--navy-2); }

.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-amber {
  background: var(--amber); color: var(--navy);
  border: none; padding: 9px 16px; border-radius: var(--radius-md);
  font-size: 13.5px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background .15s ease;
}

.btn-amber:hover { background: var(--amber-2); }

.btn-ghost {
  background: var(--card); color: var(--ink-2);
  border: 1px solid var(--border);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 600; font-family: inherit;
  cursor: pointer; transition: background .15s ease, border-color .15s ease;
}

.btn-ghost:hover { background: var(--bg); border-color: var(--border-2); }

/* ══════════════════════════════════════════════════════════════
   INPUTS
════════════════════════════════════════════════════════════════ */

.input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13.5px; font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(55, 138, 221, 0.15);
}

.input:disabled { opacity: 0.5; cursor: not-allowed; background: var(--bg); }

.input::-moz-placeholder { color: var(--muted-2); }

.input::placeholder { color: var(--muted-2); }

textarea.input {
  height: auto; min-height: 96px;
  padding: 10px 12px; resize: vertical; line-height: 1.5;
}

select.input { cursor: pointer; }

/* ══════════════════════════════════════════════════════════════
   TABLAS
════════════════════════════════════════════════════════════════ */

.tbl-wrap { overflow: auto; }

.tbl { width: 100%; border-collapse: collapse; font-size: 13px; }

.tbl thead th {
  text-align: left; padding: 10px 14px;
  background: var(--bg); color: var(--muted); font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.tbl tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2); vertical-align: middle;
}

.tbl tbody tr:last-child td { border-bottom: 0; }

.tbl tbody tr:hover { background: #FAFBFD; }

.tbl .strong { color: var(--ink); font-weight: 500; }

.tbl .muted  { color: var(--muted); font-size: 12px; }

/* ══════════════════════════════════════════════════════════════
   KPI CARDS
════════════════════════════════════════════════════════════════ */

.kpi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.kpi-label { font-size: 12px; color: var(--muted); font-weight: 500; }

.kpi-val {
  font-size: 30px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--ink); margin-top: 6px;
}

.kpi-bar {
  margin-top: 10px; height: 5px;
  background: #EEF2F7; border-radius: 100px; overflow: hidden;
}

.kpi-bar i { display: block; height: 100%; background: var(--blue); border-radius: 100px; }

/* ══════════════════════════════════════════════════════════════
   PAGE HEADERS
════════════════════════════════════════════════════════════════ */

.page-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 20px; gap: 24px; flex-wrap: wrap;
}

.page-title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.015em; color: var(--ink); margin: 0;
}

.page-sub { font-size: 13px; color: var(--muted); margin-top: 4px; }

.page-actions { display: flex; gap: 8px; align-items: center; }

/* ══════════════════════════════════════════════════════════════
   MISC UTILITIES
════════════════════════════════════════════════════════════════ */

.link { color: var(--blue); cursor: pointer; font-weight: 500; }

.link:hover { color: var(--navy); }

.divider { height: 1px; background: var(--border); margin: 16px 0; }

.empty-state {
  text-align: center; padding: 48px 24px;
  color: var(--muted); font-size: 14px;
}

.empty-state svg { color: var(--muted-2); margin-bottom: 12px; }

.placeholder\:text-maic-t3::-moz-placeholder{
  --tw-text-opacity:        1;
  color:        rgb(72 79 88 / var(--tw-text-opacity, 1));
}

.placeholder\:text-maic-t3::placeholder{
  --tw-text-opacity:        1;
  color:        rgb(72 79 88 / var(--tw-text-opacity, 1));
}

.placeholder\:text-white\/30::-moz-placeholder{
  color:        rgb(255 255 255 / 0.3);
}

.placeholder\:text-white\/30::placeholder{
  color:        rgb(255 255 255 / 0.3);
}

.last\:mb-0:last-child{
  margin-bottom:        0px;
}

.last\:border-0:last-child{
  border-width:        0px;
}

.last\:pb-0:last-child{
  padding-bottom:        0px;
}

.hover\:scale-105:hover{
  --tw-scale-x:        1.05;
  --tw-scale-y:        1.05;
  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));
}

.hover\:\!border-maic-amber\/50:hover{
  border-color:        rgb(255 176 32 / 0.5) !important;
}

.hover\:border-maic-accent:hover{
  --tw-border-opacity:        1;
  border-color:        rgb(0 224 150 / var(--tw-border-opacity, 1));
}

.hover\:border-maic-accent\/20:hover{
  border-color:        rgb(0 224 150 / 0.2);
}

.hover\:border-maic-accent\/30:hover{
  border-color:        rgb(0 224 150 / 0.3);
}

.hover\:border-maic-accent\/40:hover{
  border-color:        rgb(0 224 150 / 0.4);
}

.hover\:border-maic-red\/20:hover{
  border-color:        rgb(255 77 77 / 0.2);
}

.hover\:border-maic-t3\/30:hover{
  border-color:        rgb(72 79 88 / 0.3);
}

.hover\:border-maic-t3\/40:hover{
  border-color:        rgb(72 79 88 / 0.4);
}

.hover\:border-white\/20:hover{
  border-color:        rgb(255 255 255 / 0.2);
}

.hover\:border-white\/\[0\.08\]:hover{
  border-color:        rgb(255 255 255 / 0.08);
}

.hover\:border-white\/\[0\.12\]:hover{
  border-color:        rgb(255 255 255 / 0.12);
}

.hover\:border-white\/\[0\.14\]:hover{
  border-color:        rgb(255 255 255 / 0.14);
}

.hover\:border-white\/\[0\.15\]:hover{
  border-color:        rgb(255 255 255 / 0.15);
}

.hover\:border-white\/\[0\.18\]:hover{
  border-color:        rgb(255 255 255 / 0.18);
}

.hover\:border-white\/\[0\.25\]:hover{
  border-color:        rgb(255 255 255 / 0.25);
}

.hover\:border-white\/\[0\.2\]:hover{
  border-color:        rgb(255 255 255 / 0.2);
}

.hover\:border-l-maic-t3\/40:hover{
  border-left-color:        rgb(72 79 88 / 0.4);
}

.hover\:\!bg-maic-amber\/10:hover{
  background-color:        rgb(255 176 32 / 0.1) !important;
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity:        1;
  background-color:        rgb(249 250 251 / var(--tw-bg-opacity, 1));
}

.hover\:bg-indigo-700:hover{
  --tw-bg-opacity:        1;
  background-color:        rgb(67 56 202 / var(--tw-bg-opacity, 1));
}

.hover\:bg-maic-accent-dim:hover{
  --tw-bg-opacity:        1;
  background-color:        rgb(0 179 119 / var(--tw-bg-opacity, 1));
}

.hover\:bg-maic-accent\/10:hover{
  background-color:        rgb(0 224 150 / 0.1);
}

.hover\:bg-maic-accent\/20:hover{
  background-color:        rgb(0 224 150 / 0.2);
}

.hover\:bg-maic-accent\/30:hover{
  background-color:        rgb(0 224 150 / 0.3);
}

.hover\:bg-maic-accent\/5:hover{
  background-color:        rgb(0 224 150 / 0.05);
}

.hover\:bg-maic-accent\/80:hover{
  background-color:        rgb(0 224 150 / 0.8);
}

.hover\:bg-maic-amber\/10:hover{
  background-color:        rgb(255 176 32 / 0.1);
}

.hover\:bg-maic-amber\/30:hover{
  background-color:        rgb(255 176 32 / 0.3);
}

.hover\:bg-maic-blue\/20:hover{
  background-color:        rgb(77 158 255 / 0.2);
}

.hover\:bg-maic-elevated:hover{
  --tw-bg-opacity:        1;
  background-color:        rgb(28 35 51 / var(--tw-bg-opacity, 1));
}

.hover\:bg-maic-red\/10:hover{
  background-color:        rgb(255 77 77 / 0.1);
}

.hover\:bg-maic-red\/20:hover{
  background-color:        rgb(255 77 77 / 0.2);
}

.hover\:bg-maic-red\/80:hover{
  background-color:        rgb(255 77 77 / 0.8);
}

.hover\:bg-maic-surface:hover{
  --tw-bg-opacity:        1;
  background-color:        rgb(22 27 34 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-200:hover{
  --tw-bg-opacity:        1;
  background-color:        rgb(254 202 202 / var(--tw-bg-opacity, 1));
}

.hover\:bg-red-500\/10:hover{
  background-color:        rgb(239 68 68 / 0.1);
}

.hover\:bg-red-500\/30:hover{
  background-color:        rgb(239 68 68 / 0.3);
}

.hover\:bg-white\/30:hover{
  background-color:        rgb(255 255 255 / 0.3);
}

.hover\:bg-white\/\[0\.02\]:hover{
  background-color:        rgb(255 255 255 / 0.02);
}

.hover\:bg-white\/\[0\.03\]:hover{
  background-color:        rgb(255 255 255 / 0.03);
}

.hover\:bg-white\/\[0\.04\]:hover{
  background-color:        rgb(255 255 255 / 0.04);
}

.hover\:bg-white\/\[0\.05\]:hover{
  background-color:        rgb(255 255 255 / 0.05);
}

.hover\:bg-white\/\[0\.06\]:hover{
  background-color:        rgb(255 255 255 / 0.06);
}

.hover\:bg-white\/\[0\.15\]:hover{
  background-color:        rgb(255 255 255 / 0.15);
}

.hover\:bg-white\/\[0\.1\]:hover{
  background-color:        rgb(255 255 255 / 0.1);
}

.hover\:text-maic-accent:hover{
  --tw-text-opacity:        1;
  color:        rgb(0 224 150 / var(--tw-text-opacity, 1));
}

.hover\:text-maic-accent-dim:hover{
  --tw-text-opacity:        1;
  color:        rgb(0 179 119 / var(--tw-text-opacity, 1));
}

.hover\:text-maic-red:hover{
  --tw-text-opacity:        1;
  color:        rgb(255 77 77 / var(--tw-text-opacity, 1));
}

.hover\:text-maic-t1:hover{
  --tw-text-opacity:        1;
  color:        rgb(240 246 252 / var(--tw-text-opacity, 1));
}

.hover\:text-maic-t2:hover{
  --tw-text-opacity:        1;
  color:        rgb(139 148 158 / var(--tw-text-opacity, 1));
}

.hover\:text-red-400:hover{
  --tw-text-opacity:        1;
  color:        rgb(248 113 113 / var(--tw-text-opacity, 1));
}

.hover\:text-red-700:hover{
  --tw-text-opacity:        1;
  color:        rgb(185 28 28 / var(--tw-text-opacity, 1));
}

.hover\:text-white\/50:hover{
  color:        rgb(255 255 255 / 0.5);
}

.hover\:underline:hover{
  text-decoration-line:        underline;
}

.hover\:no-underline:hover{
  text-decoration-line:        none;
}

.hover\:opacity-100:hover{
  opacity:        1;
}

.hover\:opacity-90:hover{
  opacity:        0.9;
}

.focus\:border-\[\#00E096\]:focus{
  --tw-border-opacity:        1;
  border-color:        rgb(0 224 150 / var(--tw-border-opacity, 1));
}

.focus\:border-maic-accent:focus{
  --tw-border-opacity:        1;
  border-color:        rgb(0 224 150 / var(--tw-border-opacity, 1));
}

.focus\:border-maic-amber:focus{
  --tw-border-opacity:        1;
  border-color:        rgb(255 176 32 / var(--tw-border-opacity, 1));
}

.focus\:border-maic-amber\/40:focus{
  border-color:        rgb(255 176 32 / 0.4);
}

.focus\:shadow-maic-focus:focus{
  --tw-shadow:        0 0 0 2px rgba(0, 224, 150, 0.20);
  --tw-shadow-colored:        0 0 0 2px var(--tw-shadow-color);
  box-shadow:        var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus{
  outline:        2px solid transparent;
  outline-offset:        2px;
}

.focus\:ring-1:focus{
  --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);
}

.focus\:ring-2:focus{
  --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\:ring-blue-500:focus{
  --tw-ring-opacity:        1;
  --tw-ring-color:        rgb(59 130 246 / var(--tw-ring-opacity, 1));
}

.focus\:ring-indigo-500:focus{
  --tw-ring-opacity:        1;
  --tw-ring-color:        rgb(99 102 241 / var(--tw-ring-opacity, 1));
}

.focus\:ring-maic-accent\/30:focus{
  --tw-ring-color:        rgb(0 224 150 / 0.3);
}

.active\:scale-\[0\.98\]:active{
  --tw-scale-x:        0.98;
  --tw-scale-y:        0.98;
  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));
}

.disabled\:pointer-events-none:disabled{
  pointer-events:        none;
}

.disabled\:cursor-not-allowed:disabled{
  cursor:        not-allowed;
}

.disabled\:opacity-30:disabled{
  opacity:        0.3;
}

.disabled\:opacity-40:disabled{
  opacity:        0.4;
}

.disabled\:opacity-50:disabled{
  opacity:        0.5;
}

.disabled\:opacity-60:disabled{
  opacity:        0.6;
}

.group:hover .group-hover\:block{
  display:        block;
}

.group:hover .group-hover\:text-maic-accent{
  --tw-text-opacity:        1;
  color:        rgb(0 224 150 / var(--tw-text-opacity, 1));
}

.group:hover .group-hover\:opacity-100{
  opacity:        1;
}

.group:hover .group-hover\:opacity-60{
  opacity:        0.6;
}

@media (min-width: 640px){

  .sm\:inline{
    display:        inline;
  }

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

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

@media (min-width: 1024px){

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

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

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

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

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

  .lg\:grid-cols-\[1fr_280px\]{
    grid-template-columns:        1fr 280px;
  }
}
