@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap";

/* apps/aws-audit-ui/src/theme/tokens/palette.css */
:root {
  --pink-50: rgb(253, 242, 248);
  --pink-100: rgb(252, 231, 243);
  --pink-200: rgb(251, 207, 232);
  --pink-300: rgb(249, 168, 212);
  --pink-400: rgb(244, 114, 182);
  --pink-500: rgb(245, 72, 152);
  --pink-600: rgb(225, 0, 115);
  --pink-700: rgb(190, 24, 93);
  --pink-800: rgb(157, 23, 77);
  --pink-900: rgb(131, 24, 67);
  --pink-950: rgb(80, 7, 36);
  --zinc-50: rgb(250, 250, 250);
  --zinc-100: rgb(244, 244, 245);
  --zinc-200: rgb(228, 228, 231);
  --zinc-300: rgb(212, 212, 216);
  --zinc-400: rgb(161, 161, 170);
  --zinc-500: rgb(113, 113, 122);
  --zinc-600: rgb(82, 82, 91);
  --zinc-700: rgb(63, 63, 70);
  --zinc-800: rgb(39, 39, 42);
  --zinc-900: rgb(24, 24, 27);
  --zinc-950: rgb(9, 9, 11);
  --green-50: rgb(240, 253, 244);
  --green-100: rgb(220, 252, 231);
  --green-400: rgb(74, 222, 128);
  --green-500: rgb(34, 197, 94);
  --green-600: rgb(22, 163, 74);
  --green-700: rgb(21, 128, 61);
  --emerald-50: rgb(236, 253, 245);
  --emerald-400: rgb(52, 211, 153);
  --emerald-500: rgb(16, 185, 129);
  --emerald-600: rgb(5, 150, 105);
  --red-50: rgb(254, 242, 242);
  --red-100: rgb(254, 226, 226);
  --red-300: rgb(252, 165, 165);
  --red-400: rgb(248, 113, 113);
  --red-500: rgb(239, 68, 68);
  --red-600: rgb(220, 38, 38);
  --red-700: rgb(185, 28, 28);
  --orange-50: rgb(255, 247, 237);
  --orange-100: rgb(255, 237, 213);
  --orange-400: rgb(251, 146, 60);
  --orange-500: rgb(249, 115, 22);
  --orange-600: rgb(234, 88, 12);
  --amber-50: rgb(255, 251, 235);
  --amber-400: rgb(251, 191, 36);
  --amber-500: rgb(245, 158, 11);
  --amber-600: rgb(217, 119, 6);
  --yellow-400: rgb(250, 204, 21);
  --yellow-500: rgb(234, 179, 8);
  --sky-50: rgb(240, 249, 255);
  --sky-100: rgb(224, 242, 254);
  --sky-400: rgb(56, 189, 248);
  --sky-500: rgb(14, 165, 233);
  --sky-600: rgb(2, 132, 199);
  --blue-50: rgb(239, 246, 255);
  --blue-400: rgb(96, 165, 250);
  --blue-500: rgb(59, 130, 246);
  --blue-600: rgb(37, 99, 235);
}

/* apps/aws-audit-ui/src/theme/tokens/colors.css */
:root {
  --primary-50: var(--pink-50);
  --primary-100: var(--pink-100);
  --primary-200: var(--pink-200);
  --primary-300: var(--pink-300);
  --primary-400: var(--pink-400);
  --primary-500: var(--pink-500);
  --primary-600: var(--pink-600);
  --primary-700: var(--pink-700);
  --primary-color: var(--pink-500);
  --primary-hover-color: var(--pink-600);
  --primary-active-color: var(--pink-700);
  --primary-contrast-color: var(--surface-0);
  --surface-0: rgb(255, 255, 255);
  --surface-50: var(--zinc-50);
  --surface-100: var(--zinc-100);
  --surface-200: var(--zinc-200);
  --surface-300: var(--zinc-300);
  --surface-400: var(--zinc-400);
  --surface-500: var(--zinc-500);
  --surface-600: var(--zinc-600);
  --surface-700: var(--zinc-700);
  --surface-800: var(--zinc-800);
  --surface-900: var(--zinc-900);
  --surface-950: var(--zinc-950);
  --text-color: var(--surface-700);
  --text-hover-color: var(--surface-800);
  --text-muted-color: var(--surface-500);
  --text-hover-muted-color: var(--surface-600);
  --content-background: var(--surface-0);
  --content-border-color: var(--surface-200);
  --content-hover-background: var(--surface-100);
  --content-color: var(--text-color);
  --form-field-background: var(--surface-0);
  --form-field-border-color: var(--surface-200);
  --form-field-hover-border-color: var(--surface-400);
  --form-field-focus-border-color: var(--primary-color);
  --form-field-invalid-border-color: var(--red-400);
  --form-field-color: var(--surface-700);
  --form-field-placeholder-color: var(--surface-500);
  --form-field-icon-color: var(--surface-400);
  --form-field-disabled-background: var(--surface-100);
  --form-field-filled-background: var(--surface-50);
  --overlay-popover-background: var(--surface-0);
  --overlay-popover-border-color: var(--surface-200);
  --overlay-modal-background: var(--surface-0);
  --overlay-modal-border-color: var(--surface-200);
  --mask-background: rgba(0, 0, 0, 0.4);
  --list-option-color: var(--text-color);
  --list-option-focus-background: var(--surface-100);
  --list-option-focus-color: var(--text-hover-color);
  --list-option-selected-background: var(--primary-50);
  --list-option-selected-color: var(--primary-color);
  --focus-ring-color: var(--primary-color);
  --focus-ring-width: 1px;
  --focus-ring-offset: 2px;
  --success-color: var(--green-500);
  --success-strong: var(--green-600);
  --success-surface: var(--green-50);
  --success-contrast: var(--surface-0);
  --info-color: var(--sky-500);
  --info-strong: var(--sky-600);
  --info-surface: var(--sky-50);
  --info-contrast: var(--surface-0);
  --warn-color: var(--orange-500);
  --warn-strong: var(--orange-600);
  --warn-surface: var(--orange-50);
  --warn-contrast: var(--surface-0);
  --danger-color: var(--red-500);
  --danger-strong: var(--red-600);
  --danger-surface: var(--red-50);
  --danger-contrast: var(--surface-0);
  --secondary-color: var(--surface-100);
  --secondary-hover: var(--surface-200);
  --secondary-color-text: var(--surface-700);
  --disabled-opacity: 0.6;
}
[data-theme=dark] {
  --primary-color: var(--pink-400);
  --primary-hover-color: var(--pink-300);
  --primary-active-color: var(--pink-200);
  --primary-contrast-color: var(--surface-900);
  --text-color: var(--surface-0);
  --text-hover-color: var(--surface-0);
  --text-muted-color: var(--surface-400);
  --text-hover-muted-color: var(--surface-300);
  --content-background: var(--surface-900);
  --content-border-color: var(--surface-700);
  --content-hover-background: var(--surface-800);
  --form-field-background: var(--surface-950);
  --form-field-border-color: var(--surface-600);
  --form-field-hover-border-color: var(--surface-500);
  --form-field-color: var(--surface-0);
  --form-field-placeholder-color: var(--surface-400);
  --form-field-disabled-background: var(--surface-700);
  --form-field-filled-background: var(--surface-800);
  --overlay-popover-background: var(--surface-900);
  --overlay-popover-border-color: var(--surface-700);
  --overlay-modal-background: var(--surface-900);
  --overlay-modal-border-color: var(--surface-700);
  --list-option-focus-background: var(--surface-800);
  --list-option-selected-background: color-mix(in srgb, var(--primary-color) 16%, transparent);
  --success-surface: color-mix(in srgb, var(--green-500) 14%, var(--surface-900));
  --info-surface: color-mix(in srgb, var(--sky-500) 14%, var(--surface-900));
  --warn-surface: color-mix(in srgb, var(--orange-500) 14%, var(--surface-900));
  --danger-surface: color-mix(in srgb, var(--red-500) 14%, var(--surface-900));
  --secondary-color: var(--surface-800);
  --secondary-hover: var(--surface-700);
  --secondary-color-text: var(--surface-0);
}

/* apps/aws-audit-ui/src/theme/tokens/typography.css */
:root {
  --font-sans:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --font-mono:
    "JetBrains Mono",
    ui-monospace,
    "SF Mono",
    "SFMono-Regular",
    Menlo,
    Consolas,
    monospace;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --text-h1: 72px;
  --leading-h1: 90px;
  --text-h2: 60px;
  --leading-h2: 72px;
  --text-h3: 48px;
  --leading-h3: 60px;
  --text-h4: 36px;
  --leading-h4: 44px;
  --text-h5: 30px;
  --leading-h5: 38px;
  --text-h6: 24px;
  --leading-h6: 32px;
  --text-h7: 20px;
  --leading-h7: 30px;
  --text-body-xl: 20px;
  --leading-body-xl: 30px;
  --text-body-lg: 18px;
  --leading-body-lg: 28px;
  --text-body-md: 16px;
  --leading-body-md: 24px;
  --text-body-sm: 14px;
  --leading-body-sm: 20px;
  --text-body-xs: 12px;
  --leading-body-xs: 18px;
  --app-font-size: 14px;
  --app-line-height: 20px;
  --app-sm-font-size: 12px;
  --app-sm-line-height: 18px;
  --app-lg-font-size: 18px;
  --app-lg-line-height: 28px;
  --letter-spacing-tight: -0.01em;
  --letter-spacing-normal: 0;
}

