@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Raleway:wght@600;700;800;900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ─────────────────────────────────────────
   Design tokens — matched to lunent.com
   Dark bg · White navbar · Teal accent
───────────────────────────────────────── */
:root {
    /* Exact colors from website screenshot */
    --teal: #2ab5a5;
    --teal-dark: #1e9080;
    --teal-light: #3dd0be;
    --teal-pale: rgba(42,181,165,0.1);
    --teal-dim: rgba(42,181,165,0.14);
    --teal-border: rgba(42,181,165,0.4);
    --teal-glow: 0 0 0 3px rgba(42,181,165,0.2);
    --grad-teal: linear-gradient(135deg, #2ab5a5 0%, #1e9e8e 100%);
    --grad-teal-h: linear-gradient(135deg, #30c8b6 0%, #24a898 100%);
    /* Page — very dark, matches site */
    --bg-page: #0d1117;
    --bg-hero: #111820;
    --bg-card: #141c26;
    --bg-card-inner: #101620;
    /* Nav/header strip — white like the site navbar */
    --bg-nav: #ffffff;
    --nav-text: #1a2535;
    --nav-border: rgba(0,0,0,0.08);
    /* Inputs — slightly lighter than card, clearly readable */
    --bg-input: #1c2738;
    --bg-input-h: #213040;
    --bg-input-f: #1f2e42;
    --text-input: #e8f0f8;
    --border-input: rgba(255,255,255,0.12);
    --border-input-h: rgba(255,255,255,0.2);
    --shadow-input: inset 0 1px 3px rgba(0,0,0,0.3);
    /* Card borders */
    --border-card: rgba(255,255,255,0.07);
    --border-card-hi: rgba(255,255,255,0.12);
    /* Text */
    --text: #e8f0f8;
    --text-soft: #a8becc;
    --text-muted: #5c7a8a;
    --text-label: #7a9aaa;
    --text-hint: #4a6070;
    /* Status */
    --danger: #e05555;
    --success: #2ab5a5;
    /* Shape */
    --radius-card: 12px;
    --radius-input: 7px;
    --radius-pill: 999px;
    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
}

/* ── Base ── */
html, body {
    min-height: 100%;
    background: var(--bg-page);
    color: var(--text);
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

    /* Subtle dark grid texture like the site's bg */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: linear-gradient(rgba(42,181,165,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(42,181,165,0.018) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        z-index: 0;
    }

.page-shell {
    position: relative;
    z-index: 1;
    width: min(1100px, calc(100% - 48px));
    margin: 0 auto;
    padding: 36px 0 64px;
}

/* ── Hero — mimics site's white navbar + dark content split ── */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card-hi);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}

    /* White top strip — like the site's white nav */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--grad-teal);
    }

.hero-nav-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    background: var(--bg-nav);
    border-bottom: 1px solid var(--nav-border);
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    z-index: 2;
}

/* Real logo image */
.hero-logo-img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Dark content area below the nav strip */
.hero-copy {
    width: 100%;
    padding: 90px 36px 36px;
    background: linear-gradient(160deg, #162030 0%, #0f1922 100%);
    position: relative;
    z-index: 1;
}

    /* Teal radial glow like the site */
    .hero-copy::after {
        content: '';
        position: absolute;
        bottom: -40px;
        right: -40px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(42,181,165,0.08) 0%, transparent 70%);
        pointer-events: none;
    }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--teal);
}

    .eyebrow::before {
        content: '';
        display: inline-block;
        width: 18px;
        height: 20px;
        clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        background: var(--grad-teal);
    }

/* Bold heading — matches site's Raleway-style bold white heading */
.hero h1 {
    margin: 0 0 14px;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

    /* Teal accent on last word — matches "Operations" in teal on site */
    .hero h1 em {
        font-style: normal;
        color: var(--teal);
    }

.hero-text {
    margin: 0 0 0;
    color: var(--text-soft);
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 560px;
}

/* Badge — top right, teal pill */
/* Top row inside hero-copy: eyebrow left, badge right */
.hero-copy-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

    .hero-copy-top .eyebrow {
        margin-bottom: 0;
    }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--teal-border);
    background: var(--teal-dim);
    color: var(--teal-light);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

    .hero-badge::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--teal);
        flex-shrink: 0;
    }


