@layer properties, theme, base, forms, components, utilities;
@layer theme {
    :root, :host {
        --blur-md: 0.75rem;
        --color-amber-600: oklch(0.666 0.179 58.318);
        --color-black: #000;
        --color-blue-100: oklch(0.932 0.032 255.585);
        --color-blue-200: oklch(0.882 0.059 254.128);
        --color-blue-400: oklch(0.707 0.165 254.624);
        --color-blue-50: oklch(0.97 0.014 254.604);
        --color-canvas: #22415c;
        --color-green-600: oklch(0.627 0.194 149.214);
        --color-green-700: oklch(0.527 0.154 150.069);
        --color-nav-bar: #007be7;
        --color-primary: #0088ff;
        --color-primary-shade: #0066bd;
        --color-primary-tint: #34a1ff;
        --color-red-400: oklch(0.704 0.191 22.216);
        --color-red-500: oklch(0.637 0.237 25.331);
        --color-red-600: oklch(0.577 0.245 27.325);
        --color-red-700: oklch(0.505 0.213 27.518);
        --color-sky-300: oklch(0.828 0.111 230.318);
        --color-sky-400: oklch(0.746 0.16 232.661);
        --color-sky-500: oklch(0.685 0.169 237.323);
        --color-sky-600: oklch(0.588 0.158 241.966);
        --color-slate-400: oklch(0.704 0.04 256.788);
        --color-slate-500: oklch(0.554 0.046 257.417);
        --color-slate-900: oklch(0.208 0.042 265.755);
        --color-slate-950: oklch(0.129 0.042 264.695);
        --color-upload-done: #2beb72;
        --color-upload-in-progress: #2599ff;
        --color-white: #fff;
        --container-8xl: 96rem;
        --default-font-family: var(--font-sans, initial);
        --default-font-feature-settings: var(--font-sans--font-feature-settings, initial);
        --default-font-variation-settings: var(--font-sans--font-variation-settings, initial);
        --default-mono-font-family: var(--font-mono, initial);
        --default-mono-font-feature-settings: var(--font-mono--font-feature-settings, initial);
        --default-mono-font-variation-settings: var(--font-mono--font-variation-settings, initial);
        --default-transition-duration: 150ms;
        --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        --font-mono: "JetBrains Mono", ui-monospace, 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
        --font-mono--font-feature-settings: normal;
        --font-mono--font-variation-settings: normal;
        --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
        --font-sans--font-feature-settings: normal;
        --font-sans--font-variation-settings: normal;
        --font-weight-bold: 700;
        --font-weight-extrabold: 800;
        --font-weight-extralight: 200;
        --font-weight-light: 300;
        --font-weight-semibold: 600;
        --radius-lg: 0.5rem;
        --radius-md: 0.375rem;
        --radius-sm: 0.25rem;
        --radius-xl: 0.75rem;
        --spacing: 0.25rem;
        --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);
        --text-5xl: 3rem;
        --text-5xl--line-height: 1.1;
        --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-sm: 0.875rem;
        --text-sm--line-height: calc(1.25 / 0.875);
        --text-xl: 1.25rem;
        --text-xl--line-height: calc(1.75 / 1.25);
        --text-xs: 0.75rem;
        --text-xs--line-height: calc(1 / 0.75);
    }
}
@layer base {
    *,
    ::after,
    ::before,
    ::backdrop,
    ::file-selector-button {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        border: 0 solid;
        outline-color: transparent;
        border-color: transparent;
    }
    html,
    :host {
        line-height: 1.5;
        -webkit-text-size-adjust: 100%;
        tab-size: 4;
        font-family: var(--default-font-family);
        font-feature-settings: var(--default-font-feature-settings);
        font-variation-settings: var(--default-font-variation-settings);
        -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);
        font-feature-settings: var(--default-mono-font-feature-settings);
        font-variation-settings: var(--default-mono-font-variation-settings);
        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 {
        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: 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;
    }
    :-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 forms {
    :root {
        --form-field-background-color: var(--color-white);
        --form-field-color: var(--color-black);
        --form-field-placeholder-color: var(--color-slate-400);
        --form-field-border-width: 1px;
        --form-field-border-color: var(--color-slate-500);
        --form-field-focus-color: var(--color-sky-300);
        --form-field-check-color: var(--color-sky-500);
        --form-field-focus-border-width: 0.15rem;
        --form-field-focus-border-offset-width: 0;
        --form-field-padding: 0.75rem 0.75rem;
        --form-field-border-radius: 0.175rem;
        --form-field-checkbox-border-radius: 0.25rem;
        --form-field-max-height: 2.8rem;
        --form-field-font-size: 1rem;
        --form-field-line-height: 1.2;
        --form-field-vertical-align: middle;
        --form-button-bg-color: var(--color-sky-600);
        --form-button-color: var(--color-white);
        --form-button-hover-bg-color: var(--color-sky-500);
        --form-button-hover-color: var(--color-white);
        --form-button-border-width: 1px;
        --form-button-padding: 0.75rem 1rem;
        --form-button-border-radius: 0.175rem;
        --form-button-font-size: 1rem;
        --form-button-line-height: 1.2;
    }
    .form-input, .form-textarea, .form-select, .form-multiselect {
        display: block;
        width: 100%;
        appearance: none;
        background-color: var(--form-field-background-color);
        border-color: var(--form-field-border-color);
        border-width: var(--form-field-border-width);
        border-radius: var(--form-field-border-radius);
        padding: var(--form-field-padding);
        color: var(--form-field-color);
        font-size: var(--form-field-font-size);
        line-height: var(--form-field-line-height);
        --sf-shadow: 0 0 #0000;
        &:focus {
            outline: var(--form-field-focus-border-width) solid var(--form-field-focus-color);
            outline-offset: var(--form-field-focus-border-offset-width, 0px);
            border-color: var(--form-field-border-color);
        }
    }
    .form-select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-position: right 0.5rem center;
        background-repeat: no-repeat;
        background-size: 1.5em 1.5em;
        padding-right: 2rem;
        print-color-adjust: exact;
        max-height: var(--form-field-max-height);
        &:where([size]:not([size="1"])) {
            background-image: initial;
            background-position: initial;
            background-repeat: unset;
            background-size: initial;
            padding-right: 0.75rem;
            print-color-adjust: unset;
        }
    }
    .form-input, .form-textarea {
        &::placeholder {
            opacity: 1;
            color: var(--form-field-placeholder-color);
        }
    }
    .form-input {
        &::-webkit-datetime-edit-fields-wrapper {
            padding: 0;
        }
        &::-webkit-date-and-time-value {
            text-align: inherit;
        }
        &::-webkit-datetime-edit {
            display: inline-flex;
        }
        &::-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-top: 0;
            padding-bottom: 0;
        }
        &:not([type="button"]),
        &:not([type="checkbox"]),
        &:not([type="hidden"]),
        &:not([type="image"]),
        &:not([type="radio"]),
        &:not([type="reset"]),
        &:not([type="submit"]) {
            max-height: var(--form-field-max-height);
        }
    }
    .form-checkbox, .form-radio {
        display: inline-block;
        appearance: none;
        padding: 0;
        print-color-adjust: exact;
        vertical-align: var(--form-field-vertical-align);
        background-origin: border-box;
        user-select: none;
        flex-shrink: 0;
        height: 1rem;
        width: 1rem;
        color: var(--form-field-check-color);
        background-color: var(--form-field-background-color);
        border-color: var(--form-field-border-color);
        border-width: var(--form-field-border-width);
        cursor: pointer;
        --sf-shadow: 0 0 #0000;
        &:focus {
            outline: var(--form-field-focus-border-width) solid var(--form-field-focus-color);
            outline-offset: var(--form-field-focus-border-offset-width, 0px);
        }
        &:checked {
            border-color: transparent;
            background-color: currentColor;
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
        }
        &:checked:hover, &:checked:focus {
            border-color: transparent;
            background-color: currentColor;
        }
    }
    .form-checkbox {
        border-radius: var(--form-field-checkbox-border-radius);
        &:checked {
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
        }
        &:indeterminate {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
            border-color: transparent;
            background-color: currentColor;
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            &:hover, &:focus {
                border-color: transparent;
                background-color: currentColor;
            }
        }
    }
    .form-radio {
        border-radius: 100%;
        &:checked {
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
        }
    }
    .form-file {
        display: block;
        width: 100%;
        appearance: none;
        background: unset;
        border-color: inherit;
        border-width: 0;
        border-radius: 0;
        padding: 0;
        font-size: var(--form-field-font-size);
        line-height: var(--form-field-line-height);
        cursor: pointer;
        &:focus {
            outline: none;
        }
    }
    .form-button, .form-file::file-selector-button {
        display: inline-block;
        background-color: var(--form-button-bg-color);
        border-width: var(--form-button-border-width);
        border-color: var(--form-button-bg-color);
        color: var(--form-button-color);
        border-radius: var(--form-button-border-radius);
        padding: var(--form-button-padding);
        font-size: var(--form-button-font-size);
        line-height: var(--form-button-line-height);
        cursor: pointer;
        text-align: center;
        &:hover {
            background-color: var(--form-button-hover-bg-color);
            border-color: var(--form-button-hover-bg-color);
            color: var(--form-button-hover-color);
        }
    }
    .form-file::file-selector-button {
        margin-right: 0.75rem;
    }
    .form-label {
        --form-field-vertical-align: text-bottom;
        width: fit-content;
        .form-checkbox, .form-radio {
            width: calc(var(--spacing) * 4.75);
            height: calc(var(--spacing) * 4.75);
        }
    }
}
@layer components {
    .rte-content {
        p + *,
        ul + *,
        ol + *,
        blockquote + *,
        article + *,
        section + *,
        figure + *,
        pre + *,
        div + *,
        h5 + *,
        h6 + *
        {
            margin-top: calc(var(--spacing) * 4);
        }
        h1 + *,
        h2 + *,
        h3 + *,
        h4 + *
        {
            margin-top: calc(var(--spacing) * 5);
        }
        h1 {
            font-size: var(--text-4xl);
            line-height: var(--sf-leading, var(--text-4xl--line-height));
        }
        h2 {
            font-size: var(--text-3xl);
            line-height: var(--sf-leading, var(--text-3xl--line-height));
        }
        h3 {
            font-size: var(--text-2xl);
            line-height: var(--sf-leading, var(--text-2xl--line-height));
        }
        h4 {
            font-size: var(--text-xl);
            line-height: var(--sf-leading, var(--text-xl--line-height));
        }
        h5 {
            font-size: var(--text-lg);
            line-height: var(--sf-leading, var(--text-lg--line-height));
        }
        h6 {
            font-size: var(--text-base);
            line-height: var(--sf-leading, var(--text-base--line-height));
        }
        h1, h2, h3 {
            color: var(--color-primary);
            --sf-font-weight: var(--font-weight-light);
            font-weight: var(--font-weight-light);
            --sf-font-weight: var(--font-weight-semibold);
            font-weight: var(--font-weight-semibold);
        }
        h4, h5, h6 {
            text-wrap: pretty;
            color: var(--color-primary);
            --sf-font-weight: var(--font-weight-bold);
            font-weight: var(--font-weight-bold);
            --sf-font-weight: var(--font-weight-semibold);
            font-weight: var(--font-weight-semibold);
        }
        h1, h2, h3 {
            margin-top: calc(var(--spacing) * 10);
        }
        h4, h5 {
            margin-top: calc(var(--spacing) * 7);
        }
        h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
            margin-top: 0;
        }
        p {
            font-size: var(--text-base);
            line-height: var(--sf-leading, var(--text-base--line-height));
        }
        strong {
            --sf-font-weight: var(--font-weight-semibold);
            font-weight: var(--font-weight-semibold);
        }
        a {
            color: var(--color-primary);
            &:hover {
                text-decoration-line: underline;
            }
        }
        figure {
            margin-block: calc(var(--spacing) * 10);
            img {
                border-radius: var(--radius-sm);
                overflow: hidden;
            }
            figcaption {
                font-size: var(--text-sm);
                line-height: var(--sf-leading, var(--text-sm--line-height));
                margin-top: calc(var(--spacing) * 2);
            }
        }
        hr {
            margin-top: calc(var(--spacing) * 4);
            margin-bottom: calc(var(--spacing) * 4);
            border-style: var(--sf-border-style);
            border-width: 1px;
        }
        ul {
            list-style-type: square;
            list-style-position: outside;
            margin-left: calc(var(--spacing) * 8);
            li {
                padding-left: calc(var(--spacing) * 2);
            }
            li + li {
                margin-top: calc(var(--spacing) * 6);
            }
        }
        ol {
            list-style-type: decimal;
            list-style-position: outside;
            margin-left: calc(var(--spacing) * 8);
            li {
                padding-left: calc(var(--spacing) * 2);
            }
            li + li {
                margin-top: calc(var(--spacing) * 6);
            }
        }
        blockquote {
            margin-block: calc(var(--spacing) * 8);
            border-left-style: var(--sf-border-style);
            border-left-width: 8px;
            border-color: var(--color-primary);
            padding-left: calc(var(--spacing) * 5);
            font-size: var(--text-lg);
            line-height: var(--sf-leading, var(--text-lg--line-height));
            text-wrap: balance;
            --sf-font-weight: var(--font-weight-light);
            font-weight: var(--font-weight-light);
        }
        @media (width >= 80rem) {
            h1 {
                font-size: var(--text-4xl);
                line-height: var(--sf-leading, var(--text-4xl--line-height));
            }
            h2 {
                font-size: var(--text-3xl);
                line-height: var(--sf-leading, var(--text-3xl--line-height));
            }
            h3 {
                font-size: var(--text-2xl);
                line-height: var(--sf-leading, var(--text-2xl--line-height));
            }
            h4 {
                font-size: var(--text-xl);
                line-height: var(--sf-leading, var(--text-xl--line-height));
            }
            h5 {
                font-size: var(--text-lg);
                line-height: var(--sf-leading, var(--text-lg--line-height));
            }
            h6 {
                font-size: var(--text-base);
                line-height: var(--sf-leading, var(--text-base--line-height));
            }
            p {
                font-size: var(--text-base);
                line-height: var(--sf-leading, var(--text-base--line-height));
            }
            blockquote {
                margin-left: calc(var(--spacing) * 5);
                padding-inline: calc(var(--spacing) * 5);
                font-size: var(--text-lg);
                line-height: var(--sf-leading, var(--text-lg--line-height));
            }
        }
    }
    :root {
        color-scheme: light;
        --form-field-border-color: oklch(0.379 0.146 265.522 / 0.25);
        --form-field-border-radius: 0.5rem;
        --form-field-placeholder-color: oklch(0.282 0.091 267.935 / 0.35);
        --form-field-check-color: var(--color-primary);
        --form-field-background-color: oklch(0.546 0.245 262.881 / 0.05);
        --form-field-color: var(--color-slate-950);
        --form-field-icon-color: var(--color-primary);
        --form-field-focus-color: var(--color-primary);
        --form-button-bg-color: var(--color-primary);
        --form-button-fg-color: var(--color-white);
    }
    .form-input, .form-select, .form-textarea, .form-radio {
        font-size: var(--text-base);
        line-height: 1.15;
        transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --sf-gradient-from, --sf-gradient-via, --sf-gradient-to;
        transition-timing-function: var(--sf-ease, var(--default-transition-timing-function));
        transition-duration: var(--sf-duration, var(--default-transition-duration));
        &:not([readonly="readonly"]) {
            &:hover, &:focus, &:focus-visible {
                --form-field-border-color: var(--color-blue-400);
                --form-field-color: var(--color-slate-950);
                --form-field-placeholder-color: oklch(0.379 0.146 265.522 / 0.35);
                --sf-outline-style: none;
                outline-style: none;
            }
        }
        &.inverted {
            --form-field-background-color: oklch(0.293 0.066 243.157 / 0.15);
            --form-field-border-color: oklch(0.951 0.026 236.824 / 0.25);
            --form-field-color: var(--color-white);
            --form-field-placeholder-color: oklch(0.882 0.059 254.128 / 0.35);
            &:not([readonly="readonly"]) {
                &:hover, &:focus, &:focus-visible {
                    --form-field-border-color: var(--color-sky-400);
                    --form-field-color: var(--color-white);
                    --form-field-placeholder-color: oklch(0.882 0.059 254.128 / 0.5);
                }
            }
        }
    }
    .form-button {
        --form-button-bg-color: var(--color-primary);
        --form-button-fg-color: var(--color-white);
        border-radius: var(--radius-sm);
        display: block;
        width: 100%;
        padding-inline: calc(var(--spacing) * 4);
        padding-block: calc(var(--spacing) * 3);
        border-radius: var(--radius-md);
        cursor: pointer;
        user-select: none;
        --sf-font-weight: var(--font-weight-semibold);
        font-weight: var(--font-weight-semibold);
        transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --sf-gradient-from, --sf-gradient-via, --sf-gradient-to;
        transition-timing-function: var(--sf-ease, var(--default-transition-timing-function));
        transition-duration: var(--sf-duration, var(--default-transition-duration));
        &:hover, &:focus, &:focus-visible {
            --form-button-bg-color: var(--color-primary-tint);
            --sf-outline-style: none;
            outline-style: none;
        }
        &.secondary {
            --form-button-bg-color: var(--color-green-600);
            --form-button-fg-color: var(--color-white);
            &:hover, &:focus, &:focus-visible {
                --form-button-bg-color: var(--color-green-700);
            }
        }
        &.danger {
            --form-button-bg-color: var(--color-red-600);
            --form-button-fg-color: var(--color-white);
            background-color: var(--color-red-600);
            border-color: var(--color-red-500);
            &:hover, &:focus, &:focus-visible {
                --form-button-bg-color: var(--color-red-700);
            }
        }
    }
    .disabled {
        pointer-events: none !important;
        opacity: calc(50 * 0.01) !important;
        box-shadow: 0 0 #0000 !important;
    }
    a {
        color: var(--color-primary);
        &:hover {
            text-decoration-line: underline;
        }
    }
    .scrollable {
        position: relative;
        .scrollable-inner {
            position: relative;
            overflow: scroll;
            scrollbar-width: none;
            -ms-overflow-style: none;
            &::-webkit-scrollbar {
                display: none;
            }
            .scrollable-content {
                position: relative;
            }
        }
    }
    .upload-hover {
        background-color: color-mix(in oklab, var(--color-blue-200) 5%, transparent);
        border-color: color-mix(in oklab, var(--color-blue-200) 50%, transparent);
        fill: var(--color-white);
        color: var(--color-white);
    }
}
@layer utilities {
    .-mr-3 {
        margin-right: calc(var(--spacing) * -3);
    }
    .absolute {
        position: absolute;
    }
    .align-text-bottom {
        vertical-align: text-bottom;
    }
    .backdrop-blur-md {
        --sf-backdrop-blur: blur(var(--blur-md));
        -webkit-backdrop-filter: var(--sf-backdrop-blur, ) var(--sf-backdrop-brightness, ) var(--sf-backdrop-contrast, ) var(--sf-backdrop-grayscale, ) var(--sf-backdrop-hue-rotate, ) var(--sf-backdrop-invert, ) var(--sf-backdrop-opacity, ) var(--sf-backdrop-saturate, ) var(--sf-backdrop-sepia, );
        backdrop-filter: var(--sf-backdrop-blur, ) var(--sf-backdrop-brightness, ) var(--sf-backdrop-contrast, ) var(--sf-backdrop-grayscale, ) var(--sf-backdrop-hue-rotate, ) var(--sf-backdrop-invert, ) var(--sf-backdrop-opacity, ) var(--sf-backdrop-saturate, ) var(--sf-backdrop-sepia, );
    }
    .bg-blue-50 {
        background-color: var(--color-blue-50);
    }
    .bg-canvas {
        background-color: var(--color-canvas);
    }
    .bg-nav-bar\/90 {
        background-color: color-mix(in srgb, var(--color-nav-bar) 90%, transparent);
    }
    .bg-upload-done {
        background-color: var(--color-upload-done);
    }
    .bg-upload-in-progress {
        background-color: var(--color-upload-in-progress);
    }
    .bg-white\/15 {
        background-color: color-mix(in srgb, var(--color-white) 15%, transparent);
    }
    .block {
        display: block;
    }
    .border {
        border-style: var(--sf-border-style);
        border-width: 1px;
    }
    .border-1 {
        border-style: var(--sf-border-style);
        border-width: 1px;
    }
    .border-4 {
        border-style: var(--sf-border-style);
        border-width: 4px;
    }
    .border-b {
        border-bottom-style: var(--sf-border-style);
        border-bottom-width: 1px;
    }
    .border-b-black\/5 {
        border-bottom-color: color-mix(in srgb, var(--color-black) 5%, transparent);
    }
    .border-blue-100\/15 {
        border-color: color-mix(in oklab, var(--color-blue-100) 15%, transparent);
    }
    .border-blue-200\/0 {
        border-color: color-mix(in oklab, var(--color-blue-200) 0%, transparent);
    }
    .border-blue-200\/25 {
        border-color: color-mix(in oklab, var(--color-blue-200) 25%, transparent);
    }
    .border-primary-shade\/15 {
        border-color: color-mix(in srgb, var(--color-primary-shade) 15%, transparent);
    }
    .border-t {
        border-top-style: var(--sf-border-style);
        border-top-width: 1px;
    }
    .break-all {
        word-break: break-all;
    }
    .col-span-1 {
        grid-column: span 1 / span 1;
    }
    .col-span-full {
        grid-column: 1 / -1;
    }
    .cursor-pointer {
        cursor: pointer;
    }
    .fill-blue-200\/50 {
        fill: color-mix(in oklab, var(--color-blue-200) 50%, transparent);
    }
    .font-mono {
        font-family: var(--font-mono);
        font-feature-settings: var(--font-mono--font-feature-settings, normal);
        font-variation-settings: var(--font-mono--font-variation-settings, normal);
    }
    .font-sans {
        font-family: var(--font-sans);
        font-feature-settings: var(--font-sans--font-feature-settings, normal);
        font-variation-settings: var(--font-sans--font-variation-settings, normal);
    }
    .gap-x-10 {
        column-gap: calc(var(--spacing) * 10);
    }
    .gap-x-3 {
        column-gap: calc(var(--spacing) * 3);
    }
    .gap-x-4 {
        column-gap: calc(var(--spacing) * 4);
    }
    .gap-x-6 {
        column-gap: calc(var(--spacing) * 6);
    }
    .gap-x-8 {
        column-gap: calc(var(--spacing) * 8);
    }
    .gap-y-12 {
        row-gap: calc(var(--spacing) * 12);
    }
    .gap-y-2 {
        row-gap: calc(var(--spacing) * 2);
    }
    .gap-y-3 {
        row-gap: calc(var(--spacing) * 3);
    }
    .gap-y-4 {
        row-gap: calc(var(--spacing) * 4);
    }
    .gap-y-6 {
        row-gap: calc(var(--spacing) * 6);
    }
    .grid {
        display: grid;
    }
    .grid-cols-\[1fr_2rem\] {
        grid-template-columns: 1fr 2rem;
    }
    .grid-cols-\[1fr_auto_auto\] {
        grid-template-columns: 1fr auto auto;
    }
    .grid-cols-\[1fr_minmax\(auto\,max-content\)\] {
        grid-template-columns: 1fr minmax(auto,max-content);
    }
    .grid-cols-\[1fr_repeat\(6\,minmax\(auto\,max-content\)\)\] {
        grid-template-columns: 1fr repeat(6,minmax(auto,max-content));
    }
    .grid-cols-\[auto_auto_1fr\] {
        grid-template-columns: auto auto 1fr;
    }
    .grid-cols-\[min-content_1fr\] {
        grid-template-columns: min-content 1fr;
    }
    .grid-cols-\[minmax\(auto\,max-content\)_1fr\] {
        grid-template-columns: minmax(auto,max-content) 1fr;
    }
    .grid-cols-\[repeat\(2\,minmax\(auto\,max-content\)\)\] {
        grid-template-columns: repeat(2,minmax(auto,max-content));
    }
    .grid-cols-\[repeat\(3\,minmax\(auto\,max-content\)\)\] {
        grid-template-columns: repeat(3,minmax(auto,max-content));
    }
    .grid-rows-\[0fr\] {
        grid-template-rows: 0fr;
    }
    .grid-rows-\[1fr\] {
        grid-template-rows: 1fr;
    }
    .h-4 {
        height: calc(var(--spacing) * 4);
    }
    .h-48 {
        height: calc(var(--spacing) * 48);
    }
    .h-6 {
        height: calc(var(--spacing) * 6);
    }
    .hidden {
        display: none;
    }
    .inline-block {
        display: inline-block;
    }
    .inline-flex {
        display: inline-flex;
    }
    .italic {
        font-style: italic;
    }
    .items-center {
        align-items: center;
    }
    .justify-end {
        justify-content: flex-end;
    }
    .justify-items-center {
        justify-items: center;
    }
    .left-1\/2 {
        left: 50%;
    }
    .line-clamp-1 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
    .max-h-screen {
        max-height: 100vh;
    }
    .max-w-96 {
        max-width: calc(var(--spacing) * 96);
    }
    .mb-10 {
        margin-bottom: calc(var(--spacing) * 10);
    }
    .mb-2 {
        margin-bottom: calc(var(--spacing) * 2);
    }
    .mb-4 {
        margin-bottom: calc(var(--spacing) * 4);
    }
    .mb-6 {
        margin-bottom: calc(var(--spacing) * 6);
    }
    .mb-9 {
        margin-bottom: calc(var(--spacing) * 9);
    }
    .min-h-48 {
        min-height: calc(var(--spacing) * 48);
    }
    .min-h-dvh {
        min-height: 100dvh;
    }
    .min-w-\[75\%\] {
        min-width: 75%;
    }
    .ml-1\.5 {
        margin-left: calc(var(--spacing) * 1.5);
    }
    .ml-2 {
        margin-left: calc(var(--spacing) * 2);
    }
    .ml-2\.5 {
        margin-left: calc(var(--spacing) * 2.5);
    }
    .ml-3 {
        margin-left: calc(var(--spacing) * 3);
    }
    .ml-4 {
        margin-left: calc(var(--spacing) * 4);
    }
    .mr-1\.5 {
        margin-right: calc(var(--spacing) * 1.5);
    }
    .mr-2 {
        margin-right: calc(var(--spacing) * 2);
    }
    .mr-3 {
        margin-right: calc(var(--spacing) * 3);
    }
    .mr-4 {
        margin-right: calc(var(--spacing) * 4);
    }
    .mt-1 {
        margin-top: calc(var(--spacing) * 1);
    }
    .mt-10 {
        margin-top: calc(var(--spacing) * 10);
    }
    .mt-12 {
        margin-top: calc(var(--spacing) * 12);
    }
    .mt-2 {
        margin-top: calc(var(--spacing) * 2);
    }
    .mt-4 {
        margin-top: calc(var(--spacing) * 4);
    }
    .mt-5 {
        margin-top: calc(var(--spacing) * 5);
    }
    .mt-6 {
        margin-top: calc(var(--spacing) * 6);
    }
    .mt-8 {
        margin-top: calc(var(--spacing) * 8);
    }
    .mt-9 {
        margin-top: calc(var(--spacing) * 9);
    }
    .mx-auto {
        margin-inline: auto;
    }
    .my-5 {
        margin-block: calc(var(--spacing) * 5);
    }
    .opacity-0 {
        opacity: calc(0 * 0.01);
    }
    .opacity-30 {
        opacity: calc(30 * 0.01);
    }
    .opacity-50 {
        opacity: calc(50 * 0.01);
    }
    .overflow-hidden {
        overflow: hidden;
    }
    .overflow-visible {
        overflow: visible;
    }
    .pb-18 {
        padding-bottom: calc(var(--spacing) * 18);
    }
    .pb-6 {
        padding-bottom: calc(var(--spacing) * 6);
    }
    .pt-5 {
        padding-top: calc(var(--spacing) * 5);
    }
    .px-0 {
        padding-inline: 0;
    }
    .px-5 {
        padding-inline: calc(var(--spacing) * 5);
    }
    .px-6 {
        padding-inline: calc(var(--spacing) * 6);
    }
    .px-8 {
        padding-inline: calc(var(--spacing) * 8);
    }
    .py-5 {
        padding-block: calc(var(--spacing) * 5);
    }
    .py-6 {
        padding-block: calc(var(--spacing) * 6);
    }
    .py-9 {
        padding-block: calc(var(--spacing) * 9);
    }
    .relative {
        position: relative;
    }
    .rounded-lg {
        border-radius: var(--radius-lg);
    }
    .rounded-sm {
        border-radius: var(--radius-sm);
    }
    .rounded-xl {
        border-radius: var(--radius-xl);
    }
    .select-none {
        user-select: none;
    }
    .shadow-md {
        --sf-shadow-alpha: 10%;
        --sf-shadow-color: oklch(0 0 0 / var(--sf-shadow-alpha));
        --sf-shadow: 0 4px 6px -1px var(--sf-shadow-color), 0 2px 4px -2px var(--sf-shadow-color);
        box-shadow: var(--sf-inset-shadow), var(--sf-inset-ring-shadow), var(--sf-ring-offset-shadow), var(--sf-ring-shadow), var(--sf-shadow);
    }
    .space-y-3 {
        & > :not(:last-child) {
            margin-block-start: calc(calc(var(--spacing) * 3) * var(--sf-space-y-reverse));
            margin-block-end: calc(calc(var(--spacing) * 3) * calc(1 - var(--sf-space-y-reverse)));
        }
    }
    .space-y-6 {
        & > :not(:last-child) {
            margin-block-start: calc(calc(var(--spacing) * 6) * var(--sf-space-y-reverse));
            margin-block-end: calc(calc(var(--spacing) * 6) * calc(1 - var(--sf-space-y-reverse)));
        }
    }
    .static {
        position: static;
    }
    .sticky {
        position: sticky;
    }
    .text-\[1\.1rem\]\/1 {
        font-size: 1.1rem;
        line-height: calc(var(--spacing) * 1);
    }
    .text-2xl {
        font-size: var(--text-2xl);
        line-height: var(--sf-leading, var(--text-2xl--line-height));
    }
    .text-3xl {
        font-size: var(--text-3xl);
        line-height: var(--sf-leading, var(--text-3xl--line-height));
    }
    .text-4xl {
        font-size: var(--text-4xl);
        line-height: var(--sf-leading, var(--text-4xl--line-height));
    }
    .text-5xl {
        font-size: var(--text-5xl);
        line-height: var(--sf-leading, var(--text-5xl--line-height));
    }
    .text-amber-600 {
        color: var(--color-amber-600);
    }
    .text-base {
        font-size: var(--text-base);
        line-height: var(--sf-leading, var(--text-base--line-height));
    }
    .text-base\/6 {
        font-size: var(--text-base);
        line-height: calc(var(--spacing) * 6);
    }
    .text-blue-100 {
        color: var(--color-blue-100);
    }
    .text-blue-200\/50 {
        color: color-mix(in oklab, var(--color-blue-200) 50%, transparent);
    }
    .text-center {
        text-align: center;
    }
    .text-lg {
        font-size: var(--text-lg);
        line-height: var(--sf-leading, var(--text-lg--line-height));
    }
    .text-nowrap {
        text-wrap: nowrap;
    }
    .text-primary {
        color: var(--color-primary);
    }
    .text-red-400 {
        color: var(--color-red-400);
    }
    .text-red-600 {
        color: var(--color-red-600);
    }
    .text-right {
        text-align: right;
    }
    .text-slate-900 {
        color: var(--color-slate-900);
    }
    .text-sm {
        font-size: var(--text-sm);
        line-height: var(--sf-leading, var(--text-sm--line-height));
    }
    .text-sm\/5 {
        font-size: var(--text-sm);
        line-height: calc(var(--spacing) * 5);
    }
    .text-white {
        color: var(--color-white);
    }
    .text-xl {
        font-size: var(--text-xl);
        line-height: var(--sf-leading, var(--text-xl--line-height));
    }
    .text-xs {
        font-size: var(--text-xs);
        line-height: var(--sf-leading, var(--text-xs--line-height));
    }
    .text-xs\/5 {
        font-size: var(--text-xs);
        line-height: calc(var(--spacing) * 5);
    }
    .top-0 {
        top: 0;
    }
    .top-1\/2 {
        top: 50%;
    }
    .transition-grid-row {
        transition-property: grid-template-rows;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 250ms;
    }
    .translate-center {
        translate: -50% -50%;
    }
    .w-\[70rem\] {
        width: 70rem;
    }
    .w-\[90rem\] {
        width: 90rem;
    }
    .w-18 {
        width: calc(var(--spacing) * 18);
    }
    .w-40 {
        width: calc(var(--spacing) * 40);
    }
    .w-dvw {
        width: 100dvw;
    }
    .w-fit {
        width: fit-content;
    }
    .w-full {
        width: 100%;
    }
    .w-screen {
        width: 100vw;
    }
    .whitespace-nowrap {
        white-space: nowrap;
    }
    .z-50 {
        z-index: 50;
    }
    .first-of-type\:block:first-of-type {
        display: block;
    }
    .first-of-type\:hidden:first-of-type {
        display: none;
    }
    .font-bold {
        --sf-font-weight: var(--font-weight-bold);
        font-weight: var(--font-weight-bold);
    }
    .font-extrabold {
        --sf-font-weight: var(--font-weight-extrabold);
        font-weight: var(--font-weight-extrabold);
    }
    .font-extralight {
        --sf-font-weight: var(--font-weight-extralight);
        font-weight: var(--font-weight-extralight);
    }
    .font-semibold {
        --sf-font-weight: var(--font-weight-semibold);
        font-weight: var(--font-weight-semibold);
    }
    .hover\:bg-blue-200\/5:hover {
        background-color: color-mix(in oklab, var(--color-blue-200) 5%, transparent);
    }
    .hover\:border-blue-200\/50:hover {
        border-color: color-mix(in oklab, var(--color-blue-200) 50%, transparent);
    }
    .hover\:fill-white:hover {
        fill: var(--color-white);
    }
    .hover\:opacity-100:hover {
        opacity: calc(100 * 0.01);
    }
    .hover\:outline:hover {
        outline-style: var(--sf-outline-style);
        outline-width: 1px;
    }
    .hover\:outline-4:hover {
        outline-style: var(--sf-outline-style);
        outline-width: 4px;
    }
    .hover\:outline-primary-tint:hover {
        outline-color: var(--color-primary-tint);
    }
    .hover\:text-primary:hover {
        color: var(--color-primary);
    }
    .hover\:text-primary-shade:hover {
        color: var(--color-primary-shade);
    }
    .hover\:text-primary-tint:hover {
        color: var(--color-primary-tint);
    }
    .hover\:text-red-400:hover {
        color: var(--color-red-400);
    }
    .hover\:text-white:hover {
        color: var(--color-white);
    }
    .leading-\[1\.5\] {
        --sf-leading: 1.5;
        line-height: var(--sf-leading);
    }
    .leading-5 {
        --sf-leading: calc(var(--spacing) * 5);
        line-height: var(--sf-leading);
    }
    .leading-6 {
        --sf-leading: calc(var(--spacing) * 6);
        line-height: var(--sf-leading);
    }
    .leading-none {
        --sf-leading: 1;
        line-height: var(--sf-leading);
    }
    .border-dashed {
        --sf-border-style: dashed;
        border-style: dashed;
    }
    @media (width >= 40rem) {
        .sm\:w-54 {
            width: calc(var(--spacing) * 54);
        }
    }
    @media (width >= 48rem) {
        .md\:border {
            border-style: var(--sf-border-style);
            border-width: 1px;
        }
        .md\:border-blue-200\/25 {
            border-color: color-mix(in oklab, var(--color-blue-200) 25%, transparent);
        }
        .md\:grid-cols-\[1\.25fr_0\.75fr_0\.5fr\] {
            grid-template-columns: 1.25fr 0.75fr 0.5fr;
        }
        .md\:grid-cols-\[1\.25fr_1fr_0\.5fr\] {
            grid-template-columns: 1.25fr 1fr 0.5fr;
        }
        .md\:h-full {
            height: 100%;
        }
        .md\:inline-block {
            display: inline-block;
        }
        .md\:mb-0 {
            margin-bottom: 0;
        }
        .md\:my-0 {
            margin-block: 0;
        }
        .md\:p-12 {
            padding: calc(var(--spacing) * 12);
        }
        .md\:px-0 {
            padding-inline: 0;
        }
        .md\:px-8 {
            padding-inline: calc(var(--spacing) * 8);
        }
        .md\:rounded-lg {
            border-radius: var(--radius-lg);
        }
        .md\:text-3xl {
            font-size: var(--text-3xl);
            line-height: var(--sf-leading, var(--text-3xl--line-height));
        }
        .md\:text-lg {
            font-size: var(--text-lg);
            line-height: var(--sf-leading, var(--text-lg--line-height));
        }
        .md\:w-\[30rem\] {
            width: 30rem;
        }
        .md\:w-2\/3 {
            width: 66.666666666667%;
        }
        .md\:w-96 {
            width: calc(var(--spacing) * 96);
        }
    }
    @media (width >= 64rem) {
        .lg\:gap-x-12 {
            column-gap: calc(var(--spacing) * 12);
        }
        .lg\:grid-cols-\[1\.5fr_1fr\] {
            grid-template-columns: 1.5fr 1fr;
        }
        .lg\:grid-cols-\[1fr_minmax\(auto\,1\.5fr\)_minmax\(auto\,18rem\)\] {
            grid-template-columns: 1fr minmax(auto,1.5fr) minmax(auto,18rem);
        }
        .lg\:grid-cols-\[1fr_minmax\(auto\,1fr\)_minmax\(auto\,18rem\)\] {
            grid-template-columns: 1fr minmax(auto,1fr) minmax(auto,18rem);
        }
        .lg\:h-full {
            height: 100%;
        }
        .lg\:px-0 {
            padding-inline: 0;
        }
        .lg\:px-8 {
            padding-inline: calc(var(--spacing) * 8);
        }
        .lg\:w-1\/2 {
            width: 50%;
        }
        .lg\:w-full {
            width: 100%;
        }
    }
    @media (width >= 80rem) {
        .xl\:px-0 {
            padding-inline: 0;
        }
        .xl\:px-12 {
            padding-inline: calc(var(--spacing) * 12);
        }
        .xl\:px-8 {
            padding-inline: calc(var(--spacing) * 8);
        }
        .xl\:rounded-lg {
            border-radius: var(--radius-lg);
        }
        .xl\:w-full {
            width: 100%;
        }
    }
    @media (width >= 96rem) {
        .\32 xl\:max-w-8xl {
            max-width: var(--container-8xl);
        }
        .\32 xl\:px-12 {
            padding-inline: calc(var(--spacing) * 12);
        }
    }
}
@property --sf-backdrop-blur {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-brightness {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-contrast {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-grayscale {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-hue-rotate {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-invert {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-opacity {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-saturate {
    syntax: "*";
    inherits: false
}
@property --sf-backdrop-sepia {
    syntax: "*";
    inherits: false
}
@property --sf-border-style {
    syntax: "*";
    inherits: false;
    initial-value: solid
}
@property --sf-duration {
    syntax: "*";
    inherits: false
}
@property --sf-ease {
    syntax: "*";
    inherits: false
}
@property --sf-font-weight {
    syntax: "*";
    inherits: false
}
@property --sf-gradient-from {
    syntax: "<color>";
    inherits: false;
    initial-value: #0000
}
@property --sf-gradient-via {
    syntax: "<color>";
    inherits: false;
    initial-value: #0000
}
@property --sf-inset-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000
}
@property --sf-inset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000
}
@property --sf-leading {
    syntax: "*";
    inherits: false
}
@property --sf-outline-style {
    syntax: "*";
    inherits: false;
    initial-value: solid
}
@property --sf-ring-offset-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000
}
@property --sf-ring-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000
}
@property --sf-shadow {
    syntax: "*";
    inherits: false;
    initial-value: 0 0 #0000
}
@property --sf-shadow-alpha {
    syntax: "<percentage>";
    inherits: false;
    initial-value: 100%
}
@property --sf-shadow-color {
    syntax: "*";
    inherits: false
}
@property --sf-space-y-reverse {
    syntax: "*";
    inherits: false;
    initial-value: 0
}
@layer properties {
    *, ::before, ::after, ::backdrop {
        --sf-backdrop-blur: initial;
        --sf-backdrop-brightness: initial;
        --sf-backdrop-contrast: initial;
        --sf-backdrop-grayscale: initial;
        --sf-backdrop-hue-rotate: initial;
        --sf-backdrop-invert: initial;
        --sf-backdrop-opacity: initial;
        --sf-backdrop-saturate: initial;
        --sf-backdrop-sepia: initial;
        --sf-border-style: solid;
        --sf-duration: initial;
        --sf-ease: initial;
        --sf-font-weight: initial;
        --sf-gradient-from: #0000;
        --sf-gradient-via: #0000;
        --sf-inset-ring-shadow: 0 0 #0000;
        --sf-inset-shadow: 0 0 #0000;
        --sf-leading: initial;
        --sf-outline-style: solid;
        --sf-ring-offset-shadow: 0 0 #0000;
        --sf-ring-shadow: 0 0 #0000;
        --sf-shadow: 0 0 #0000;
        --sf-shadow-alpha: 15%;
        --sf-shadow-color: rgb(0 0 0 / var(--sf-shadow-alpha));
        --sf-space-y-reverse: 0;
    }
}