/* apps/aws-audit-ui/src/theme/tokens/spacing.css */
:root {
  --radius-none: 0;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;
  --space-0: 0;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --form-field-padding-x: 12px;
  --form-field-padding-y: 8px;
  --form-field-sm-padding-x: 10px;
  --form-field-sm-padding-y: 6px;
  --form-field-lg-padding-x: 14px;
  --form-field-lg-padding-y: 10px;
  --form-field-border-radius: var(--radius-md);
  --form-field-border-width: 1px;
  --content-border-radius: var(--radius-md);
  --overlay-modal-border-radius: var(--radius-xl);
  --overlay-popover-border-radius: var(--radius-md);
  --list-option-border-radius: var(--radius-sm);
  --icon-size: 16px;
  --shadow-xs: 0 1px 2px 0 rgba(18, 18, 23, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(16, 24, 40, 0.08), 0 1px 2px 0 rgba(16, 24, 40, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(16, 24, 40, 0.08), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);
  --shadow-xl: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
  --shadow-overlay: 0 25px 50px -12px rgba(0, 0, 0, 0.18), 0 12px 24px -8px rgba(0, 0, 0, 0.12);
  --transition-fast: 0.1s;
  --transition-base: 0.2s;
  --transition-slow: 0.3s;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

/* apps/aws-audit-ui/src/theme/tokens/base.css */
@layer theme, base, components, utilities;
:root {
  color-scheme: light;
}
@layer base {
  body {
    margin: 0;
    color: var(--text-color);
    font-size: var(--app-font-size);
    line-height: var(--app-line-height);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--surface-900);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-sans);
    letter-spacing: var(--letter-spacing-tight);
    text-wrap: balance;
  }
  h1 {
    font-size: var(--text-h4);
    line-height: var(--leading-h4);
  }
  h2 {
    font-size: var(--text-h5);
    line-height: var(--leading-h5);
  }
  h3 {
    font-size: var(--text-h6);
    line-height: var(--leading-h6);
  }
  h4 {
    font-size: var(--text-h7);
    line-height: var(--leading-h7);
  }
  p {
    margin: 0;
    text-wrap: pretty;
  }
  a {
    color: var(--primary-color);
    text-decoration: none;
  }
  a:hover {
    color: var(--primary-hover-color);
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--font-mono);
  }
  ::selection {
    background: var(--primary-100);
    color: var(--primary-700);
  }
}