.hero-top-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: nowrap;
    margin-left: auto;
    min-height: 44px;
}

.hero-language {
    display: flex;
    align-items: center;
    min-width: 120px;
}

.hero-language-label {
    display: none;
}

.hero-language-select {
    width: 120px;
    min-width: 120px;
    height: 52px;
    background-color: rgba(28,39,56,0.92);
}

    .hero-language-select:hover {
        background-color: rgba(33,48,64,0.96);
    }

    .hero-language-select:focus {
        background-color: rgba(31,46,66,0.98);
    }

/* ── Chips ── */
.chip {
    display: inline-flex;
    align-items: center;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-card);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

    .chip.muted {
        color: var(--text-muted);
    }

    .chip.success {
        border-color: var(--teal-border);
        background: var(--teal-pale);
        color: var(--teal-light);
        font-weight: 600;
    }

/* ── Content grid ── */
.content-grid {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

/* ── Cards ── */
.card {
    padding: 26px 30px;
    border-radius: var(--radius-card);
    border: 1px solid var(--border-card);
    border-top: 1px solid var(--border-card-hi);
    background: var(--bg-card);
    box-shadow: var(--shadow-card);
    position: relative;
}

    /* Teal top accent */
    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(42,181,165,0.4), transparent);
    }

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

    .card-header h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.01em;
        color: var(--text);
    }

.card-balance,
.form-card,
.success-card {
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-copy {
    margin: 5px 0 0;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.55;
}

    .section-copy.compact {
        font-size: 12.5px;
    }

/* ── Selection boxes ── */
.selection-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.selection-box {
    padding: 14px 16px;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.06);
    border-top: 1px solid rgba(42,181,165,0.2);
    background: var(--bg-card-inner);
}

.label {
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal);
    opacity: 0.75;
}

