/* [project]/app/globals.css [app-client] (css) */
@layer properties;
@layer theme, base, components, utilities;

@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --color-red-800: oklch(44.4% .177 26.899);
    --color-blue-800: oklch(42.4% .199 265.638);
    --color-gray-50: oklch(98.5% .002 247.839);
    --color-gray-100: oklch(96.7% .003 264.542);
    --color-gray-200: oklch(92.8% .006 264.531);
    --color-gray-300: oklch(87.2% .01 258.338);
    --color-gray-400: oklch(70.7% .022 261.325);
    --color-gray-500: oklch(55.1% .027 264.364);
    --color-gray-600: oklch(44.6% .03 256.802);
    --color-gray-700: oklch(37.3% .034 259.733);
    --color-gray-900: oklch(21% .034 264.665);
    --color-black: #000;
    --color-white: #fff;
    --spacing: .25rem;
    --container-3xl: 48rem;
    --text-xs: .75rem;
    --text-xs--line-height: calc(1 / .75);
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-base: 1rem;
    --text-base--line-height: calc(1.5 / 1);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --text-6xl: 3.75rem;
    --text-6xl--line-height: 1;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --tracking-tight: -.025em;
    --radius-sm: .25rem;
    --radius-md: .375rem;
    --radius-lg: .5rem;
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --ease-in-out: cubic-bezier(.4, 0, .2, 1);
    --animate-pulse: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite;
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 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, ui-sans-serif, system-ui, 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: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    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: #0000;
    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 {
  .\!visible {
    visibility: visible !important;
  }

  .visible {
    visibility: visible;
  }

  .absolute {
    position: absolute;
  }

  .fixed {
    position: fixed;
  }

  .relative {
    position: relative;
  }

  .static {
    position: static;
  }

  .top-0 {
    top: calc(var(--spacing) * 0);
  }

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

  .top-2 {
    top: calc(var(--spacing) * 2);
  }

  .top-10 {
    top: calc(var(--spacing) * 10);
  }

  .top-auto {
    top: auto;
  }

  .right-0 {
    right: calc(var(--spacing) * 0);
  }

  .right-2 {
    right: calc(var(--spacing) * 2);
  }

  .right-10 {
    right: calc(var(--spacing) * 10);
  }

  .right-\[1rem\] {
    right: 1rem;
  }

  .bottom-0 {
    bottom: calc(var(--spacing) * 0);
  }

  .bottom-10 {
    bottom: calc(var(--spacing) * 10);
  }

  .bottom-\[1rem\] {
    bottom: 1rem;
  }

  .left-0 {
    left: calc(var(--spacing) * 0);
  }

  .left-\[50\%\] {
    left: 50%;
  }

  .left-auto {
    left: auto;
  }

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

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

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

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

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

  .z-\[calc\(1000-var\(--toast-index\)\)\] {
    z-index: calc(1000 - var(--toast-index));
  }

  .col-start-1 {
    grid-column-start: 1;
  }

  .col-start-2 {
    grid-column-start: 2;
  }

  .m-1 {
    margin: calc(var(--spacing) * 1);
  }

  .mx-2 {
    margin-inline: calc(var(--spacing) * 2);
  }

  .mx-auto {
    margin-inline: auto;
  }

  .my-4 {
    margin-block: calc(var(--spacing) * 4);
  }

  .my-6 {
    margin-block: calc(var(--spacing) * 6);
  }

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

  .mt-10 {
    margin-top: calc(var(--spacing) * 10);
  }

  .mr-0 {
    margin-right: calc(var(--spacing) * 0);
  }

  .mr-2 {
    margin-right: calc(var(--spacing) * 2);
  }

  .mr-auto {
    margin-right: auto;
  }

  .mb-2 {
    margin-bottom: calc(var(--spacing) * 2);
  }

  .mb-4 {
    margin-bottom: calc(var(--spacing) * 4);
  }

  .mb-5 {
    margin-bottom: calc(var(--spacing) * 5);
  }

  .mb-6 {
    margin-bottom: calc(var(--spacing) * 6);
  }

  .mb-12 {
    margin-bottom: calc(var(--spacing) * 12);
  }

  .mb-16 {
    margin-bottom: calc(var(--spacing) * 16);
  }

  .mb-40 {
    margin-bottom: calc(var(--spacing) * 40);
  }

  .ml-1 {
    margin-left: calc(var(--spacing) * 1);
  }

  .ml-2 {
    margin-left: calc(var(--spacing) * 2);
  }

  .ml-4 {
    margin-left: calc(var(--spacing) * 4);
  }

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

  .contents {
    display: contents;
  }

  .flex {
    display: flex;
  }

  .grid {
    display: grid;
  }

  .hidden {
    display: none;
  }

  .size-3 {
    width: calc(var(--spacing) * 3);
    height: calc(var(--spacing) * 3);
  }

  .h-4 {
    height: calc(var(--spacing) * 4);
  }

  .h-5 {
    height: calc(var(--spacing) * 5);
  }

  .h-6 {
    height: calc(var(--spacing) * 6);
  }

  .h-8 {
    height: calc(var(--spacing) * 8);
  }

  .h-10 {
    height: calc(var(--spacing) * 10);
  }

  .h-26 {
    height: calc(var(--spacing) * 26);
  }

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

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

  .h-\[var\(--accordion-panel-height\)\] {
    height: var(--accordion-panel-height);
  }

  .\[max-height\:var\(--available-height\)\] {
    max-height: var(--available-height);
  }

  .min-h-\[4rem\] {
    min-height: 4rem;
  }

  .min-h-\[6rem\] {
    min-height: 6rem;
  }

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

  .w-4 {
    width: calc(var(--spacing) * 4);
  }

  .w-5 {
    width: calc(var(--spacing) * 5);
  }

  .w-6 {
    width: calc(var(--spacing) * 6);
  }

  .w-8 {
    width: calc(var(--spacing) * 8);
  }

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

  .w-\[var\(--active-tab-width\)\] {
    width: var(--active-tab-width);
  }

  .w-auto {
    width: auto;
  }

  .w-full {
    width: 100%;
  }

  .max-w-3xl {
    max-width: var(--container-3xl);
  }

  .max-w-60 {
    max-width: calc(var(--spacing) * 60);
  }

  .max-w-64 {
    max-width: calc(var(--spacing) * 64);
  }

  .max-w-70 {
    max-width: calc(var(--spacing) * 70);
  }

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

  .min-w-32 {
    min-width: calc(var(--spacing) * 32);
  }

  .min-w-36 {
    min-width: calc(var(--spacing) * 36);
  }

  .min-w-\[var\(--anchor-width\)\] {
    min-width: var(--anchor-width);
  }

  .flex-1 {
    flex: 1;
  }

  .origin-\[var\(--transform-origin\)\] {
    transform-origin: var(--transform-origin);
  }

  .translate-x-\[-50\%\] {
    --tw-translate-x: -50%;
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .translate-x-\[var\(--active-tab-left\)\] {
    --tw-translate-x: var(--active-tab-left);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .-translate-y-1\/2 {
    --tw-translate-y: calc(calc(1 / 2 * 100%) * -1);
    translate: var(--tw-translate-x) var(--tw-translate-y);
  }

  .\[transform\:translateX\(var\(--toast-swipe-movement-x\)\)_translateY\(calc\(var\(--toast-swipe-movement-y\)\+calc\(var\(--toast-index\)\*-15px\)\)\)_scale\(calc\(1-\(var\(--toast-index\)\*0\.1\)\)\)\] {
    transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-swipe-movement-y)  + calc(var(--toast-index) * -15px))) scale(calc(1 - (var(--toast-index) * .1)));
  }

  .transform {
    transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
  }

  .animate-pulse {
    animation: var(--animate-pulse);
  }

  .cursor-default {
    cursor: default;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .resize {
    resize: both;
  }

  .grid-cols-\[0\.75rem_1fr\] {
    grid-template-columns: .75rem 1fr;
  }

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

  .place-content-between {
    place-content: space-between;
  }

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

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

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

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

  .justify-between {
    justify-content: space-between;
  }

  .justify-center {
    justify-content: center;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .justify-start {
    justify-content: flex-start;
  }

  .gap-1 {
    gap: calc(var(--spacing) * 1);
  }

  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }

  .gap-3 {
    gap: calc(var(--spacing) * 3);
  }

  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }

  .gap-px {
    gap: 1px;
  }

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

  .overflow-auto {
    overflow: auto;
  }

  .overflow-hidden {
    overflow: hidden;
  }

  .overflow-scroll {
    overflow: scroll;
  }

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

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

  .rounded {
    border-radius: .25rem;
  }

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

  .rounded-full {
    border-radius: 3.40282e38px;
  }

  .rounded-lg {
    border-radius: var(--radius-lg);
  }

  .rounded-md {
    border-radius: var(--radius-md);
  }

  .rounded-sm {
    border-radius: var(--radius-sm);
  }

  .border {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-0 {
    border-style: var(--tw-border-style);
    border-width: 0;
  }

  .border-1 {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }

  .border-b {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 1px;
  }

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

  .border-gray-200 {
    border-color: var(--color-gray-200);
  }

  .border-gray-300 {
    border-color: var(--color-gray-300);
  }

  .bg-\[canvas\] {
    background-color: canvas;
  }

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

  .bg-gray-50 {
    background-color: var(--color-gray-50);
  }

  .bg-gray-100 {
    background-color: var(--color-gray-100);
  }

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

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

  .bg-clip-padding {
    background-clip: padding-box;
  }

  .p-0\.5 {
    padding: calc(var(--spacing) * .5);
  }

  .p-2 {
    padding: calc(var(--spacing) * 2);
  }

  .p-3 {
    padding: calc(var(--spacing) * 3);
  }

  .p-4 {
    padding: calc(var(--spacing) * 4);
  }

  .p-6 {
    padding: calc(var(--spacing) * 6);
  }

  .p-\[\.375rem\] {
    padding: .375rem;
  }

  .px-1 {
    padding-inline: calc(var(--spacing) * 1);
  }

  .px-2 {
    padding-inline: calc(var(--spacing) * 2);
  }

  .px-3\.5 {
    padding-inline: calc(var(--spacing) * 3.5);
  }

  .px-4 {
    padding-inline: calc(var(--spacing) * 4);
  }

  .px-\[0\.75rem\] {
    padding-inline: .75rem;
  }

  .py-1 {
    padding-block: calc(var(--spacing) * 1);
  }

  .py-2 {
    padding-block: calc(var(--spacing) * 2);
  }

  .py-8 {
    padding-block: calc(var(--spacing) * 8);
  }

  .pr-1 {
    padding-right: calc(var(--spacing) * 1);
  }

  .pr-3 {
    padding-right: calc(var(--spacing) * 3);
  }

  .pr-4 {
    padding-right: calc(var(--spacing) * 4);
  }

  .pl-2\.5 {
    padding-left: calc(var(--spacing) * 2.5);
  }

  .pl-3 {
    padding-left: calc(var(--spacing) * 3);
  }

  .pl-3\.5 {
    padding-left: calc(var(--spacing) * 3.5);
  }

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

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

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

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

  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }

  .text-base {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .text-lg {
    font-size: var(--text-lg);
    line-height: var(--tw-leading, var(--text-lg--line-height));
  }

  .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-xs {
    font-size: var(--text-xs);
    line-height: var(--tw-leading, var(--text-xs--line-height));
  }

  .text-\[0\.925rem\] {
    font-size: .925rem;
  }

  .text-\[0\.975rem\] {
    font-size: .975rem;
  }

  .leading-4 {
    --tw-leading: calc(var(--spacing) * 4);
    line-height: calc(var(--spacing) * 4);
  }

  .leading-5 {
    --tw-leading: calc(var(--spacing) * 5);
    line-height: calc(var(--spacing) * 5);
  }

  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }

  .font-medium {
    --tw-font-weight: var(--font-weight-medium);
    font-weight: var(--font-weight-medium);
  }

  .tracking-tight {
    --tw-tracking: var(--tracking-tight);
    letter-spacing: var(--tracking-tight);
  }

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

  .text-gray-300 {
    color: var(--color-gray-300);
  }

  .text-gray-500 {
    color: var(--color-gray-500);
  }

  .text-gray-600 {
    color: var(--color-gray-600);
  }

  .text-gray-700 {
    color: var(--color-gray-700);
  }

  .text-gray-900 {
    color: var(--color-gray-900);
  }

  .text-red-800 {
    color: var(--color-red-800);
  }

  .text-white {
    color: var(--color-white);
  }

  .shadow-\[inset_0_-1px\] {
    --tw-shadow: inset 0 -1px var(--tw-shadow-color, currentcolor);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-lg {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    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, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
    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, #0000001a), 0 1px 2px -1px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }

  .shadow-gray-200 {
    --tw-shadow-color: oklch(92.8% .006 264.531);
  }

  @supports (color: color-mix(in lab, red, red)) {
    .shadow-gray-200 {
      --tw-shadow-color: color-mix(in oklab, var(--color-gray-200) var(--tw-shadow-alpha), transparent);
    }
  }

  .outline {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .outline-1 {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .-outline-offset-1 {
    outline-offset: calc(1px * -1);
  }

  .outline-blue-800 {
    outline-color: var(--color-blue-800);
  }

  .outline-gray-200 {
    outline-color: var(--color-gray-200);
  }

  .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 {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[height\] {
    transition-property: height;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }

  .transition-\[transform\,scale\,opacity\] {
    transition-property: transform, scale, opacity;
    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-property\:opacity\,transform\] {
    transition-property: opacity, transform;
  }

  .duration-200 {
    --tw-duration: .2s;
    transition-duration: .2s;
  }

  .duration-300 {
    --tw-duration: .3s;
    transition-duration: .3s;
  }

  .duration-500 {
    --tw-duration: .5s;
    transition-duration: .5s;
  }

  .ease-\[cubic-bezier\(0\.22\,1\,0\.36\,1\)\] {
    --tw-ease: cubic-bezier(.22, 1, .36, 1);
    transition-timing-function: cubic-bezier(.22, 1, .36, 1);
  }

  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }

  .ease-out {
    --tw-ease: var(--ease-out);
    transition-timing-function: var(--ease-out);
  }

  .outline-none {
    --tw-outline-style: none;
    outline-style: none;
  }

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

  .group-data-\[panel-open\]\:rotate-180:is(:where(.group)[data-panel-open] *) {
    rotate: 180deg;
  }

  .group-data-\[side\=none\]\:min-w-\[calc\(var\(--anchor-width\)\+1rem\)\]:is(:where(.group)[data-side="none"] *) {
    min-width: calc(var(--anchor-width)  + 1rem);
  }

  .group-data-\[side\=none\]\:pr-12:is(:where(.group)[data-side="none"] *) {
    padding-right: calc(var(--spacing) * 12);
  }

  .group-data-\[side\=none\]\:text-base:is(:where(.group)[data-side="none"] *) {
    font-size: var(--text-base);
    line-height: var(--tw-leading, var(--text-base--line-height));
  }

  .group-data-\[side\=none\]\:leading-4:is(:where(.group)[data-side="none"] *) {
    --tw-leading: calc(var(--spacing) * 4);
    line-height: calc(var(--spacing) * 4);
  }

  .before\:absolute:before {
    content: var(--tw-content);
    position: absolute;
  }

  .before\:inset-x-0:before {
    content: var(--tw-content);
    inset-inline: calc(var(--spacing) * 0);
  }

  .before\:inset-y-1:before {
    content: var(--tw-content);
    inset-block: calc(var(--spacing) * 1);
  }

  .before\:top-\[-100\%\]:before {
    content: var(--tw-content);
    top: -100%;
  }

  .before\:left-0:before {
    content: var(--tw-content);
    left: calc(var(--spacing) * 0);
  }

  .before\:h-full:before {
    content: var(--tw-content);
    height: 100%;
  }

  .before\:w-full:before {
    content: var(--tw-content);
    width: 100%;
  }

  .before\:rounded-sm:before {
    content: var(--tw-content);
    border-radius: var(--radius-sm);
  }

  .before\:-outline-offset-1:before {
    content: var(--tw-content);
    outline-offset: calc(1px * -1);
  }

  .before\:outline-blue-800:before {
    content: var(--tw-content);
    outline-color: var(--color-blue-800);
  }

  .before\:content-\[\'\'\]:before {
    --tw-content: "";
    content: var(--tw-content);
  }

  .after\:absolute:after {
    content: var(--tw-content);
    position: absolute;
  }

  .after\:bottom-full:after {
    content: var(--tw-content);
    bottom: 100%;
  }

  .after\:left-0:after {
    content: var(--tw-content);
    left: calc(var(--spacing) * 0);
  }

  .after\:h-\[calc\(var\(--gap\)\+1px\)\]:after {
    content: var(--tw-content);
    height: calc(var(--gap)  + 1px);
  }

  .after\:w-full:after {
    content: var(--tw-content);
    width: 100%;
  }

  .after\:content-\[\'\'\]:after {
    --tw-content: "";
    content: var(--tw-content);
  }

  @media (hover: hover) {
    .hover\:bg-gray-100:hover {
      background-color: var(--color-gray-100);
    }
  }

  @media (hover: hover) {
    .hover\:text-gray-700:hover {
      color: var(--color-gray-700);
    }
  }

  @media (hover: hover) {
    .hover\:text-gray-900:hover {
      color: var(--color-gray-900);
    }
  }

  @media (hover: hover) {
    .hover\:shadow-md:hover {
      --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, #0000001a), 0 2px 4px -2px var(--tw-shadow-color, #0000001a);
      box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    }
  }

  .focus\:outline:focus {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .focus\:outline-2:focus {
    outline-style: var(--tw-outline-style);
    outline-width: 2px;
  }

  .focus\:-outline-offset-1:focus {
    outline-offset: calc(1px * -1);
  }

  .focus\:outline-blue-800:focus {
    outline-color: var(--color-blue-800);
  }

  .focus-visible\:relative:focus-visible {
    position: relative;
  }

  .focus-visible\:z-1:focus-visible {
    z-index: 1;
  }

  .focus-visible\:rounded-md:focus-visible {
    border-radius: var(--radius-md);
  }

  .focus-visible\:bg-none:focus-visible {
    background-image: none;
  }

  .focus-visible\:outline:focus-visible {
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .focus-visible\:outline-2:focus-visible {
    outline-style: var(--tw-outline-style);
    outline-width: 2px;
  }

  .focus-visible\:-outline-offset-1:focus-visible {
    outline-offset: calc(1px * -1);
  }

  .focus-visible\:outline-blue-800:focus-visible {
    outline-color: var(--color-blue-800);
  }

  .focus-visible\:before\:absolute:focus-visible:before {
    content: var(--tw-content);
    position: absolute;
  }

  .focus-visible\:before\:outline:focus-visible:before {
    content: var(--tw-content);
    outline-style: var(--tw-outline-style);
    outline-width: 1px;
  }

  .focus-visible\:before\:outline-2:focus-visible:before {
    content: var(--tw-content);
    outline-style: var(--tw-outline-style);
    outline-width: 2px;
  }

  .active\:bg-gray-100:active {
    background-color: var(--color-gray-100);
  }

  .active\:bg-gray-200:active {
    background-color: var(--color-gray-200);
  }

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

  .disabled\:bg-gray-100:disabled {
    background-color: var(--color-gray-100);
  }

  .disabled\:text-gray-400:disabled {
    color: var(--color-gray-400);
  }

  .data-\[direction\=down\]\:bottom-0[data-direction="down"] {
    bottom: calc(var(--spacing) * 0);
  }

  .data-\[direction\=down\]\:before\:bottom-\[-100\%\][data-direction="down"]:before {
    content: var(--tw-content);
    bottom: -100%;
  }

  .data-\[ending-style\]\:h-0[data-ending-style] {
    height: calc(var(--spacing) * 0);
  }

  .data-\[ending-style\]\:scale-90[data-ending-style] {
    --tw-scale-x: 90%;
    --tw-scale-y: 90%;
    --tw-scale-z: 90%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .data-\[ending-style\]\:scale-100[data-ending-style] {
    --tw-scale-x: 100%;
    --tw-scale-y: 100%;
    --tw-scale-z: 100%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .data-\[ending-style\]\:opacity-0[data-ending-style] {
    opacity: 0;
  }

  .data-\[ending-style\]\:opacity-100[data-ending-style] {
    opacity: 1;
  }

  .data-\[ending-style\]\:transition-none[data-ending-style] {
    transition-property: none;
  }

  .data-\[expanded\]\:\[transform\:translateX\(var\(--toast-swipe-movement-x\)\)_translateY\(calc\(var\(--toast-offset-y\)\*-1\+calc\(var\(--toast-index\)\*var\(--gap\)\*-1\)\+var\(--toast-swipe-movement-y\)\)\)\][data-expanded] {
    transform: translateX(var(--toast-swipe-movement-x)) translateY(calc(var(--toast-offset-y) * -1 + calc(var(--toast-index) * var(--gap) * -1)  + var(--toast-swipe-movement-y)));
  }

  .data-\[highlighted\]\:relative[data-highlighted] {
    position: relative;
  }

  .data-\[highlighted\]\:z-0[data-highlighted] {
    z-index: 0;
  }

  .data-\[highlighted\]\:text-gray-50[data-highlighted] {
    color: var(--color-gray-50);
  }

  .data-\[highlighted\]\:before\:absolute[data-highlighted]:before {
    content: var(--tw-content);
    position: absolute;
  }

  .data-\[highlighted\]\:before\:inset-x-1[data-highlighted]:before {
    content: var(--tw-content);
    inset-inline: calc(var(--spacing) * 1);
  }

  .data-\[highlighted\]\:before\:inset-y-0[data-highlighted]:before {
    content: var(--tw-content);
    inset-block: calc(var(--spacing) * 0);
  }

  .data-\[highlighted\]\:before\:z-\[-1\][data-highlighted]:before {
    content: var(--tw-content);
    z-index: -1;
  }

  .data-\[highlighted\]\:before\:rounded-sm[data-highlighted]:before {
    content: var(--tw-content);
    border-radius: var(--radius-sm);
  }

  .data-\[highlighted\]\:before\:bg-gray-900[data-highlighted]:before {
    content: var(--tw-content);
    background-color: var(--color-gray-900);
  }

  .data-\[popup-open\]\:bg-gray-100[data-popup-open] {
    background-color: var(--color-gray-100);
  }

  .data-\[pressed\]\:bg-gray-100[data-pressed] {
    background-color: var(--color-gray-100);
  }

  .data-\[pressed\]\:text-gray-900[data-pressed] {
    color: var(--color-gray-900);
  }

  .data-\[selected\]\:text-gray-900[data-selected] {
    color: var(--color-gray-900);
  }

  .data-\[starting-style\]\:h-0[data-starting-style] {
    height: calc(var(--spacing) * 0);
  }

  .data-\[starting-style\]\:scale-90[data-starting-style] {
    --tw-scale-x: 90%;
    --tw-scale-y: 90%;
    --tw-scale-z: 90%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .data-\[starting-style\]\:\[transform\:translateY\(150\%\)\][data-starting-style] {
    transform: translateY(150%);
  }

  .data-\[starting-style\]\:opacity-0[data-starting-style] {
    opacity: 0;
  }

  .data-\[side\=none\]\:data-\[starting-style\]\:scale-100[data-side="none"][data-starting-style] {
    --tw-scale-x: 100%;
    --tw-scale-y: 100%;
    --tw-scale-z: 100%;
    scale: var(--tw-scale-x) var(--tw-scale-y);
  }

  .data-\[side\=none\]\:data-\[starting-style\]\:opacity-100[data-side="none"][data-starting-style] {
    opacity: 1;
  }

  .data-\[side\=none\]\:data-\[starting-style\]\:transition-none[data-side="none"][data-starting-style] {
    transition-property: none;
  }

  .data-\[ending-style\]\:data-\[swipe-direction\=down\]\:\[transform\:translateY\(calc\(var\(--toast-swipe-movement-y\)\+150\%\)\)\][data-ending-style][data-swipe-direction="down"] {
    transform: translateY(calc(var(--toast-swipe-movement-y)  + 150%));
  }

  .data-\[expanded\]\:data-\[ending-style\]\:data-\[swipe-direction\=down\]\:\[transform\:translateY\(calc\(var\(--toast-swipe-movement-y\)\+150\%\)\)\][data-expanded][data-ending-style][data-swipe-direction="down"] {
    transform: translateY(calc(var(--toast-swipe-movement-y)  + 150%));
  }

  .data-\[ending-style\]\:data-\[swipe-direction\=left\]\:\[transform\:translateX\(calc\(var\(--toast-swipe-movement-x\)-150\%\)\)_translateY\(var\(--offset-y\)\)\][data-ending-style][data-swipe-direction="left"] {
    transform: translateX(calc(var(--toast-swipe-movement-x)  - 150%)) translateY(var(--offset-y));
  }

  .data-\[expanded\]\:data-\[ending-style\]\:data-\[swipe-direction\=left\]\:\[transform\:translateX\(calc\(var\(--toast-swipe-movement-x\)-150\%\)\)_translateY\(var\(--offset-y\)\)\][data-expanded][data-ending-style][data-swipe-direction="left"] {
    transform: translateX(calc(var(--toast-swipe-movement-x)  - 150%)) translateY(var(--offset-y));
  }

  .data-\[ending-style\]\:data-\[swipe-direction\=right\]\:\[transform\:translateX\(calc\(var\(--toast-swipe-movement-x\)\+150\%\)\)_translateY\(var\(--offset-y\)\)\][data-ending-style][data-swipe-direction="right"] {
    transform: translateX(calc(var(--toast-swipe-movement-x)  + 150%)) translateY(var(--offset-y));
  }

  .data-\[expanded\]\:data-\[ending-style\]\:data-\[swipe-direction\=right\]\:\[transform\:translateX\(calc\(var\(--toast-swipe-movement-x\)\+150\%\)\)_translateY\(var\(--offset-y\)\)\][data-expanded][data-ending-style][data-swipe-direction="right"] {
    transform: translateX(calc(var(--toast-swipe-movement-x)  + 150%)) translateY(var(--offset-y));
  }

  .data-\[ending-style\]\:data-\[swipe-direction\=up\]\:\[transform\:translateY\(calc\(var\(--toast-swipe-movement-y\)-150\%\)\)\][data-ending-style][data-swipe-direction="up"] {
    transform: translateY(calc(var(--toast-swipe-movement-y)  - 150%));
  }

  .data-\[expanded\]\:data-\[ending-style\]\:data-\[swipe-direction\=up\]\:\[transform\:translateY\(calc\(var\(--toast-swipe-movement-y\)-150\%\)\)\][data-expanded][data-ending-style][data-swipe-direction="up"] {
    transform: translateY(calc(var(--toast-swipe-movement-y)  - 150%));
  }

  @media (width >= 40rem) {
    .sm\:right-\[2rem\] {
      right: 2rem;
    }
  }

  @media (width >= 40rem) {
    .sm\:bottom-\[2rem\] {
      bottom: 2rem;
    }
  }

  @media (width >= 40rem) {
    .sm\:w-\[300px\] {
      width: 300px;
    }
  }

  @media (width >= 40rem) {
    .sm\:grid-cols-1 {
      grid-template-columns: repeat(1, minmax(0, 1fr));
    }
  }

  @media (width >= 40rem) {
    .sm\:p-6 {
      padding: calc(var(--spacing) * 6);
    }
  }

  @media (width >= 40rem) {
    .sm\:p-8 {
      padding: calc(var(--spacing) * 8);
    }
  }

  @media (width >= 40rem) {
    .sm\:text-5xl {
      font-size: var(--text-5xl);
      line-height: var(--tw-leading, var(--text-5xl--line-height));
    }
  }

  @media (width >= 40rem) {
    .sm\:text-xl {
      font-size: var(--text-xl);
      line-height: var(--tw-leading, var(--text-xl--line-height));
    }
  }

  @media (width >= 48rem) {
    .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (width >= 48rem) {
    .md\:p-24 {
      padding: calc(var(--spacing) * 24);
    }
  }

  @media (width >= 48rem) {
    .md\:text-6xl {
      font-size: var(--text-6xl);
      line-height: var(--tw-leading, var(--text-6xl--line-height));
    }
  }

  @media (prefers-color-scheme: dark) {
    .dark\: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);
    }
  }

  @media (prefers-color-scheme: dark) {
    .dark\:-outline-offset-1 {
      outline-offset: calc(1px * -1);
    }
  }

  @media (prefers-color-scheme: dark) {
    .dark\:outline-gray-300 {
      outline-color: var(--color-gray-300);
    }
  }

  .data-\[ending-style\]\:\[\&\:not\(\[data-limited\]\)\]\:\[transform\:translateY\(150\%\)\][data-ending-style]:not([data-limited]) {
    transform: translateY(150%);
  }
}

.Root {
  isolation: isolate;
}

button {
  border-radius: 6px;
  cursor: pointer;
}

@layer base {
  :root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --radius: .5rem;
  }

  .dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9%;
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  animation: 1.4s linear infinite rotate;
}

.spinner circle {
  stroke: #000;
  stroke-linecap: round;
  animation: 1.4s ease-in-out infinite dash;
  stroke-dasharray: 80 200;
  stroke-dashoffset: 0;
}

.spinner-white circle {
  stroke: #fff;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 100 200;
    stroke-dashoffset: -15px;
  }

  100% {
    stroke-dasharray: 100 200;
    stroke-dashoffset: -125px;
  }
}

@property --tw-translate-x {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-y {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-translate-z {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@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-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: 0;
}

@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: "*";
  inherits: false;
  initial-value: "";
}

@property --tw-scale-x {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-y {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@property --tw-scale-z {
  syntax: "*";
  inherits: false;
  initial-value: 1;
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@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-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: 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: "";
      --tw-scale-x: 1;
      --tw-scale-y: 1;
      --tw-scale-z: 1;
    }
  }
}


/* [project]/node_modules/.pnpm/@code-hike+mdx@0.9.0_react@19.2.0/node_modules/@code-hike/mdx/dist/index.css [app-client] (css) */
.ch-terminal {
  font-size: 14px;
  height: 100%;
  box-sizing: border-box;
  background: #1e1e1e;
  color: #fafafa;
  overflow: hidden;
  padding: 0 8px 8px;
  font-family: Ubuntu, Droid Sans, -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, sans-serif;
}

.ch-terminal-container .ch-frame-content {
  background-color: inherit;
}

.ch-terminal-prompt {
  color: #8fa2db;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.ch-terminal-content {
  margin: 0;
}

.ch-terminal-output {
  opacity: .66;
}

.ch-code-line-number {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-align: right;
  display: inline-block;
  box-sizing: border-box;
  padding-right: 1.5ch;
  font-variant-numeric: tabular-nums;
  color: var(--ch-t-editorLineNumber-foreground);
}

.ch-code-scroll-parent {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0;
  border-radius: 0;
  background-color: unset;
  color: unset;
  padding: 0;
  box-sizing: content-box;
  border: none;
}

.ch-code-scroll-parent ::-moz-selection {
  background-color: var(--ch-t-editor-selectionBackground);
  color: inherit;
}

.ch-code-scroll-parent ::selection {
  background-color: var(--ch-t-editor-selectionBackground);
  color: inherit;
}

.ch-code-button {
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
  cursor: pointer;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  font-size: inherit;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 1.1em;
  height: 1.1em;
}

.ch-code-button:focus-visible {
  outline-color: currentColor;
}

.ch-code-wrapper {
  background-color: var(--ch-t-background);
  color: var(--ch-t-foreground);
  color-scheme: var(--ch-t-colorScheme);
  margin: 0;
  padding: 0;
  position: relative;
  white-space: pre;
  box-sizing: content-box;
}

.ch-code-wrapper[data-ch-measured="false"] {
  overflow: auto;
}

.ch-code-wrapper[data-ch-measured="false"] > * {
  opacity: 0;
}

.ch-no-scroll {
  overflow: hidden;
}

.ch-expand-dialog {
  height: 100vh;
  width: 100vw;
  max-width: 900px;
  border: 0;
  background-color: #0000;
}

.ch-expand-dialog::backdrop {
  background-color: #000c;
}

.ch-expand-close {
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
  cursor: pointer;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  font-size: inherit;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #fff;
  width: 26px;
  height: 26px;
}

.ch-expand-close:focus-visible {
  outline-color: currentColor;
}

.ch-expand-dialog-content {
  color: #fff;
  position: absolute;
  inset: 40px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--ch-t-sideBar-border);
}

.ch-code-browser {
  color: var(--ch-t-editor-foreground);
  display: flex;
  height: 100%;
  font-family: Ubuntu, Droid Sans, -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, sans-serif;
}

.ch-code-browser-sidebar {
  min-width: 100px;
  padding: 1em 0;
  font-size: .95rem;
  border-left-color: var(--ch-t-sideBar-border);
  border-bottom-color: var(--ch-t-sideBar-border);
  border-right: 1px solid;
  border-right-color: var(--ch-t-sideBar-border);
  border-top-color: var(--ch-t-sideBar-border);
  background: var(--ch-t-sideBar-background);
  color: var(--ch-t-sideBar-foreground);
}

.ch-code-browser-content {
  overflow: auto;
  flex: 1;
  padding: 1em;
  white-space: pre;
  font-family: monospace;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2rem;
  letter-spacing: 0;
  position: relative;
  background: var(--ch-t-background);
  color: var(--ch-t-foreground);
  color-scheme: var(--ch-t-colorScheme);
}

.ch-code-browser-content ::-moz-selection {
  background-color: var(--ch-t-editor-selectionBackground);
  color: inherit;
}

.ch-code-browser-content ::selection {
  background-color: var(--ch-t-editor-selectionBackground);
  color: inherit;
}

.ch-code-browser-sidebar-file, .ch-code-browser-sidebar-folder {
  padding: .1em 1em;
}

.ch-code-browser-sidebar-file {
  cursor: pointer;
}

.ch-code-browser-sidebar-file[data-selected="true"] {
  background: var(--ch-t-list-activeSelectionBackground);
  color: var(--ch-t-list-activeSelectionForeground);
}

.ch-code-browser-sidebar-file:hover {
  background-color: var(--ch-t-list-hoverBackground);
  color: var(--ch-t-list-hoverForeground);
}

.ch-code-browser-button {
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
  cursor: pointer;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  font-size: inherit;
  width: 1.5em;
  height: 1.5em;
  min-width: 1.5em;
  min-height: 1.5em;
  position: absolute;
  right: .8em;
  top: .8em;
}

.ch-code-browser-button:focus-visible {
  outline-color: currentColor;
}

.ch-editor-tab {
  min-width: -moz-fit-content;
  min-width: fit-content;
  flex-shrink: 1;
  position: relative;
  display: flex;
  white-space: nowrap;
  cursor: pointer;
  height: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  min-width: 0;
  background: var(--ch-t-tab-inactiveBackground);
  color: var(--ch-t-tab-inactiveForeground);
  border-right: 1px solid #252526;
  border-right-color: var(--ch-t-tab-border);
  border-bottom: 1px solid;
  border-bottom-color: var(--ch-t-tab-inactiveBackground);
}

.ch-editor-tab[data-active="true"] {
  background: var(--ch-t-tab-activeBackground);
  color: var(--ch-t-tab-activeForeground);
  border-bottom-color: var(--ch-t-tab-activeBorder);
  min-width: unset;
}

.ch-editor-tab > div {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 12px;
  line-height: 1.4em;
  text-overflow: ellipsis;
  overflow: hidden;
}

.ch-editor-group-border {
  position: absolute;
  top: 0;
  height: 1px;
  width: 100%;
  z-index: 1;
  background: var(--ch-t-editorGroup-border);
}

.ch-editor-frame {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  font-family: Ubuntu, Droid Sans, -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, sans-serif;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  --ch-title-bar-height: 30px;
  height: 100%;
  background: var(--ch-t-editor-background);
}

.ch-editor-frame .ch-frame-title-bar {
  background: none;
  color: var(--ch-t-icon-foreground);
  background: var(--ch-t-editorGroupHeader-tabsBackground);
}

.ch-editor-terminal {
  position: absolute;
  overflow: hidden;
  bottom: 0;
  width: 100%;
  background-color: #1e1e1e;
  color: #e7e7e7;
  border-top: 1px solid #80808059;
  padding: 0 8px;
  box-sizing: border-box;
}

.ch-editor-terminal-tab {
  text-transform: uppercase;
  padding: 4px 10px 3px;
  font-size: 11px;
  line-height: 24px;
  display: flex;
}

.ch-editor-terminal-tab > span {
  border-bottom: 1px solid #e7e7e7;
}

.ch-editor-terminal-content {
  margin-top: 8px;
  height: calc(100% - 40px);
  box-sizing: border-box;
}

.ch-editor-terminal-content .ch-terminal {
  font-size: 12px;
  margin: 0;
}

.ch-editor-button {
  -webkit-appearance: button;
  background-color: #0000;
  background-image: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  border: none;
  font-size: inherit;
  width: 1.5em;
  height: 1.5em;
  min-width: 1.5em;
  min-height: 1.5em;
  margin: 0 .8em 0 0;
}

.ch-editor-button:focus-visible {
  outline-color: currentColor;
}

.ch-frame {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ch-frame, .ch-simple-frame {
  font-family: Ubuntu, Droid Sans, -apple-system, BlinkMacSystemFont, Segoe WPC, Segoe UI, sans-serif;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  --ch-title-bar-height: 30px;
}

.ch-simple-frame {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000006;
}

.ch-frame-content {
  background-color: var(--ch-content-background, #fafafa);
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
  min-height: 0;
}

.ch-frame-zoom {
  --ch-frame-zoom: 1;
  overflow: auto;
  position: relative;
  width: calc(100% / var(--ch-frame-zoom));
  height: calc(100% / var(--ch-frame-zoom));
  transform: scale(var(--ch-frame-zoom));
  transform-origin: 0 0;
}

.ch-frame-title-bar {
  font-size: 12px;
  width: 100%;
  height: var(--ch-title-bar-height);
  min-height: var(--ch-title-bar-height);
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background-color: var(--ch-content-background, #252526);
  color: #ebebed;
  position: relative;
}

.ch-frame-middle-bar {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.2em;
}

.ch-frame-left-bar, .ch-frame-right-bar {
  flex-grow: 1;
  flex-basis: 1em;
  height: 100%;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}

.ch-frame-buttons {
  margin: 0 .8em;
  flex-shrink: 0;
  height: 1em;
  width: 4.16em;
  display: flex;
}

.ch-frame-button {
  width: 1em;
  height: 1em;
  border: .08em solid;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
}

.ch-frame-button-space {
  width: .56em;
}

.ch-frame-button-left {
  border-color: #ce5347;
  background-color: #ed6b60;
}

.ch-frame-button-middle {
  border-color: #d6a243;
  background-color: #f5be4f;
}

.ch-frame-button-right {
  border-color: #58a942;
  background-color: #62c554;
}

.ch-mini-browser {
  height: 100%;
}

.ch-mini-browser .ch-frame-content iframe, .ch-mini-browser .ch-frame-content video {
  border: none;
  position: absolute;
  height: 100%;
  width: 100%;
}

.ch-mini-browser .ch-frame-title-bar input {
  height: 1.4em;
  font-size: 1em;
  border-radius: .5em;
  box-shadow: none;
  flex: 1;
  padding: 0 10px;
  color: #544;
  min-width: 5px;
  width: 5px;
  background: var(--ch-t-input-background);
  color: var(--ch-t-input-foreground);
  border: 1px solid var(--ch-t-input-border);
}

.ch-browser-button {
  margin: 0 1em;
  color: #999;
}

.ch-browser-back-button {
  margin-left: .2em;
}

.ch-browser-forward-button {
  margin-left: 0;
}

.ch-browser-open-button {
  color: var(--ch-t-icon-foreground);
}

.ch-browser-open-icon {
  display: block;
}

.ch-spotlight {
  display: flex;
  gap: 1.1rem;
  margin: 1rem 0;
}

.ch-spotlight-tabs {
  display: flex;
  flex-flow: column;
  flex: 1;
  gap: .5rem;
  align-items: stretch;
}

.ch-spotlight-tab {
  border-radius: .25rem;
  margin: 0 -.5rem;
  padding: 0 .5rem;
  border: 1px solid #e3e3e3;
}

.ch-spotlight-tab:hover {
  border-color: #222;
}

.ch-spotlight-tab[data-selected] {
  border-color: #0070f3;
}

.ch-spotlight-sticker {
  position: sticky;
  top: 10vh;
  display: flex;
  align-self: stretch;
  flex-flow: column;
  justify-content: center;
  width: 420px;
  min-height: min(100%, 80vh);
  max-height: 80vh;
}

.ch-spotlight-sticker .ch-codeblock, .ch-spotlight-sticker .ch-codegroup {
  width: 100%;
  min-width: 100%;
  min-height: min(100%, 80vh);
  max-height: 80vh;
  margin-top: 0;
  margin-bottom: 0;
  flex: 1;
}

.ch-spotlight-with-preview .ch-spotlight-sticker {
  height: 80vh;
  gap: .5rem;
}

.ch-spotlight-with-preview .ch-spotlight-sticker .ch-codeblock, .ch-spotlight-with-preview .ch-spotlight-sticker .ch-codegroup {
  min-height: 0;
  flex: 1;
}

.ch-spotlight-with-preview .ch-spotlight-preview {
  height: 280px;
}

.ch-scrollycoding {
  display: flex;
  position: relative;
  margin: 1rem 0;
  gap: 1rem;
}

.ch-scrollycoding-content {
  box-sizing: border-box;
  flex: 1;
}

.ch-scrollycoding-step-content {
  border-radius: 8px;
  margin: 0 -.5rem;
  padding: 1rem .5rem;
  border: 1.5px solid #0000;
  min-height: 180px;
}

.ch-scrollycoding-step-content[data-selected] {
  border-color: #0070f3;
}

.ch-scrollycoding-step-content > :first-child {
  margin-top: 0;
}

.ch-scrollycoding-step-content > :last-child {
  margin-bottom: 0;
}

.ch-scrollycoding-sticker {
  position: sticky;
  top: 10vh;
  display: flex;
  align-self: start;
  flex-flow: column;
  justify-content: center;
  width: var(--ch-scrollycoding-sticker-width, 420px);
  max-height: 80vh;
}

.ch-scrollycoding-with-preview .ch-scrollycoding-sticker {
  height: 80vh;
  gap: .5rem;
}

.ch-scrollycoding-with-preview .ch-scrollycoding-sticker .ch-codeblock, .ch-scrollycoding-with-preview .ch-scrollycoding-sticker .ch-codegroup {
  flex: 1;
}

.ch-scrollycoding-with-preview .ch-scrollycoding-preview {
  height: 280px;
}

.ch-scrollycoding-sticker .ch-codeblock, .ch-scrollycoding-sticker .ch-codegroup {
  width: 100%;
  min-width: 100%;
  min-height: var(--ch-scrollycoding-code-min-height, 200px);
  max-height: 80vh;
  margin-top: 0;
  margin-bottom: 0;
}

.ch-scrollycoding-static .ch-preview {
  height: 150px;
}

.ch-slideshow {
  margin: 1rem 0;
}

.ch-slideshow-slide {
  display: flex;
  flex-flow: row;
  gap: .5rem;
  align-items: stretch;
  aspect-ratio: 16 / 9;
}

.ch-slideshow-slide .ch-codeblock, .ch-slideshow-slide .ch-codegroup {
  flex: 2;
  margin-top: 0;
  margin-bottom: 0;
  height: auto;
}

.ch-slideshow .ch-slideshow-preview {
  flex: 1;
  height: auto;
  min-width: 0;
}

.ch-slideshow-range {
  display: flex;
  flex-flow: row;
  gap: .5rem;
}

.ch-slideshow-range input {
  flex: 1;
}

.ch-slideshow-notes {
  border-radius: .25rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #e3e3e3;
}

.ch-slideshow-note {
  min-height: 140px;
  max-height: 140px;
  padding: .05px;
  overflow: auto;
}

.ch-codeblock, .ch-codegroup, .ch-preview {
  border-radius: 6px;
  overflow: hidden;
  height: -moz-max-content;
  height: max-content;
  box-shadow: 0 13px 27px -5px #32325d40, 0 8px 16px -8px #0000004d, 0 -6px 16px -6px #00000006;
  print-color-adjust: exact;
}

.ch-codeblock > *, .ch-codegroup > *, .ch-preview > * {
  height: 100%;
  max-height: inherit;
  min-height: inherit;
}

.ch-codeblock, .ch-codegroup {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.ch-inline-code > code {
  padding: .2em .15em;
  margin: .1em -.05em;
  border-radius: .25em;
  font-size: .9rem;
  color: var(--ch-t-foreground);
  background: var(--ch-t-lighter-inlineBackground);
}

.ch-inline-code .ch-section-link, .ch-inline-code .ch-section-link * {
  -webkit-text-decoration-color: var(--ch-t-foreground);
  text-decoration-color: var(--ch-t-foreground);
}

.ch-section-link, .ch-section-link * {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
}

.ch-section-link[data-active="true"] {
  background-color: #bae6fd66;
}

.ch-section-link[data-active="true"], .ch-section-link[data-active="true"] * {
  text-decoration-thickness: 1.5px;
}

.ch-code-inline-mark {
  border-radius: .25rem;
  padding: .2rem .15rem .1rem;
  margin: 0 -.15rem;
}

.ch-code-inline-mark, .ch-code-multiline-mark {
  background: var(--ch-t-editor-rangeHighlightBackground);
}

.ch-code-multiline-mark-border {
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  background: var(--ch-t-editor-infoForeground);
}

.ch-code-multiline-mark .ch-code-button {
  font-size: 1.2em;
  position: absolute;
  right: 10px;
  top: 1px;
  display: none;
}

.ch-code-inline-link {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  color: inherit;
}

.ch-code-link :not(span) > span {
  text-decoration: underline;
  -webkit-text-decoration-style: dotted;
  text-decoration-style: dotted;
  color: inherit;
}

.ch-code-box-annotation {
  outline: 2px solid var(--ch-t-editor-infoForeground);
}

.ch-code-label-annotation:hover {
  background: var(--ch-t-editor-lineHighlightBackground);
}

.ch-code-label-annotation:hover .ch-code-label-annotation-text {
  display: block;
}

.ch-code-label-annotation-text {
  position: absolute;
  right: 0;
  padding-right: 16px;
  opacity: .7;
  display: none;
}


/* [next]/internal/font/google/ijwRs572Xtc6ZYQws9YVwnNJfJ7QwOk1Fig-s.woff2 (static in css) */
/* embedded static asset "/_next/static/media/ijwRs572Xtc6ZYQws9YVwnNJfJ7QwOk1Fig-s.ecd77c16.woff2" */

/* [next]/internal/font/google/ijwRs572Xtc6ZYQws9YVwnNIfJ7QwOk1Fig-s.woff2 (static in css) */
/* embedded static asset "/_next/static/media/ijwRs572Xtc6ZYQws9YVwnNIfJ7QwOk1Fig-s.0a68776e.woff2" */

/* [next]/internal/font/google/ijwRs572Xtc6ZYQws9YVwnNGfJ7QwOk1-s.p.woff2 (static in css) */
/* embedded static asset "/_next/static/media/ijwRs572Xtc6ZYQws9YVwnNGfJ7QwOk1-s.p.f805f543.woff2" */

/* [next]/internal/font/google/public_sans_ee364fa1.module.css [app-client] (css) */
@font-face {
  font-family: Public Sans;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ijwRs572Xtc6ZYQws9YVwnNJfJ7QwOk1Fig-s.ecd77c16.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Public Sans;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ijwRs572Xtc6ZYQws9YVwnNIfJ7QwOk1Fig-s.0a68776e.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Public Sans;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../media/ijwRs572Xtc6ZYQws9YVwnNGfJ7QwOk1-s.p.f805f543.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Public Sans Fallback;
  src: local(Arial);
  ascent-override: 90.59%;
  descent-override: 21.46%;
  line-gap-override: 0.0%;
  size-adjust: 104.87%;
}

.public_sans_ee364fa1-module__QxPNNW__className {
  font-family: Public Sans, Public Sans Fallback;
  font-style: normal;
}


/* [project]/node_modules/.pnpm/react-modern-drawer@1.4.0_react@19.2.0/node_modules/react-modern-drawer/dist/index.css [app-client] (css) */
.EZDrawer .EZDrawer__checkbox {
  display: none;
}

.EZDrawer .EZDrawer__checkbox:checked ~ .EZDrawer__overlay {
  display: block;
  opacity: 1;
}

.EZDrawer .EZDrawer__checkbox:checked ~ .EZDrawer__container {
  visibility: visible;
  transform: translate3d(0, 0, 0) !important;
}

.EZDrawer .EZDrawer__overlay {
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.EZDrawer .EZDrawer__container {
  position: fixed;
  visibility: hidden;
  background: #fff;
  transition: all;
  box-shadow: 0 0 10px 5px #0000001a;
}


/*# sourceMappingURL=%5Broot%20of%20the%20server%5D__3d685d59._.css.map*/