/* apps/aws-audit-ui/src/styles.scss */
/*! tailwindcss v4.3.3 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root,
  :host {
    --font-sans:
      Inter,
      ui-sans-serif,
      system-ui,
      -apple-system,
      "Segoe UI",
      Roboto,
      Helvetica,
      Arial,
      sans-serif;
    --font-mono:
      "JetBrains Mono",
      ui-monospace,
      "SF Mono",
      "SFMono-Regular",
      Menlo,
      Consolas,
      monospace;
    --color-red-400: oklch(70.4% 0.191 22.216);
    --color-red-500: oklch(63.7% 0.237 25.331);
    --color-red-600: oklch(57.7% 0.245 27.325);
    --color-amber-50: oklch(98.7% 0.022 95.277);
    --color-amber-100: oklch(96.2% 0.059 95.617);
    --color-amber-300: oklch(87.9% 0.169 91.605);
    --color-amber-400: oklch(82.8% 0.189 84.429);
    --color-amber-500: oklch(76.9% 0.188 70.08);
    --color-amber-700: oklch(55.5% 0.163 48.998);
    --color-green-100: oklch(96.2% 0.044 156.743);
    --color-green-400: oklch(79.2% 0.209 151.711);
    --color-green-500: oklch(72.3% 0.219 149.579);
    --color-green-600: oklch(62.7% 0.194 149.214);
    --color-green-700: oklch(52.7% 0.154 150.069);
    --color-green-900: oklch(39.3% 0.095 152.535);
    --color-black: #000;
    --color-white: #fff;
    --spacing: 0.25rem;
    --container-2xs: 18rem;
    --container-sm: 24rem;
    --container-lg: 32rem;
    --container-xl: 36rem;
    --text-xs: 0.75rem;
    --text-xs--line-height: calc(1 / 0.75);
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  ::after,
  ::before,
  ::backdrop,
  ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html,
  :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring:where(:not(iframe)) {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    display: block;
    vertical-align: middle;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea,
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
  ::-webkit-datetime-edit-year-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-minute-field,
  ::-webkit-datetime-edit-second-field,
  ::-webkit-datetime-edit-millisecond-field,
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type=button], [type=reset], [type=submit]),
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button,
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden=until-found])) {
    display: none !important;
  }
}
@layer utilities {
  .invisible {
    visibility: hidden;
  }
  .visible {
    visibility: visible;
  }
  .absolute {
    position: absolute;
  }
  .fixed {
    position: fixed;
  }
  .relative {
    position: relative;
  }
  .static {
    position: static;
  }
  .inset-0 {
    inset: 0px;
  }
  .top-0 {
    top: 0px;
  }
  .right-0 {
    right: 0px;
  }
  .bottom-0 {
    bottom: 0px;
  }
  .left-0 {
    left: 0px;
  }
  .left-72 {
    left: calc(var(--spacing) * 72);
  }
  .left-full {
    left: 100%;
  }
  .z-10 {
    z-index: 10;
  }
  .z-11 {
    z-index: 11;
  }
  .m-0 {
    margin: 0px;
  }
  .m-auto {
    margin: auto;
  }
  .mx-1 {
    margin-inline: var(--spacing);
  }
  .mt-0\.5 {
    margin-top: calc(var(--spacing) * 0.5);
  }
  .mt-1 {
    margin-top: var(--spacing);
  }
  .mt-2 {
    margin-top: calc(var(--spacing) * 2);
  }
  .mt-3 {
    margin-top: calc(var(--spacing) * 3);
  }
  .mt-4 {
    margin-top: calc(var(--spacing) * 4);
  }
  .mt-6 {
    margin-top: calc(var(--spacing) * 6);
  }
  .mr-1 {
    margin-right: var(--spacing);
  }
  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }
  .mb-1\.5 {
    margin-bottom: calc(var(--spacing) * 1.5);
  }
  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }
  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }
  .mb-8 {
    margin-bottom: calc(var(--spacing) * 8);
  }
  .ml-auto {
    margin-left: auto;
  }
  .block {
    display: block;
  }
  .contents {
    display: contents;
  }
  .flex {
    display: flex;
  }
  .grid {
    display: grid;
  }
  .hidden {
    display: none;
  }
  .inline-flex {
    display: inline-flex;
  }
  .table {
    display: table;
  }
  .aspect-square\! {
    aspect-ratio: 1 / 1 !important;
  }
  .h-1\.5 {
    height: calc(var(--spacing) * 1.5);
  }
  .h-3 {
    height: calc(var(--spacing) * 3);
  }
  .h-5 {
    height: calc(var(--spacing) * 5);
  }
  .h-7 {
    height: calc(var(--spacing) * 7);
  }
  .h-8 {
    height: calc(var(--spacing) * 8);
  }
  .h-8\! {
    height: calc(var(--spacing) * 8) !important;
  }
  .h-9 {
    height: calc(var(--spacing) * 9);
  }
  .h-10 {
    height: calc(var(--spacing) * 10);
  }
  .h-12 {
    height: calc(var(--spacing) * 12);
  }
  .h-16 {
    height: calc(var(--spacing) * 16);
  }
  .h-18 {
    height: calc(var(--spacing) * 18);
  }
  .h-full {
    height: 100%;
  }
  .h-screen {
    height: 100vh;
  }
  .min-h-0 {
    min-height: 0px;
  }
  .min-h-screen {
    min-height: 100vh;
  }
  .w-1\.5 {
    width: calc(var(--spacing) * 1.5);
  }
  .w-2xs {
    width: var(--container-2xs);
  }
  .w-8\! {
    width: calc(var(--spacing) * 8) !important;
  }
  .w-9 {
    width: calc(var(--spacing) * 9);
  }
  .w-10 {
    width: calc(var(--spacing) * 10);
  }
  .w-12 {
    width: calc(var(--spacing) * 12);
  }
  .w-16 {
    width: calc(var(--spacing) * 16);
  }
  .w-50 {
    width: calc(var(--spacing) * 50);
  }
  .w-72 {
    width: calc(var(--spacing) * 72);
  }
  .w-\[40rem\] {
    width: 40rem;
  }
  .w-full {
    width: 100%;
  }
  .w-px {
    width: 1px;
  }
  .max-w-lg {
    max-width: var(--container-lg);
  }
  .max-w-sm {
    max-width: var(--container-sm);
  }
  .max-w-xl {
    max-width: var(--container-xl);
  }
  .min-w-0 {
    min-width: 0px;
  }
  .min-w-33 {
    min-width: calc(var(--spacing) * 33);
  }
  .min-w-75 {
    min-width: calc(var(--spacing) * 75);
  }
  .min-w-85 {
    min-width: calc(var(--spacing) * 85);
  }
  .min-w-full {
    min-width: 100%;
  }
  .flex-1 {
    flex: 1;
  }
  .flex-auto {
    flex: auto;
  }
  .shrink-0 {
    flex-shrink: 0;
  }
  .rotate-0 {
    rotate: 0deg;
  }
  .rotate-180 {
    rotate: 180deg;
  }
  .animate-fadeinleft {
    animation: fadeinleft 0.15s linear;
  }
  .animate-fadeoutleft {
    animation: fadeoutleft 0.15s linear;
  }
  .cursor-e-resize {
    cursor: e-resize;
  }
  .cursor-e-resize\! {
    cursor: e-resize !important;
  }
  .cursor-n-resize\! {
    cursor: n-resize !important;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .cursor-w-resize {
    cursor: w-resize;
  }
  .cursor-w-resize\! {
    cursor: w-resize !important;
  }
  .list-none {
    list-style-type: none;
  }
  .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-\[minmax\(0\,1fr\)_120px_60px_110px_90px\] {
    grid-template-columns: minmax(0, 1fr) 120px 60px 110px 90px;
  }
  .grid-rows-\[0fr\] {
    grid-template-rows: 0fr;
  }
  .grid-rows-\[1fr\] {
    grid-template-rows: 1fr;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .place-content-center {
    place-content: center;
  }
  .items-center {
    align-items: center;
  }
  .items-start {
    align-items: flex-start;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .gap-0\.5 {
    gap: calc(var(--spacing) * 0.5);
  }
  .gap-1 {
    gap: var(--spacing);
  }
  .gap-1\.5 {
    gap: calc(var(--spacing) * 1.5);
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-2\.5 {
    gap: calc(var(--spacing) * 2.5);
  }
  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-5 {
    gap: calc(var(--spacing) * 5);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .gap-px {
    gap: 1px;
  }
  :where(.space-y-2 > :not(:last-child)) {
    --tw-space-y-reverse: 0;
    margin-block-start: calc(calc(var(--spacing) * 2) * var(--tw-space-y-reverse));
    margin-block-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-y-reverse)));
  }
  .truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .overflow-auto {
    overflow: auto;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .overflow-visible {
    overflow: visible;
  }
  .overflow-y-auto {
    overflow-y: auto;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-2xl {
    border-radius: var(--radius-2xl);
  }
  .rounded-full {
    border-radius: calc(infinity * 1px);
  }
  .rounded-lg {
    border-radius: var(--radius-lg);
  }
  .rounded-md {
    border-radius: var(--radius-md);
  }
  .rounded-xl {
    border-radius: var(--radius-xl);
  }
  .rounded-xl\! {
    border-radius: var(--radius-xl) !important;
  }
  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-2 {
    border-style: var(--tw-border-style);
    border-width: 2px;
  }
  .border-t {
    border-top-style: var(--tw-border-style);
    border-top-width: 1px;
  }
  .border-r {
    border-right-style: var(--tw-border-style);
    border-right-width: 1px;
  }
  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }
  .border-dashed {
    --tw-border-style: dashed;
    border-style: dashed;
  }
  .border-none\! {
    --tw-border-style: none !important;
    border-style: none !important;
  }
  .border-amber-300 {
    border-color: var(--color-amber-300);
  }
  .border-primary {
    border-color: var(--p-primary-color);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-primary {
      border-color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
    }
  }
  .border-surface-100 {
    border-color: var(--p-surface-100);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-surface-100 {
      border-color: color-mix(in srgb, var(--p-surface-100) calc(100% * 1), transparent);
    }
  }
  .border-surface-200 {
    border-color: var(--p-surface-200);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-surface-200 {
      border-color: color-mix(in srgb, var(--p-surface-200) calc(100% * 1), transparent);
    }
  }
  .border-surface-300 {
    border-color: var(--p-surface-300);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-surface-300 {
      border-color: color-mix(in srgb, var(--p-surface-300) calc(100% * 1), transparent);
    }
  }
  .border-surface-700 {
    border-color: var(--p-surface-700);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-surface-700 {
      border-color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
    }
  }
  .border-surface-800 {
    border-color: var(--p-surface-800);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .border-surface-800 {
      border-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
    }
  }
  .border-transparent {
    border-color: transparent;
  }
  .bg-amber-50 {
    background-color: var(--color-amber-50);
  }
  .bg-amber-100 {
    background-color: var(--color-amber-100);
  }
  .bg-black {
    background-color: var(--color-black);
  }
  .bg-green-100 {
    background-color: var(--color-green-100);
  }
  .bg-green-500 {
    background-color: var(--color-green-500);
  }
  .bg-primary\! {
    background-color: var(--p-primary-color) !important;
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary\! {
      background-color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent) !important;
    }
  }
  .bg-primary\/10 {
    background-color: var(--p-primary-color);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary\/10 {
      background-color: color-mix(in oklab, color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent) 10%, transparent);
    }
  }
  .bg-primary\/15 {
    background-color: var(--p-primary-color);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-primary\/15 {
      background-color: color-mix(in oklab, color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent) 15%, transparent);
    }
  }
  .bg-surface-0 {
    background-color: var(--p-surface-0);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-0 {
      background-color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
    }
  }
  .bg-surface-50 {
    background-color: var(--p-surface-50);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-50 {
      background-color: color-mix(in srgb, var(--p-surface-50) calc(100% * 1), transparent);
    }
  }
  .bg-surface-100 {
    background-color: var(--p-surface-100);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-100 {
      background-color: color-mix(in srgb, var(--p-surface-100) calc(100% * 1), transparent);
    }
  }
  .bg-surface-200 {
    background-color: var(--p-surface-200);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-200 {
      background-color: color-mix(in srgb, var(--p-surface-200) calc(100% * 1), transparent);
    }
  }
  .bg-surface-400 {
    background-color: var(--p-surface-400);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-400 {
      background-color: color-mix(in srgb, var(--p-surface-400) calc(100% * 1), transparent);
    }
  }
  .bg-surface-800 {
    background-color: var(--p-surface-800);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-800 {
      background-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
    }
  }
  .bg-surface-900 {
    background-color: var(--p-surface-900);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .bg-surface-900 {
      background-color: color-mix(in srgb, var(--p-surface-900) calc(100% * 1), transparent);
    }
  }
  .bg-transparent {
    background-color: transparent;
  }
  .object-cover {
    object-fit: cover;
  }
  .p-1 {
    padding: var(--spacing);
  }
  .p-1\! {
    padding: var(--spacing) !important;
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-2\! {
    padding: calc(var(--spacing) * 2) !important;
  }
  .p-3 {
    padding: calc(var(--spacing) * 3);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-5 {
    padding: calc(var(--spacing) * 5);
  }
  .p-6 {
    padding: calc(var(--spacing) * 6);
  }
  .p-8 {
    padding: calc(var(--spacing) * 8);
  }
  .px-0\! {
    padding-inline: 0px !important;
  }
  .px-1 {
    padding-inline: var(--spacing);
  }
  .px-1\.5 {
    padding-inline: calc(var(--spacing) * 1.5);
  }
  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }
  .px-2\.5 {
    padding-inline: calc(var(--spacing) * 2.5);
  }
  .px-3 {
    padding-inline: calc(var(--spacing) * 3);
  }
  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }
  .px-5 {
    padding-inline: calc(var(--spacing) * 5);
  }
  .px-8 {
    padding-inline: calc(var(--spacing) * 8);
  }
  .py-0\.5 {
    padding-block: calc(var(--spacing) * 0.5);
  }
  .py-1 {
    padding-block: var(--spacing);
  }
  .py-1\.5 {
    padding-block: calc(var(--spacing) * 1.5);
  }
  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }
  .py-2\! {
    padding-block: calc(var(--spacing) * 2) !important;
  }
  .py-2\.5 {
    padding-block: calc(var(--spacing) * 2.5);
  }
  .py-3 {
    padding-block: calc(var(--spacing) * 3);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .py-16 {
    padding-block: calc(var(--spacing) * 16);
  }
  .pt-2 {
    padding-top: calc(var(--spacing) * 2);
  }
  .pt-3 {
    padding-top: calc(var(--spacing) * 3);
  }
  .pt-6 {
    padding-top: calc(var(--spacing) * 6);
  }
  .pb-2 {
    padding-bottom: calc(var(--spacing) * 2);
  }
  .pb-3 {
    padding-bottom: calc(var(--spacing) * 3);
  }
  .pb-5 {
    padding-bottom: calc(var(--spacing) * 5);
  }
  .pl-4 {
    padding-left: calc(var(--spacing) * 4);
  }
  .pl-7 {
    padding-left: calc(var(--spacing) * 7);
  }
  .pl-10 {
    padding-left: calc(var(--spacing) * 10);
  }
  .pl-11 {
    padding-left: calc(var(--spacing) * 11);
  }
  .pl-14 {
    padding-left: calc(var(--spacing) * 14);
  }
  .text-center {
    text-align: center;
  }
  .text-end {
    text-align: end;
  }
  .text-left {
    text-align: left;
  }
  .text-start {
    text-align: start;
  }
  .font-mono {
    font-family: var(--font-mono);
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-2xl\! {
    font-size: var(--text-2xl) !important;
    line-height: var(--tw-leading, var(--text-2xl--line-height)) !important;
  }
  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .text-3xl\! {
    font-size: var(--text-3xl) !important;
    line-height: var(--tw-leading, var(--text-3xl--line-height)) !important;
  }
  .text-base\! {
    font-size: var(--text-base) !important;
    line-height: var(--tw-leading, var(--text-base--line-height)) !important;
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .text-xl\! {
    font-size: var(--text-xl) !important;
    line-height: var(--tw-leading, var(--text-xl--line-height)) !important;
  }
  .text-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }
  .text-xs\! {
    font-size: var(--text-xs) !important;
    line-height: var(--tw-leading, var(--text-xs--line-height)) !important;
  }
  .text-\[10px\] {
    font-size: 10px;
  }
  .text-\[11px\] {
    font-size: 11px;
  }
  .leading-3 {
    --tw-leading: calc(var(--spacing) * 3);
    line-height: calc(var(--spacing) * 3);
  }
  .leading-5 {
    --tw-leading: calc(var(--spacing) * 5);
    line-height: calc(var(--spacing) * 5);
  }
  .leading-none\! {
    --tw-leading: 1 !important;
    line-height: 1 !important;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-bold\! {
    --tw-font-weight: var(--font-weight-bold) !important;
    font-weight: var(--font-weight-bold) !important;
  }
  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }
  .font-normal {
    --tw-font-weight: var(--font-weight-normal);
    font-weight: var(--font-weight-normal);
  }
  .font-semibold {
    --tw-font-weight: var(--font-weight-semibold);
    font-weight: var(--font-weight-semibold);
  }
  .tracking-wide {
    --tw-tracking: var(--tracking-wide);
    letter-spacing: var(--tracking-wide);
  }
  .tracking-wider {
    --tw-tracking: var(--tracking-wider);
    letter-spacing: var(--tracking-wider);
  }
  .tracking-widest {
    --tw-tracking: var(--tracking-widest);
    letter-spacing: var(--tracking-widest);
  }
  .break-all {
    word-break: break-all;
  }
  .whitespace-pre-wrap {
    white-space: pre-wrap;
  }
  .text-amber-700 {
    color: var(--color-amber-700);
  }
  .text-green-600 {
    color: var(--color-green-600);
  }
  .text-green-700 {
    color: var(--color-green-700);
  }
  .text-primary {
    color: var(--p-primary-color);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-primary {
      color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
    }
  }
  .text-primary-contrast\! {
    color: var(--p-primary-contrast-color) !important;
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-primary-contrast\! {
      color: color-mix(in srgb, var(--p-primary-contrast-color) calc(100% * 1), transparent) !important;
    }
  }
  .text-primary\/70 {
    color: var(--p-primary-color);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-primary\/70 {
      color: color-mix(in oklab, color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent) 70%, transparent);
    }
  }
  .text-red-500 {
    color: var(--color-red-500);
  }
  .text-red-600 {
    color: var(--color-red-600);
  }
  .text-surface-0 {
    color: var(--p-surface-0);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-0 {
      color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
    }
  }
  .text-surface-300 {
    color: var(--p-surface-300);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-300 {
      color: color-mix(in srgb, var(--p-surface-300) calc(100% * 1), transparent);
    }
  }
  .text-surface-400 {
    color: var(--p-surface-400);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-400 {
      color: color-mix(in srgb, var(--p-surface-400) calc(100% * 1), transparent);
    }
  }
  .text-surface-500 {
    color: var(--p-surface-500);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-500 {
      color: color-mix(in srgb, var(--p-surface-500) calc(100% * 1), transparent);
    }
  }
  .text-surface-600 {
    color: var(--p-surface-600);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-600 {
      color: color-mix(in srgb, var(--p-surface-600) calc(100% * 1), transparent);
    }
  }
  .text-surface-700 {
    color: var(--p-surface-700);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-700 {
      color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
    }
  }
  .text-surface-900 {
    color: var(--p-surface-900);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .text-surface-900 {
      color: color-mix(in srgb, var(--p-surface-900) calc(100% * 1), transparent);
    }
  }
  .capitalize {
    text-transform: capitalize;
  }
  .uppercase {
    text-transform: uppercase;
  }
  .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,);
  }
  .opacity-25 {
    opacity: 25%;
  }
  .shadow {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-none {
    --tw-shadow: 0 0 #0000;
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .shadow-sm {
    --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow:
      var(--tw-inset-shadow),
      var(--tw-inset-ring-shadow),
      var(--tw-ring-offset-shadow),
      var(--tw-ring-shadow),
      var(--tw-shadow);
  }
  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }
  .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-\[grid-template-rows\] {
    transition-property: grid-template-rows;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-colors {
    transition-property:
      color,
      background-color,
      border-color,
      outline-color,
      text-decoration-color,
      fill,
      stroke,
      --tw-gradient-from,
      --tw-gradient-via,
      --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-transform {
    transition-property:
      transform,
      translate,
      scale,
      rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-150 {
    --tw-duration: 150ms;
    transition-duration: 150ms;
  }
  .duration-400 {
    --tw-duration: 400ms;
    transition-duration: 400ms;
  }
  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }
  .select-none {
    -webkit-user-select: none;
    user-select: none;
  }
  @media (hover: hover) {
    .group-hover\:text-surface-0:is(:where(.group):hover *) {
      color: var(--p-surface-0);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .group-hover\:text-surface-0:is(:where(.group):hover *) {
        color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
      }
    }
    .group-hover\/sidemenu\:invisible:is(:where(.group\/sidemenu):hover *) {
      visibility: hidden;
    }
    .group-hover\/sidemenu\:flex:is(:where(.group\/sidemenu):hover *) {
      display: flex;
    }
    .group-hover\/sidemenu\:hidden:is(:where(.group\/sidemenu):hover *) {
      display: none;
    }
  }
  .group-has-aria-\[current\=page\]\/item\:border-surface-700:is(:where(.group\/item):has([aria-current=page]) *) {
    border-color: var(--p-surface-700);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .group-has-aria-\[current\=page\]\/item\:border-surface-700:is(:where(.group\/item):has([aria-current=page]) *) {
      border-color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
    }
  }
  .group-has-aria-\[current\=page\]\/item\:bg-surface-800:is(:where(.group\/item):has([aria-current=page]) *) {
    background-color: var(--p-surface-800);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .group-has-aria-\[current\=page\]\/item\:bg-surface-800:is(:where(.group\/item):has([aria-current=page]) *) {
      background-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
    }
  }
  .group-has-aria-\[current\=page\]\/item\:text-surface-0:is(:where(.group\/item):has([aria-current=page]) *) {
    color: var(--p-surface-0);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .group-has-aria-\[current\=page\]\/item\:text-surface-0:is(:where(.group\/item):has([aria-current=page]) *) {
      color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
    }
  }
  .group-aria-\[current\=page\]\:text-surface-0:is(:where(.group)[aria-current=page] *) {
    color: var(--p-surface-0);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .group-aria-\[current\=page\]\:text-surface-0:is(:where(.group)[aria-current=page] *) {
      color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
    }
  }
  .group-\[\.settings-open\]\/sidebar\:rotate-180:is(:where(.group\/sidebar):is(.settings-open) *) {
    rotate: 180deg;
  }
  .group-\[\.settings-open\]\/sidebar\:cursor-s-resize\!:is(:where(.group\/sidebar):is(.settings-open) *) {
    cursor: s-resize !important;
  }
  .group-\[\.settings-open\]\/sidebar\:grid-rows-\[1fr\]:is(:where(.group\/sidebar):is(.settings-open) *) {
    grid-template-rows: 1fr;
  }
  .first\:mt-0:first-child {
    margin-top: 0px;
  }
  .first\:border-t-0:first-child {
    border-top-style: var(--tw-border-style);
    border-top-width: 0px;
  }
  .first\:pt-0:first-child {
    padding-top: 0px;
  }
  .last\:border-0:last-child {
    border-style: var(--tw-border-style);
    border-width: 0px;
  }
  @media (hover: hover) {
    .hover\:border-primary:hover {
      border-color: var(--p-primary-color);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:border-primary:hover {
        border-color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
      }
    }
    .hover\:border-surface-400:hover {
      border-color: var(--p-surface-400);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:border-surface-400:hover {
        border-color: color-mix(in srgb, var(--p-surface-400) calc(100% * 1), transparent);
      }
    }
    .hover\:border-surface-700:hover {
      border-color: var(--p-surface-700);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:border-surface-700:hover {
        border-color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
      }
    }
    .hover\:bg-primary\/10:hover {
      background-color: var(--p-primary-color);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-primary\/10:hover {
        background-color: color-mix(in oklab, color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent) 10%, transparent);
      }
    }
    .hover\:bg-surface-50:hover {
      background-color: var(--p-surface-50);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-surface-50:hover {
        background-color: color-mix(in srgb, var(--p-surface-50) calc(100% * 1), transparent);
      }
    }
    .hover\:bg-surface-100:hover {
      background-color: var(--p-surface-100);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-surface-100:hover {
        background-color: color-mix(in srgb, var(--p-surface-100) calc(100% * 1), transparent);
      }
    }
    .hover\:bg-surface-800:hover {
      background-color: var(--p-surface-800);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:bg-surface-800:hover {
        background-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
      }
    }
    .hover\:text-primary:hover {
      color: var(--p-primary-color);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:text-primary:hover {
        color: color-mix(in srgb, var(--p-primary-color) calc(100% * 1), transparent);
      }
    }
    .hover\:text-surface-0:hover {
      color: var(--p-surface-0);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:text-surface-0:hover {
        color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
      }
    }
    .hover\:text-surface-600:hover {
      color: var(--p-surface-600);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:text-surface-600:hover {
        color: color-mix(in srgb, var(--p-surface-600) calc(100% * 1), transparent);
      }
    }
    .hover\:text-surface-900:hover {
      color: var(--p-surface-900);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .hover\:text-surface-900:hover {
        color: color-mix(in srgb, var(--p-surface-900) calc(100% * 1), transparent);
      }
    }
    .hover\:underline:hover {
      text-decoration-line: underline;
    }
  }
  .aria-\[current\=page\]\:border-surface-700[aria-current=page] {
    border-color: var(--p-surface-700);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .aria-\[current\=page\]\:border-surface-700[aria-current=page] {
      border-color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
    }
  }
  .aria-\[current\=page\]\:bg-surface-800[aria-current=page] {
    background-color: var(--p-surface-800);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .aria-\[current\=page\]\:bg-surface-800[aria-current=page] {
      background-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
    }
  }
  .aria-\[current\=page\]\:text-surface-0[aria-current=page] {
    color: var(--p-surface-0);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .aria-\[current\=page\]\:text-surface-0[aria-current=page] {
      color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
    }
  }
  @media (width < 64rem) {
    .max-lg\:hidden {
      display: none;
    }
  }
  @media (width >= 40rem) {
    .sm\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sm\:px-20 {
      padding-inline: calc(var(--spacing) * 20);
    }
  }
  @media (width >= 64rem) {
    .lg\:absolute {
      position: absolute;
    }
    .lg\:static {
      position: static;
    }
    .lg\:-top-2 {
      top: calc(var(--spacing) * -2);
    }
    .lg\:mr-0 {
      margin-right: 0px;
    }
    .lg\:ml-4 {
      margin-left: calc(var(--spacing) * 4);
    }
    .lg\:hidden {
      display: none;
    }
    .lg\:w-20 {
      width: calc(var(--spacing) * 20);
    }
    .lg\:w-60 {
      width: calc(var(--spacing) * 60);
    }
    .lg\:justify-center {
      justify-content: center;
    }
    .lg\:p-2 {
      padding: calc(var(--spacing) * 2);
    }
    .lg\:text-4xl {
      font-size: var(--text-4xl);
      line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
    .lg\:shadow-lg {
      --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
      box-shadow:
        var(--tw-inset-shadow),
        var(--tw-inset-ring-shadow),
        var(--tw-ring-offset-shadow),
        var(--tw-ring-shadow),
        var(--tw-shadow);
    }
    .lg\:group-focus-within\/item\:block:is(:where(.group\/item):focus-within *) {
      display: block;
    }
    @media (hover: hover) {
      .lg\:group-hover\/item\:block:is(:where(.group\/item):hover *) {
        display: block;
      }
    }
    .lg\:before\:absolute::before {
      content: var(--tw-content);
      position: absolute;
    }
    .lg\:before\:inset-y-0::before {
      content: var(--tw-content);
      inset-block: 0px;
    }
    .lg\:before\:-left-4::before {
      content: var(--tw-content);
      left: calc(var(--spacing) * -4);
    }
    .lg\:before\:w-4::before {
      content: var(--tw-content);
      width: calc(var(--spacing) * 4);
    }
    .lg\:before\:content-\[\'\'\]::before {
      --tw-content: "";
      content: var(--tw-content);
    }
    @media (width < 96rem) {
      @media (hover: hover) {
        .lg\:max-2xl\:group-hover\/sidemenu\:block:is(:where(.group\/sidemenu):hover *) {
          display: block;
        }
      }
      .lg\:max-2xl\:peer-\[\.animate-fadeoutleft\]\/menu\:static:is(:where(.peer\/menu):is(.animate-fadeoutleft) ~ *) {
        position: static;
      }
      .lg\:max-2xl\:peer-\[\.animate-fadeoutleft\]\/menu\:block:is(:where(.peer\/menu):is(.animate-fadeoutleft) ~ *) {
        display: block;
      }
      .lg\:max-2xl\:peer-\[\.hidden\]\/menu\:static:is(:where(.peer\/menu):is(.hidden) ~ *) {
        position: static;
      }
      .lg\:max-2xl\:peer-\[\.hidden\]\/menu\:block:is(:where(.peer\/menu):is(.hidden) ~ *) {
        display: block;
      }
    }
  }
  @media (width >= 96rem) {
    .\32xl\:static {
      position: static;
    }
    .\32xl\:block {
      display: block;
    }
    .\32xl\:hidden {
      display: none;
    }
    @media (hover: hover) {
      .\32xl\:group-hover\/sidemenu\:block:is(:where(.group\/sidemenu):hover *) {
        display: block;
      }
    }
    .\32xl\:group-\[\.sidebar-collapsed\]\/sidebar\:static:is(:where(.group\/sidebar):is(.sidebar-collapsed) *) {
      position: static;
    }
    .\32xl\:group-\[\.sidebar-collapsed\]\/sidebar\:block:is(:where(.group\/sidebar):is(.sidebar-collapsed) *) {
      display: block;
    }
    .\32xl\:group-\[\.sidebar-collapsed\]\/sidebar\:hidden:is(:where(.group\/sidebar):is(.sidebar-collapsed) *) {
      display: none;
    }
  }
  .dark\:border-amber-500\/30:where(.dark-theme, .dark-theme *) {
    border-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 30%, transparent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:border-amber-500\/30:where(.dark-theme, .dark-theme *) {
      border-color: color-mix(in oklab, var(--color-amber-500) 30%, transparent);
    }
  }
  .dark\:border-surface-700:where(.dark-theme, .dark-theme *) {
    border-color: var(--p-surface-700);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:border-surface-700:where(.dark-theme, .dark-theme *) {
      border-color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
    }
  }
  .dark\:border-surface-800:where(.dark-theme, .dark-theme *) {
    border-color: var(--p-surface-800);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:border-surface-800:where(.dark-theme, .dark-theme *) {
      border-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
    }
  }
  .dark\:bg-amber-500\/5:where(.dark-theme, .dark-theme *) {
    background-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 5%, transparent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-amber-500\/5:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in oklab, var(--color-amber-500) 5%, transparent);
    }
  }
  .dark\:bg-amber-500\/10:where(.dark-theme, .dark-theme *) {
    background-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 10%, transparent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-amber-500\/10:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in oklab, var(--color-amber-500) 10%, transparent);
    }
  }
  .dark\:bg-green-900\/30:where(.dark-theme, .dark-theme *) {
    background-color: color-mix(in srgb, oklch(39.3% 0.095 152.535) 30%, transparent);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-green-900\/30:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in oklab, var(--color-green-900) 30%, transparent);
    }
  }
  .dark\:bg-surface-700:where(.dark-theme, .dark-theme *) {
    background-color: var(--p-surface-700);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-surface-700:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in srgb, var(--p-surface-700) calc(100% * 1), transparent);
    }
  }
  .dark\:bg-surface-800:where(.dark-theme, .dark-theme *) {
    background-color: var(--p-surface-800);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-surface-800:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
    }
  }
  .dark\:bg-surface-900:where(.dark-theme, .dark-theme *) {
    background-color: var(--p-surface-900);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-surface-900:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in srgb, var(--p-surface-900) calc(100% * 1), transparent);
    }
  }
  .dark\:bg-surface-950:where(.dark-theme, .dark-theme *) {
    background-color: var(--p-surface-950);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:bg-surface-950:where(.dark-theme, .dark-theme *) {
      background-color: color-mix(in srgb, var(--p-surface-950) calc(100% * 1), transparent);
    }
  }
  .dark\:bg-white:where(.dark-theme, .dark-theme *) {
    background-color: var(--color-white);
  }
  .dark\:text-amber-400:where(.dark-theme, .dark-theme *) {
    color: var(--color-amber-400);
  }
  .dark\:text-green-400:where(.dark-theme, .dark-theme *) {
    color: var(--color-green-400);
  }
  .dark\:text-red-400:where(.dark-theme, .dark-theme *) {
    color: var(--color-red-400);
  }
  .dark\:text-surface-0:where(.dark-theme, .dark-theme *) {
    color: var(--p-surface-0);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:text-surface-0:where(.dark-theme, .dark-theme *) {
      color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
    }
  }
  .dark\:text-surface-100:where(.dark-theme, .dark-theme *) {
    color: var(--p-surface-100);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:text-surface-100:where(.dark-theme, .dark-theme *) {
      color: color-mix(in srgb, var(--p-surface-100) calc(100% * 1), transparent);
    }
  }
  .dark\:text-surface-200:where(.dark-theme, .dark-theme *) {
    color: var(--p-surface-200);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:text-surface-200:where(.dark-theme, .dark-theme *) {
      color: color-mix(in srgb, var(--p-surface-200) calc(100% * 1), transparent);
    }
  }
  .dark\:text-surface-300:where(.dark-theme, .dark-theme *) {
    color: var(--p-surface-300);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:text-surface-300:where(.dark-theme, .dark-theme *) {
      color: color-mix(in srgb, var(--p-surface-300) calc(100% * 1), transparent);
    }
  }
  .dark\:text-surface-400:where(.dark-theme, .dark-theme *) {
    color: var(--p-surface-400);
  }
  @supports (color: color-mix(in lab, red, red)) {
    .dark\:text-surface-400:where(.dark-theme, .dark-theme *) {
      color: color-mix(in srgb, var(--p-surface-400) calc(100% * 1), transparent);
    }
  }
  @media (hover: hover) {
    .dark\:hover\:border-surface-500:where(.dark-theme, .dark-theme *):hover {
      border-color: var(--p-surface-500);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .dark\:hover\:border-surface-500:where(.dark-theme, .dark-theme *):hover {
        border-color: color-mix(in srgb, var(--p-surface-500) calc(100% * 1), transparent);
      }
    }
    .dark\:hover\:bg-surface-800:where(.dark-theme, .dark-theme *):hover {
      background-color: var(--p-surface-800);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .dark\:hover\:bg-surface-800:where(.dark-theme, .dark-theme *):hover {
        background-color: color-mix(in srgb, var(--p-surface-800) calc(100% * 1), transparent);
      }
    }
    .dark\:hover\:text-surface-0:where(.dark-theme, .dark-theme *):hover {
      color: var(--p-surface-0);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .dark\:hover\:text-surface-0:where(.dark-theme, .dark-theme *):hover {
        color: color-mix(in srgb, var(--p-surface-0) calc(100% * 1), transparent);
      }
    }
    .dark\:hover\:text-surface-300:where(.dark-theme, .dark-theme *):hover {
      color: var(--p-surface-300);
    }
    @supports (color: color-mix(in lab, red, red)) {
      .dark\:hover\:text-surface-300:where(.dark-theme, .dark-theme *):hover {
        color: color-mix(in srgb, var(--p-surface-300) calc(100% * 1), transparent);
      }
    }
  }
  li.submenu-open > * > .\[li\.submenu-open\>\*\>\&\]\:rotate-180 {
    rotate: 180deg;
  }
  li:not(.submenu-open) > .\[li\:not\(\.submenu-open\)\>\&\]\:invisible {
    visibility: hidden;
  }
  li:not(.submenu-open) > .\[li\:not\(\.submenu-open\)\>\&\]\:grid-rows-\[0fr\] {
    grid-template-rows: 0fr;
  }
}
@font-face {
  font-family: "primeicons";
  font-display: block;
  src: url("./media/primeicons.eot");
  src:
    url("./media/primeicons.eot?#iefix") format("embedded-opentype"),
    url("./media/primeicons.woff2") format("woff2"),
    url("./media/primeicons.woff") format("woff"),
    url("./media/primeicons.ttf") format("truetype"),
    url("./media/primeicons.svg?#primeicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.pi {
  font-family: "primeicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pi:before {
  --webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.pi-fw {
  width: 1.28571429em;
  text-align: center;
}
.pi-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.pi-eye-dropper:before {
  content: "\ea3c";
}
.pi-code-branch:before {
  content: "\ea3a";
}
.pi-signature:before {
  content: "\ea3b";
}
.pi-stamp:before {
  content: "\ea3d";
}
.pi-rectangle-xmark:before {
  content: "\ea3e";
}
.pi-note-sticky:before {
  content: "\ea3f";
}
.pi-sidebar:before {
  content: "\ea40";
}
.pi-slash:before {
  content: "\ea41";
}
.pi-grid-2:before {
  content: "\ea42";
}
.pi-columns-2:before {
  content: "\ea43";
}
.pi-rows-2:before {
  content: "\ea44";
}
.pi-square:before {
  content: "\ea45";
}
.pi-compress:before {
  content: "\ea46";
}
.pi-pen-line:before {
  content: "\ea47";
}
.pi-case-sensitive:before {
  content: "\ea48";
}
.pi-text-color:before {
  content: "\ea49";
}
.pi-list-tree:before {
  content: "\ea4a";
}
.pi-highlighter:before {
  content: "\ea4b";
}
.pi-text:before {
  content: "\ea4c";
}
.pi-heading-6:before {
  content: "\ea4d";
}
.pi-heading-5:before {
  content: "\ea4e";
}
.pi-heading-4:before {
  content: "\ea4f";
}
.pi-heading-3:before {
  content: "\ea50";
}
.pi-heading-2:before {
  content: "\ea51";
}
.pi-heading-1:before {
  content: "\ea52";
}
.pi-heading:before {
  content: "\ea53";
}
.pi-grip:before {
  content: "\ea54";
}
.pi-grip-horizontal:before {
  content: "\ea55";
}
.pi-grip-vertical:before {
  content: "\ea56";
}
.pi-paragraph-right:before {
  content: "\ea57";
}
.pi-paragraph-left:before {
  content: "\ea58";
}
.pi-arrow-u-turn-up-left:before {
  content: "\ea59";
}
.pi-arrow-u-turn-up-right:before {
  content: "\ea5a";
}
.pi-horizontal-rule:before {
  content: "\ea5b";
}
.pi-outdent:before {
  content: "\ea5c";
}
.pi-indent:before {
  content: "\ea5d";
}
.pi-list-ol:before {
  content: "\ea5e";
}
.pi-block-quote:before {
  content: "\ea5f";
}
.pi-superscript:before {
  content: "\ea60";
}
.pi-subscript:before {
  content: "\ea61";
}
.pi-strikethrough:before {
  content: "\ea62";
}
.pi-underline:before {
  content: "\ea63";
}
.pi-italic:before {
  content: "\ea64";
}
.pi-bold:before {
  content: "\ea65";
}
.pi-dot:before {
  content: "\ea66";
}
.pi-folder-plus:before {
  content: "\ea05";
}
.pi-receipt:before {
  content: "\ea06";
}
.pi-asterisk:before {
  content: "\ea07";
}
.pi-face-smile:before {
  content: "\ea08";
}
.pi-pinterest:before {
  content: "\ea09";
}
.pi-expand:before {
  content: "\ea0a";
}
.pi-pen-to-square:before {
  content: "\ea0b";
}
.pi-wave-pulse:before {
  content: "\ea0c";
}
.pi-turkish-lira:before {
  content: "\ea0d";
}
.pi-spinner-dotted:before {
  content: "\ea0e";
}
.pi-crown:before {
  content: "\ea0f";
}
.pi-pause-circle:before {
  content: "\ea10";
}
.pi-warehouse:before {
  content: "\ea11";
}
.pi-objects-column:before {
  content: "\ea12";
}
.pi-clipboard:before {
  content: "\ea13";
}
.pi-play-circle:before {
  content: "\ea14";
}
.pi-venus:before {
  content: "\ea15";
}
.pi-cart-minus:before {
  content: "\ea16";
}
.pi-file-plus:before {
  content: "\ea17";
}
.pi-microchip:before {
  content: "\ea18";
}
.pi-twitch:before {
  content: "\ea19";
}
.pi-building-columns:before {
  content: "\ea1a";
}
.pi-file-check:before {
  content: "\ea1b";
}
.pi-microchip-ai:before {
  content: "\ea1c";
}
.pi-trophy:before {
  content: "\ea1d";
}
.pi-barcode:before {
  content: "\ea1e";
}
.pi-file-arrow-up:before {
  content: "\ea1f";
}
.pi-mars:before {
  content: "\ea20";
}
.pi-tiktok:before {
  content: "\ea21";
}
.pi-arrow-up-right-and-arrow-down-left-from-center:before {
  content: "\ea22";
}
.pi-ethereum:before {
  content: "\ea23";
}
.pi-list-check:before {
  content: "\ea24";
}
.pi-thumbtack:before {
  content: "\ea25";
}
.pi-arrow-down-left-and-arrow-up-right-to-center:before {
  content: "\ea26";
}
.pi-equals:before {
  content: "\ea27";
}
.pi-lightbulb:before {
  content: "\ea28";
}
.pi-star-half:before {
  content: "\ea29";
}
.pi-address-book:before {
  content: "\ea2a";
}
.pi-chart-scatter:before {
  content: "\ea2b";
}
.pi-indian-rupee:before {
  content: "\ea2c";
}
.pi-star-half-fill:before {
  content: "\ea2d";
}
.pi-cart-arrow-down:before {
  content: "\ea2e";
}
.pi-calendar-clock:before {
  content: "\ea2f";
}
.pi-sort-up-fill:before {
  content: "\ea30";
}
.pi-sparkles:before {
  content: "\ea31";
}
.pi-bullseye:before {
  content: "\ea32";
}
.pi-sort-down-fill:before {
  content: "\ea33";
}
.pi-graduation-cap:before {
  content: "\ea34";
}
.pi-hammer:before {
  content: "\ea35";
}
.pi-bell-slash:before {
  content: "\ea36";
}
.pi-gauge:before {
  content: "\ea37";
}
.pi-shop:before {
  content: "\ea38";
}
.pi-headphones:before {
  content: "\ea39";
}
.pi-eraser:before {
  content: "\ea04";
}
.pi-stopwatch:before {
  content: "\ea01";
}
.pi-verified:before {
  content: "\ea02";
}
.pi-delete-left:before {
  content: "\ea03";
}
.pi-hourglass:before {
  content: "\e9fe";
}
.pi-truck:before {
  content: "\ea00";
}
.pi-wrench:before {
  content: "\e9ff";
}
.pi-microphone:before {
  content: "\e9fa";
}
.pi-megaphone:before {
  content: "\e9fb";
}
.pi-arrow-right-arrow-left:before {
  content: "\e9fc";
}
.pi-bitcoin:before {
  content: "\e9fd";
}
.pi-file-edit:before {
  content: "\e9f6";
}
.pi-language:before {
  content: "\e9f7";
}
.pi-file-export:before {
  content: "\e9f8";
}
.pi-file-import:before {
  content: "\e9f9";
}
.pi-file-word:before {
  content: "\e9f1";
}
.pi-gift:before {
  content: "\e9f2";
}
.pi-cart-plus:before {
  content: "\e9f3";
}
.pi-thumbs-down-fill:before {
  content: "\e9f4";
}
.pi-thumbs-up-fill:before {
  content: "\e9f5";
}
.pi-arrows-alt:before {
  content: "\e9f0";
}
.pi-calculator:before {
  content: "\e9ef";
}
.pi-sort-alt-slash:before {
  content: "\e9ee";
}
.pi-arrows-h:before {
  content: "\e9ec";
}
.pi-arrows-v:before {
  content: "\e9ed";
}
.pi-pound:before {
  content: "\e9eb";
}
.pi-prime:before {
  content: "\e9ea";
}
.pi-chart-pie:before {
  content: "\e9e9";
}
.pi-reddit:before {
  content: "\e9e8";
}
.pi-code:before {
  content: "\e9e7";
}
.pi-sync:before {
  content: "\e9e6";
}
.pi-shopping-bag:before {
  content: "\e9e5";
}
.pi-server:before {
  content: "\e9e4";
}
.pi-database:before {
  content: "\e9e3";
}
.pi-hashtag:before {
  content: "\e9e2";
}
.pi-bookmark-fill:before {
  content: "\e9df";
}
.pi-filter-fill:before {
  content: "\e9e0";
}
.pi-heart-fill:before {
  content: "\e9e1";
}
.pi-flag-fill:before {
  content: "\e9de";
}
.pi-circle:before {
  content: "\e9dc";
}
.pi-circle-fill:before {
  content: "\e9dd";
}
.pi-bolt:before {
  content: "\e9db";
}
.pi-history:before {
  content: "\e9da";
}
.pi-box:before {
  content: "\e9d9";
}
.pi-at:before {
  content: "\e9d8";
}
.pi-arrow-up-right:before {
  content: "\e9d4";
}
.pi-arrow-up-left:before {
  content: "\e9d5";
}
.pi-arrow-down-left:before {
  content: "\e9d6";
}
.pi-arrow-down-right:before {
  content: "\e9d7";
}
.pi-telegram:before {
  content: "\e9d3";
}
.pi-stop-circle:before {
  content: "\e9d2";
}
.pi-stop:before {
  content: "\e9d1";
}
.pi-whatsapp:before {
  content: "\e9d0";
}
.pi-building:before {
  content: "\e9cf";
}
.pi-qrcode:before {
  content: "\e9ce";
}
.pi-car:before {
  content: "\e9cd";
}
.pi-instagram:before {
  content: "\e9cc";
}
.pi-linkedin:before {
  content: "\e9cb";
}
.pi-send:before {
  content: "\e9ca";
}
.pi-slack:before {
  content: "\e9c9";
}
.pi-moon:before {
  content: "\e9c7";
}
.pi-sun:before {
  content: "\e9c8";
}
.pi-youtube:before {
  content: "\e9c5";
}
.pi-vimeo:before {
  content: "\e9c6";
}
.pi-flag:before {
  content: "\e9c4";
}
.pi-wallet:before {
  content: "\e9c3";
}
.pi-map:before {
  content: "\e9c2";
}
.pi-link:before {
  content: "\e9c1";
}
.pi-credit-card:before {
  content: "\e9bf";
}
.pi-discord:before {
  content: "\e9c0";
}
.pi-percentage:before {
  content: "\e9be";
}
.pi-euro:before {
  content: "\e9bd";
}
.pi-book:before {
  content: "\e9ba";
}
.pi-shield:before {
  content: "\e9b9";
}
.pi-paypal:before {
  content: "\e9bb";
}
.pi-amazon:before {
  content: "\e9bc";
}
.pi-phone:before {
  content: "\e9b8";
}
.pi-filter-slash:before {
  content: "\e9b7";
}
.pi-facebook:before {
  content: "\e9b4";
}
.pi-github:before {
  content: "\e9b5";
}
.pi-twitter:before {
  content: "\e9b6";
}
.pi-step-backward-alt:before {
  content: "\e9ac";
}
.pi-step-forward-alt:before {
  content: "\e9ad";
}
.pi-forward:before {
  content: "\e9ae";
}
.pi-backward:before {
  content: "\e9af";
}
.pi-fast-backward:before {
  content: "\e9b0";
}
.pi-fast-forward:before {
  content: "\e9b1";
}
.pi-pause:before {
  content: "\e9b2";
}
.pi-play:before {
  content: "\e9b3";
}
.pi-compass:before {
  content: "\e9ab";
}
.pi-id-card:before {
  content: "\e9aa";
}
.pi-ticket:before {
  content: "\e9a9";
}
.pi-file-o:before {
  content: "\e9a8";
}
.pi-reply:before {
  content: "\e9a7";
}
.pi-directions-alt:before {
  content: "\e9a5";
}
.pi-directions:before {
  content: "\e9a6";
}
.pi-thumbs-up:before {
  content: "\e9a3";
}
.pi-thumbs-down:before {
  content: "\e9a4";
}
.pi-sort-numeric-down-alt:before {
  content: "\e996";
}
.pi-sort-numeric-up-alt:before {
  content: "\e997";
}
.pi-sort-alpha-down-alt:before {
  content: "\e998";
}
.pi-sort-alpha-up-alt:before {
  content: "\e999";
}
.pi-sort-numeric-down:before {
  content: "\e99a";
}
.pi-sort-numeric-up:before {
  content: "\e99b";
}
.pi-sort-alpha-down:before {
  content: "\e99c";
}
.pi-sort-alpha-up:before {
  content: "\e99d";
}
.pi-sort-alt:before {
  content: "\e99e";
}
.pi-sort-amount-up:before {
  content: "\e99f";
}
.pi-sort-amount-down:before {
  content: "\e9a0";
}
.pi-sort-amount-down-alt:before {
  content: "\e9a1";
}
.pi-sort-amount-up-alt:before {
  content: "\e9a2";
}
.pi-palette:before {
  content: "\e995";
}
.pi-undo:before {
  content: "\e994";
}
.pi-desktop:before {
  content: "\e993";
}
.pi-sliders-v:before {
  content: "\e991";
}
.pi-sliders-h:before {
  content: "\e992";
}
.pi-search-plus:before {
  content: "\e98f";
}
.pi-search-minus:before {
  content: "\e990";
}
.pi-file-excel:before {
  content: "\e98e";
}
.pi-file-pdf:before {
  content: "\e98d";
}
.pi-check-square:before {
  content: "\e98c";
}
.pi-chart-line:before {
  content: "\e98b";
}
.pi-user-edit:before {
  content: "\e98a";
}
.pi-exclamation-circle:before {
  content: "\e989";
}
.pi-android:before {
  content: "\e985";
}
.pi-google:before {
  content: "\e986";
}
.pi-apple:before {
  content: "\e987";
}
.pi-microsoft:before {
  content: "\e988";
}
.pi-heart:before {
  content: "\e984";
}
.pi-mobile:before {
  content: "\e982";
}
.pi-tablet:before {
  content: "\e983";
}
.pi-key:before {
  content: "\e981";
}
.pi-shopping-cart:before {
  content: "\e980";
}
.pi-comments:before {
  content: "\e97e";
}
.pi-comment:before {
  content: "\e97f";
}
.pi-briefcase:before {
  content: "\e97d";
}
.pi-bell:before {
  content: "\e97c";
}
.pi-paperclip:before {
  content: "\e97b";
}
.pi-share-alt:before {
  content: "\e97a";
}
.pi-envelope:before {
  content: "\e979";
}
.pi-volume-down:before {
  content: "\e976";
}
.pi-volume-up:before {
  content: "\e977";
}
.pi-volume-off:before {
  content: "\e978";
}
.pi-eject:before {
  content: "\e975";
}
.pi-money-bill:before {
  content: "\e974";
}
.pi-images:before {
  content: "\e973";
}
.pi-image:before {
  content: "\e972";
}
.pi-sign-in:before {
  content: "\e970";
}
.pi-sign-out:before {
  content: "\e971";
}
.pi-wifi:before {
  content: "\e96f";
}
.pi-sitemap:before {
  content: "\e96e";
}
.pi-chart-bar:before {
  content: "\e96d";
}
.pi-camera:before {
  content: "\e96c";
}
.pi-dollar:before {
  content: "\e96b";
}
.pi-lock-open:before {
  content: "\e96a";
}
.pi-table:before {
  content: "\e969";
}
.pi-map-marker:before {
  content: "\e968";
}
.pi-list:before {
  content: "\e967";
}
.pi-eye-slash:before {
  content: "\e965";
}
.pi-eye:before {
  content: "\e966";
}
.pi-folder-open:before {
  content: "\e964";
}
.pi-folder:before {
  content: "\e963";
}
.pi-video:before {
  content: "\e962";
}
.pi-inbox:before {
  content: "\e961";
}
.pi-lock:before {
  content: "\e95f";
}
.pi-unlock:before {
  content: "\e960";
}
.pi-tags:before {
  content: "\e95d";
}
.pi-tag:before {
  content: "\e95e";
}
.pi-power-off:before {
  content: "\e95c";
}
.pi-save:before {
  content: "\e95b";
}
.pi-question-circle:before {
  content: "\e959";
}
.pi-question:before {
  content: "\e95a";
}
.pi-copy:before {
  content: "\e957";
}
.pi-file:before {
  content: "\e958";
}
.pi-clone:before {
  content: "\e955";
}
.pi-calendar-times:before {
  content: "\e952";
}
.pi-calendar-minus:before {
  content: "\e953";
}
.pi-calendar-plus:before {
  content: "\e954";
}
.pi-ellipsis-v:before {
  content: "\e950";
}
.pi-ellipsis-h:before {
  content: "\e951";
}
.pi-bookmark:before {
  content: "\e94e";
}
.pi-globe:before {
  content: "\e94f";
}
.pi-replay:before {
  content: "\e94d";
}
.pi-filter:before {
  content: "\e94c";
}
.pi-print:before {
  content: "\e94b";
}
.pi-align-right:before {
  content: "\e946";
}
.pi-align-left:before {
  content: "\e947";
}
.pi-align-center:before {
  content: "\e948";
}
.pi-align-justify:before {
  content: "\e949";
}
.pi-cog:before {
  content: "\e94a";
}
.pi-cloud-download:before {
  content: "\e943";
}
.pi-cloud-upload:before {
  content: "\e944";
}
.pi-cloud:before {
  content: "\e945";
}
.pi-pencil:before {
  content: "\e942";
}
.pi-users:before {
  content: "\e941";
}
.pi-clock:before {
  content: "\e940";
}
.pi-user-minus:before {
  content: "\e93e";
}
.pi-user-plus:before {
  content: "\e93f";
}
.pi-trash:before {
  content: "\e93d";
}
.pi-window-minimize:before {
  content: "\e93a";
}
.pi-window-maximize:before {
  content: "\e93b";
}
.pi-external-link:before {
  content: "\e93c";
}
.pi-refresh:before {
  content: "\e938";
}
.pi-user:before {
  content: "\e939";
}
.pi-exclamation-triangle:before {
  content: "\e922";
}
.pi-calendar:before {
  content: "\e927";
}
.pi-chevron-circle-left:before {
  content: "\e928";
}
.pi-chevron-circle-down:before {
  content: "\e929";
}
.pi-chevron-circle-right:before {
  content: "\e92a";
}
.pi-chevron-circle-up:before {
  content: "\e92b";
}
.pi-angle-double-down:before {
  content: "\e92c";
}
.pi-angle-double-left:before {
  content: "\e92d";
}
.pi-angle-double-right:before {
  content: "\e92e";
}
.pi-angle-double-up:before {
  content: "\e92f";
}
.pi-angle-down:before {
  content: "\e930";
}
.pi-angle-left:before {
  content: "\e931";
}
.pi-angle-right:before {
  content: "\e932";
}
.pi-angle-up:before {
  content: "\e933";
}
.pi-upload:before {
  content: "\e934";
}
.pi-download:before {
  content: "\e956";
}
.pi-ban:before {
  content: "\e935";
}
.pi-star-fill:before {
  content: "\e936";
}
.pi-star:before {
  content: "\e937";
}
.pi-chevron-left:before {
  content: "\e900";
}
.pi-chevron-right:before {
  content: "\e901";
}
.pi-chevron-down:before {
  content: "\e902";
}
.pi-chevron-up:before {
  content: "\e903";
}
.pi-caret-left:before {
  content: "\e904";
}
.pi-caret-right:before {
  content: "\e905";
}
.pi-caret-down:before {
  content: "\e906";
}
.pi-caret-up:before {
  content: "\e907";
}
.pi-search:before {
  content: "\e908";
}
.pi-check:before {
  content: "\e909";
}
.pi-check-circle:before {
  content: "\e90a";
}
.pi-times:before {
  content: "\e90b";
}
.pi-times-circle:before {
  content: "\e90c";
}
.pi-plus:before {
  content: "\e90d";
}
.pi-plus-circle:before {
  content: "\e90e";
}
.pi-minus:before {
  content: "\e90f";
}
.pi-minus-circle:before {
  content: "\e910";
}
.pi-circle-on:before {
  content: "\e911";
}
.pi-circle-off:before {
  content: "\e912";
}
.pi-sort-down:before {
  content: "\e913";
}
.pi-sort-up:before {
  content: "\e914";
}
.pi-sort:before {
  content: "\e915";
}
.pi-step-backward:before {
  content: "\e916";
}
.pi-step-forward:before {
  content: "\e917";
}
.pi-th-large:before {
  content: "\e918";
}
.pi-arrow-down:before {
  content: "\e919";
}
.pi-arrow-left:before {
  content: "\e91a";
}
.pi-arrow-right:before {
  content: "\e91b";
}
.pi-arrow-up:before {
  content: "\e91c";
}
.pi-bars:before {
  content: "\e91d";
}
.pi-arrow-circle-down:before {
  content: "\e91e";
}
.pi-arrow-circle-left:before {
  content: "\e91f";
}
.pi-arrow-circle-right:before {
  content: "\e920";
}
.pi-arrow-circle-up:before {
  content: "\e921";
}
.pi-info:before {
  content: "\e923";
}
.pi-info-circle:before {
  content: "\e924";
}
.pi-home:before {
  content: "\e925";
}
.pi-spinner:before {
  content: "\e926";
}
@layer base {
  html,
  body,
  body .p-component {
    font-size: 14px;
    font-family: var(--font-sans);
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(--font-mono);
  }
}
.p-button {
  flex-shrink: 0;
  white-space: nowrap;
}
html,
body {
  margin: 0;
  height: 100%;
}
body {
  background: var(--p-surface-50);
}
:root.dark-theme body {
  background: var(--p-surface-950);
}
.au-scroll::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.au-scroll::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background: var(--surface-300);
}
.au-row:hover {
  background: var(--surface-100);
}
@keyframes enter {
  from {
    opacity: var(--p-enter-opacity, 1);
    transform: translate3d(var(--p-enter-translate-x, 0), var(--p-enter-translate-y, 0), 0) scale3d(var(--p-enter-scale, 1), var(--p-enter-scale, 1), var(--p-enter-scale, 1)) rotate(var(--p-enter-rotate, 0));
  }
}
@keyframes leave {
  to {
    opacity: var(--p-leave-opacity, 1);
    transform: translate3d(var(--p-leave-translate-x, 0), var(--p-leave-translate-y, 0), 0) scale3d(var(--p-leave-scale, 1), var(--p-leave-scale, 1), var(--p-leave-scale, 1)) rotate(var(--p-leave-rotate, 0));
  }
}
@property --tw-space-y-reverse { syntax: "*"; inherits: false; initial-value: 0; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-leading { syntax: "*"; inherits: false; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-tracking { syntax: "*"; inherits: false; }
@property --tw-ordinal { syntax: "*"; inherits: false; }
@property --tw-slashed-zero { syntax: "*"; inherits: false; }
@property --tw-numeric-figure { syntax: "*"; inherits: false; }
@property --tw-numeric-spacing { syntax: "*"; inherits: false; }
@property --tw-numeric-fraction { syntax: "*"; inherits: false; }
@property --tw-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-shadow-color { syntax: "*"; inherits: false; }
@property --tw-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-inset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-shadow-color { syntax: "*"; inherits: false; }
@property --tw-inset-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-ring-color { syntax: "*"; inherits: false; }
@property --tw-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-inset-ring-color { syntax: "*"; inherits: false; }
@property --tw-inset-ring-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-ring-inset { syntax: "*"; inherits: false; }
@property --tw-ring-offset-width { syntax: "<length>"; inherits: false; initial-value: 0px; }
@property --tw-ring-offset-color { syntax: "*"; inherits: false; initial-value: #fff; }
@property --tw-ring-offset-shadow { syntax: "*"; inherits: false; initial-value: 0 0 #0000; }
@property --tw-outline-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
@property --tw-duration { syntax: "*"; inherits: false; }
@property --tw-ease { syntax: "*"; inherits: false; }
@property --tw-content { syntax: "*"; initial-value: ""; inherits: false; }
@keyframes fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes fadeoutleft {
  0% {
    opacity: 1;
    transform: translateX(0%);
    transition: transform 0.12s cubic-bezier(0, 0, 0.2, 1), opacity 0.12s cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-ordinal: initial;
      --tw-slashed-zero: initial;
      --tw-numeric-figure: initial;
      --tw-numeric-spacing: initial;
      --tw-numeric-fraction: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-outline-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-content: "";
    }
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