.value {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.hint {
    margin-top: 5px;
    color: var(--text-hint);
    font-size: 12px;
    font-family: monospace;
}

.selection-status,
.inline-warning,
.submit-state {
    margin-top: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

    .selection-status.ok {
        color: var(--teal-light);
    }

    .selection-status.error,
    .inline-warning.error,
    .field-error.active {
        color: var(--danger);
    }

/* ── Form sections ── */
.form-section {
    margin-bottom: 14px;
    padding: 16px 0 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

    .form-section:first-of-type {
        padding-top: 0;
        border-top: 0;
    }

    .form-section.soft {
        padding-top: 4px;
    }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal);
    opacity: 0.8;
}

    .section-label::before {
        content: '';
        width: 12px;
        height: 2px;
        background: var(--grad-teal);
        border-radius: 2px;
        flex-shrink: 0;
    }

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

label {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

    label > span {
        font-size: 15px;
        font-weight: 600;
        color: var(--text-label);
    }

/* ── Inputs ── */
input,
textarea {
    width: 100%;
    border: 1px solid var(--border-input);
    border-radius: var(--radius-input);
    background: var(--bg-input);
    color: var(--text-input);
    padding: 13px 15px;
    outline: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    box-shadow: var(--shadow-input);
    transition: border-color .18s, box-shadow .18s, background .18s;
}

    input::placeholder,
    textarea::placeholder {
        color: rgba(168,190,204,0.35);
    }

    input:hover,
    textarea:hover {
        border-color: var(--border-input-h);
        background: var(--bg-input-h);
    }

    input:focus,
    textarea:focus {
        border-color: var(--teal-border);
        box-shadow: var(--teal-glow);
        background: var(--bg-input-f);
    }

textarea {
    resize: vertical;
    min-height: 108px;
}

/* ── Custom select ── */
.custom-select {
    position: relative;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid var(--border-input);
    border-radius: var(--radius-input);
    background: var(--bg-input);
    color: var(--text-input);
    padding: 13px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    cursor: pointer;
    box-shadow: var(--shadow-input);
    transition: border-color .18s, box-shadow .18s, background .18s;
    user-select: none;
}

    .custom-select-trigger.placeholder {
        color: rgba(168,190,204,0.35);
    }

    .custom-select-trigger:hover {
        border-color: var(--border-input-h);
        background: var(--bg-input-h);
    }

    .custom-select-trigger.open {
        border-color: var(--teal-border);
        box-shadow: var(--teal-glow);
        background: var(--bg-input-f);
    }

.custom-select-arrow {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform .18s;
    opacity: 0.35;
    fill: none;
    stroke: var(--text-input);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.custom-select-trigger.open .custom-select-arrow {
    transform: rotate(180deg);
    opacity: 0.8;
    stroke: var(--teal-light);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    z-index: 200;
    border: 1px solid rgba(42,181,165,0.3);
    border-radius: 9px;
    background: #1a2636;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity .15s, transform .15s;
}

    .custom-select-dropdown.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

.custom-select-option {
    padding: 12px 15px;
    font-size: 15px;
    color: var(--text-soft);
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background .1s, color .1s;
}

    .custom-select-option:last-child {
        border-bottom: 0;
    }

    .custom-select-option:hover {
        background: rgba(42,181,165,0.1);
        color: var(--text);
    }

    .custom-select-option.selected {
        background: rgba(42,181,165,0.15);
        color: var(--teal-light);
        font-weight: 500;
    }

    .custom-select-option.placeholder-opt {
        color: var(--text-muted);
        font-style: italic;
        font-size: 12.5px;
    }

.custom-select select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

.full-width {
    margin-top: 10px;
}

.address-field {
    margin-top: 0;
}

.notes-field {
    margin-top: 10px;
}

.full-span {
    grid-column: 1 / -1;
}

/* ── Checkbox — compact inline ── */
.checkbox-panel {
    display: flex;
    align-items: center;
    padding: 4px 2px;
    border: none;
    background: none;
}

    .checkbox-panel:has(input:checked) {
        background: none;
    }

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

    .checkbox-row input[type="checkbox"] {
        width: 15px;
        height: 15px;
        margin: 0;
        accent-color: var(--teal);
        flex-shrink: 0;
    }

    .checkbox-row span {
        color: var(--text-muted);
        font-size: 15px;
        line-height: 1.45;
    }

/* ── Field errors ── */
.field-error {
    min-height: 16px;
    font-size: 12.5px;
    color: transparent;
}

/* ── Action row ── */
.action-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

/* ── CTA — matches site's teal "EXPLORE OUR PRODUCTS" button ── */
button[type="submit"],
button {
    position: relative;
    border: 0;
    border-radius: var(--radius-input);
    padding: 12px 28px;
    background: var(--grad-teal);
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(42,181,165,0.38);
    transition: transform .16s, box-shadow .16s, filter .16s;
    overflow: hidden;
}

    button[type="submit"]::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.14) 0%, transparent 50%);
        pointer-events: none;
    }

    button[type="submit"]:hover {
        filter: brightness(1.1);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(42,181,165,0.5);
    }

    button[type="submit"]:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(42,181,165,0.3);
    }

    button[disabled] {
        opacity: 0.45;
        cursor: wait;
        transform: none;
        box-shadow: none;
        filter: none;
    }

/* ── Success card ── */
.success-card p {
    margin: 0 0 16px;
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 14px;
}

.success-meta {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 9px;
    border: 1px solid rgba(42,181,165,0.25);
    background: rgba(42,181,165,0.06);
    font-size: 13.5px;
}

    .success-meta strong {
        color: var(--teal-light);
        font-weight: 600;
    }

.hidden {
    display: none;
}

/* ── Animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero {
    animation: fadeUp .45s ease both;
}

.card {
    animation: fadeUp .45s ease both;
}

    .card:nth-child(2) {
        animation-delay: .07s;
    }

    .card:nth-child(3) {
        animation-delay: .14s;
    }

/* ── Responsive ── */
@media (max-width: 720px) {
    .page-shell {
        width: calc(100% - 24px);
        padding-top: 20px;
    }

    .hero-copy {
        padding: 80px 20px 26px;
    }

    .hero-copy-top {
        flex-wrap: wrap;
    }

    .hero-top-actions,
    .hero-language,
    .hero-language-select {
        width: 100%;
        min-width: 0;
    }

    .hero h1 {
        font-size: clamp(22px, 7vw, 30px);
    }

    .card {
        padding: 18px;
    }

    .selection-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .full-span {
        grid-column: auto;
    }

    .card-balance,
    .form-card,
    .success-card {
        max-width: 100%;
    }
}


.custom-select-dropdown--scroll {
    max-height: 280px;
    overflow-y: auto;
}

    .custom-select-dropdown--scroll::-webkit-scrollbar {
        width: 10px;
    }

    .custom-select-dropdown--scroll::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.04);
    }

    .custom-select-dropdown--scroll::-webkit-scrollbar-thumb {
        background: rgba(42,181,165,0.28);
        border-radius: 999px;
    }


.custom-select-trigger.disabled {
    cursor: default;
    opacity: 0.92;
    pointer-events: none;
    border-color: rgba(255,255,255,0.10);
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)), var(--bg-input);
}

    .custom-select-trigger.disabled .custom-select-arrow {
        opacity: 0.18;
    }

    .custom-select-trigger.disabled + .custom-select-dropdown {
        display: none;
    }


/* Native country select — Owners Admin style stability */
.native-select {
    width: 100%;
    border: 1px solid var(--border-input);
    border-radius: var(--radius-input);
    background: var(--bg-input);
    color: var(--text-input);
    padding: 13px 42px 13px 15px;
    outline: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    box-shadow: var(--shadow-input);
    transition: border-color .18s, box-shadow .18s, background .18s;
    -webkit-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, rgba(232,240,248,0.7) 50%), linear-gradient(135deg, rgba(232,240,248,0.7) 50%, transparent 50%);
    background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 13px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

    .native-select:hover {
        border-color: var(--border-input-h);
        background-color: var(--bg-input-h);
    }

    .native-select:focus {
        border-color: var(--teal-border);
        box-shadow: var(--teal-glow);
        background-color: var(--bg-input-f);
    }

    .native-select option {
        background: #1a2636;
        color: var(--text-input);
    }


body.modal-open {
    overflow: hidden;
}

.success-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

    .success-modal.hidden {
        display: none;
    }

.success-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 10, 18, 0.74);
    backdrop-filter: blur(4px);
}

.success-modal-card {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 24px));
    margin: 0;
    animation: fadeUp .22s ease both;
}

.success-modal-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.04);
}

    .success-modal-actions button {
        min-width: 140px;
    }

@media (max-width: 720px) {
    .success-modal {
        padding: 14px;
        align-items: flex-end;
    }

    .success-modal-card {
        width: 100%;
    }

    .success-modal-actions {
        justify-content: stretch;
    }

        .success-modal-actions button {
            width: 100%;
        }
}


.hero-copy-main {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    flex: 1 1 auto;
}

.env-banner.hidden {
    display: none;
}

.env-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    max-width: min(100%, 860px);
    min-height: 48px;
    padding: 8px 14px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.22);
    overflow: hidden;
}

    .env-banner[data-env-key="dev"] {
        background: rgba(201, 124, 15, 0.96);
        border-color: rgba(255,214,153,0.28);
    }

    .env-banner[data-env-key="stage"] {
        background: rgba(86, 70, 191, 0.96);
        border-color: rgba(196,181,253,0.28);
    }

    .env-banner[data-env-key="test"], .env-banner[data-env-key="local"] {
        background: rgba(15, 23, 42, 0.92);
        border-color: rgba(148, 163, 184, 0.3);
    }

.env-banner-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 68px;
    height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex: 0 0 auto;
}

.env-banner-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    flex: 1 1 auto;
}

.env-banner-toggle {
    min-width: 36px;
    width: 36px;
    height: 36px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.08);
    color: #fff;
    box-shadow: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

    .env-banner-toggle:hover {
        transform: translateY(-1px);
        filter: none;
        box-shadow: none;
    }

    .env-banner-toggle:active {
        transform: translateY(0);
    }

.env-banner.is-collapsed {
    padding-right: 8px;
}

    .env-banner.is-collapsed .env-banner-text {
        display: none;
    }

@media (max-width: 720px) {
    .env-banner {
        width: 100%;
        max-width: 100%;
    }

    .env-banner-text {
        font-size: 13px;
    }
}


.env-banner:empty {
    display: none;
}
