﻿:root {
    --sk-auth-bg: #f6f8fb;
    --sk-auth-card: #ffffff;
    --sk-auth-text: #101828;
    --sk-auth-muted: #667085;
    --sk-auth-soft: #eef7fc;
    --sk-auth-primary: #0F548C;
    --sk-auth-primary-dark: #003D59;
    --sk-auth-provider: #006E64;
    --sk-auth-provider-dark: #005164;
    --sk-auth-border: rgba(15, 23, 42, .10);
    --sk-auth-shadow: 0 20px 48px rgba(15, 23, 42, .08);
    --sk-auth-shadow-strong: 0 34px 90px rgba(2, 8, 23, .34);
    --sk-auth-radius: 28px;
}

html.country-gate-locked,
body.country-gate-locked {
    overflow: hidden !important;
    touch-action: none;
}

.skan-auth-page {
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(219, 236, 245, .75), transparent 34%), radial-gradient(circle at bottom right, rgba(174, 208, 221, .42), transparent 36%), var(--sk-auth-bg);
    padding: 34px 14px 72px;
}

.skan-auth-card {
    width: min(100%, 520px);
    margin: 0 auto;
    background: var(--sk-auth-card);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: var(--sk-auth-radius);
    box-shadow: var(--sk-auth-shadow);
    overflow: hidden;
}

.skan-auth-card-wide {
    width: min(100%, 960px);
}

.skan-auth-head {
    padding: 26px 26px 14px;
    text-align: center;
}

.skan-auth-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--sk-auth-soft);
    color: var(--sk-auth-primary);
    font-size: 12px;
    font-weight: 850;
    margin-bottom: 13px;
}

.skan-auth-title {
    margin: 0;
    color: var(--sk-auth-text);
    font-size: clamp(24px, 3.5vw, 31px);
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -.03em;
}

.skan-auth-subtitle {
    margin: 9px auto 0;
    color: var(--sk-auth-muted);
    font-size: 14px;
    line-height: 1.55;
    max-width: 680px;
}

.skan-auth-body {
    padding: 14px 26px 26px;
}

.skan-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.skan-auth-field {
    margin-bottom: 14px;
}

    .skan-auth-field.full {
        grid-column: 1 / -1;
    }

.skan-auth-label {
    display: block;
    margin-bottom: 7px;
    color: var(--sk-auth-muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.skan-auth-input,
.skan-auth-select,
.skan-auth-textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--sk-auth-border);
    border-radius: 17px;
    background: #f9fafb;
    color: var(--sk-auth-text);
    padding: 13px 14px;
    font-size: 14px;
    font-weight: 650;
    outline: none;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

    .skan-auth-input::placeholder,
    .skan-auth-textarea::placeholder {
        color: #98a2b3;
        font-weight: 500;
    }

.skan-auth-select {
    cursor: pointer;
}

.skan-auth-textarea {
    min-height: 118px;
    resize: vertical;
    line-height: 1.5;
}

    .skan-auth-input:focus,
    .skan-auth-select:focus,
    .skan-auth-textarea:focus {
        background: #fff;
        border-color: var(--sk-auth-primary);
        box-shadow: 0 0 0 4px rgba(15, 84, 140, .10);
    }

    .skan-auth-input:disabled,
    .skan-auth-select:disabled,
    .skan-auth-textarea:disabled {
        opacity: .82;
        cursor: not-allowed;
        background: #eef2f7;
    }

.skan-auth-field .validation-message,
.skan-auth-field .field-validation-error {
    display: block;
    color: #b42318;
    font-size: 12px;
    font-weight: 750;
    margin-top: 6px;
}

.validation-errors,
.validation-summary-errors {
    margin: 0 0 14px;
    padding: 12px 14px;
    border-radius: 16px;
    color: #b42318;
    background: #fff4f4;
    border: 1px solid #fecaca;
    font-size: 13px;
    font-weight: 700;
}

.skan-auth-alert-error,
.skan-auth-alert-success {
    border-radius: 16px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 750;
    margin-bottom: 14px;
    line-height: 1.45;
}

.skan-auth-alert-error {
    background: #fff4f4;
    color: #b42318;
    border: 1px solid #fecaca;
}

.skan-auth-alert-success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
}

.skan-auth-actions {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

.skan-auth-btn-primary,
.skan-auth-btn-secondary {
    min-height: 52px;
    border-radius: 17px;
    font-weight: 850;
    border: 0;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.skan-auth-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--sk-auth-primary-dark), var(--sk-auth-primary));
    box-shadow: 0 14px 28px rgba(15, 84, 140, .20);
}

    .skan-auth-btn-primary:hover:not(:disabled),
    .skan-auth-btn-secondary:hover:not(:disabled) {
        transform: translateY(-1px);
    }

    .skan-auth-btn-primary:disabled,
    .skan-auth-btn-secondary:disabled {
        opacity: .68;
        cursor: not-allowed;
        transform: none;
    }

.skan-auth-btn-secondary {
    color: var(--sk-auth-text);
    background: #fff;
    border: 1px solid var(--sk-auth-border);
}

    .skan-auth-btn-secondary:hover:not(:disabled) {
        border-color: rgba(15, 84, 140, .30);
        box-shadow: 0 12px 24px rgba(15, 23, 42, .06);
    }

.skan-auth-row-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin: 8px 0 16px;
}

.skan-auth-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 9px;
    color: #344054;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

    .skan-auth-check input,
    .skan-auth-check .form-check-input {
        margin-top: 2px;
        accent-color: var(--sk-auth-primary);
    }

.skan-auth-link {
    color: var(--sk-auth-primary);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
}

    .skan-auth-link:hover {
        text-decoration: underline;
    }

.skan-auth-progress {
    position: relative;
    margin: 4px 0 22px;
    padding: 0 8px;
}

.skan-auth-progress-line {
    position: absolute;
    left: 30px;
    right: 30px;
    top: 18px;
    height: 2px;
    background: rgba(15, 23, 42, .08);
}

.skan-auth-progress-fill {
    position: absolute;
    left: 30px;
    top: 18px;
    height: 2px;
    background: linear-gradient(135deg, var(--sk-auth-primary-dark), var(--sk-auth-primary));
    transition: width .22s ease;
}

.skan-auth-steps {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(var(--steps, 3), minmax(0, 1fr));
    gap: 10px;
}

.skan-auth-step {
    text-align: center;
}

.skan-auth-step-bubble {
    width: 36px;
    height: 36px;
    margin: 0 auto 8px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #667085;
    background: #edf2f7;
    font-size: 13px;
    font-weight: 950;
}

.skan-auth-step.active .skan-auth-step-bubble,
.skan-auth-step.done .skan-auth-step-bubble {
    color: #fff;
    background: linear-gradient(135deg, var(--sk-auth-primary-dark), var(--sk-auth-primary));
}

.skan-auth-step-title {
    color: #667085;
    font-size: 11px;
    font-weight: 850;
    line-height: 1.3;
}

.skan-auth-step.active .skan-auth-step-title,
.skan-auth-step.done .skan-auth-step-title {
    color: var(--sk-auth-text);
}

.skan-auth-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding: 2px 2px 8px;
}

.skan-auth-chip {
    border: 1px solid var(--sk-auth-border);
    border-radius: 999px;
    background: #fff;
    padding: 9px 12px;
    color: #344054;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: .16s ease;
}

    .skan-auth-chip:hover {
        border-color: rgba(0, 110, 100, .26);
        box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
    }

    .skan-auth-chip.active {
        color: var(--sk-auth-provider);
        background: rgba(174, 208, 221, .23);
        border-color: rgba(0, 110, 100, .30);
    }

.skan-auth-account-grid {
    padding: 10px 26px 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.skan-auth-account-card {
    border: 1px solid rgba(15, 23, 42, .08);
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    text-align: left;
    min-height: 190px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

    .skan-auth-account-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
    }

    .skan-auth-account-card.sk-client:hover {
        border-color: rgba(15, 84, 140, .35);
    }

    .skan-auth-account-card.sk-provider:hover {
        border-color: rgba(0, 110, 100, .35);
    }

.skan-auth-account-icon {
    width: 46px;
    height: 46px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 18px;
    margin-bottom: 13px;
    background: linear-gradient(135deg, var(--sk-auth-primary-dark), var(--sk-auth-primary));
    box-shadow: 0 12px 24px rgba(15, 84, 140, .16);
}

.skan-auth-account-card.sk-provider .skan-auth-account-icon {
    background: linear-gradient(135deg, var(--sk-auth-provider-dark), var(--sk-auth-provider));
    box-shadow: 0 12px 24px rgba(0, 110, 100, .16);
}

.skan-auth-account-title {
    color: var(--sk-auth-text);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 7px;
}

.skan-auth-account-description {
    color: var(--sk-auth-muted);
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
}

.skan-auth-account-footer {
    margin-top: 14px;
    color: var(--sk-auth-primary);
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.skan-auth-account-card.sk-provider .skan-auth-account-footer {
    color: var(--sk-auth-provider);
}

.skan-auth-bottom-link {
    padding: 2px 26px 28px;
    text-align: center;
    color: var(--sk-auth-muted);
    font-size: 14px;
    font-weight: 650;
}

    .skan-auth-bottom-link a {
        color: var(--sk-auth-primary);
        font-weight: 900;
        text-decoration: none;
    }

        .skan-auth-bottom-link a:hover {
            text-decoration: underline;
        }

.country-gate-backdrop,
.country-required-backdrop {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    background: rgba(2, 8, 23, .58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.country-gate-sheet,
.country-required-dialog {
    position: fixed;
    z-index: 2147483001;
    left: 50%;
    top: 50%;
    width: min(94vw, 590px);
    max-height: min(90vh, 780px);
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 30px;
    box-shadow: var(--sk-auth-shadow-strong);
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
    overflow: hidden;
}

.country-gate-head,
.country-required-head {
    position: relative;
    padding: 26px 24px 12px;
    text-align: center;
}

.country-gate-icon,
.country-required-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 14px;
    border-radius: 21px;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 24px;
    background: linear-gradient(135deg, var(--sk-auth-primary-dark), var(--sk-auth-primary));
    box-shadow: 0 16px 32px rgba(15, 84, 140, .24);
}

.country-gate-title,
.country-required-head h2 {
    margin: 0;
    color: #101828;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 950;
    letter-spacing: -.03em;
}

.country-gate-subtitle,
.country-required-head p {
    margin: 9px auto 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.55;
    max-width: 480px;
}

.country-gate-search-wrap,
.country-required-search {
    position: relative;
    padding: 12px 20px 8px;
}

    .country-gate-search-wrap i,
    .country-required-search i {
        position: absolute;
        left: 36px;
        top: 50%;
        transform: translateY(-50%);
        color: #98a2b3;
        pointer-events: none;
    }

    .country-gate-search,
    .country-required-search input {
        width: 100%;
        min-height: 50px;
        border: 1px solid rgba(15, 23, 42, .10);
        border-radius: 16px;
        padding: 0 14px 0 42px;
        background: #f9fafb;
        color: #101828;
        outline: none;
        font-size: 14px;
        font-weight: 650;
        transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }

        .country-gate-search:focus,
        .country-required-search input:focus {
            background: #ffffff;
            border-color: var(--sk-auth-primary);
            box-shadow: 0 0 0 4px rgba(15, 84, 140, .11);
        }

.country-gate-error,
.country-required-error {
    margin: 0 20px 8px;
    padding: 11px 13px;
    border-radius: 15px;
    color: #b42318;
    background: #fff4f4;
    border: 1px solid #fecaca;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.country-gate-list,
.country-required-list {
    overflow-y: auto;
    padding: 8px 20px 12px;
    overscroll-behavior: contain;
}

.country-gate-loading,
.country-required-empty {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #667085;
    font-size: 14px;
    font-weight: 800;
}

.country-gate-row,
.country-required-row {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    background: #ffffff;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

    .country-gate-row:hover,
    .country-required-row:hover {
        transform: translateY(-1px);
        border-color: rgba(15, 84, 140, .30);
        box-shadow: 0 12px 24px rgba(15, 23, 42, .07);
    }

    .country-gate-row.active,
    .country-required-row.active {
        border: 2px solid var(--sk-auth-primary);
        background: #eef7fc;
    }

    .country-gate-row-title,
    .country-required-row strong {
        display: block;
        color: #101828;
        font-weight: 900;
        font-size: 15px;
        line-height: 1.2;
    }

    .country-gate-row-sub,
    .country-required-row small {
        display: block;
        margin-top: 4px;
        color: #667085;
        font-size: 12px;
        font-weight: 750;
    }

    .country-gate-check,
    .country-required-row > i {
        color: var(--sk-auth-primary);
        font-size: 19px;
        flex: 0 0 auto;
    }

.country-gate-consent {
    padding: 0 20px 14px;
    display: grid;
    gap: 10px;
}

    .country-gate-consent label {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #344054;
        font-size: 13px;
        font-weight: 750;
        line-height: 1.45;
    }

    .country-gate-consent input {
        margin-top: 2px;
        accent-color: var(--sk-auth-primary);
    }

.country-gate-footer,
.country-required-actions {
    padding: 16px 20px 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.88), #ffffff);
    border-top: 1px solid rgba(15, 23, 42, .06);
}

.country-required-actions {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 10px;
}

.country-required-cancel,
.country-required-confirm {
    min-height: 50px;
    border-radius: 17px;
    font-weight: 900;
    cursor: pointer;
    border: 1px solid rgba(15, 23, 42, .10);
}

.country-required-cancel {
    background: #ffffff;
    color: #344054;
}

.country-required-confirm {
    border: 0;
    background: linear-gradient(135deg, var(--sk-auth-primary-dark), var(--sk-auth-primary));
    color: #ffffff;
}

    .country-required-confirm:disabled {
        opacity: .6;
        cursor: not-allowed;
    }

.country-required-lang {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: #eef4f8;
    border: 1px solid rgba(15, 84, 140, .14);
}

    .country-required-lang button {
        width: 40px;
        height: 32px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: #667085;
        font-size: 12px;
        font-weight: 950;
        cursor: pointer;
    }

        .country-required-lang button.active {
            background: linear-gradient(135deg, #003D59, #0F548C);
            color: #ffffff;
        }

.sk-lang-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 60;
}

.sk-lang {
    min-width: 58px;
    height: 44px;
    border: 1px solid rgba(15, 84, 140, .12);
    border-radius: 999px;
    background: #ffffff;
    color: #667085;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .04);
    transition: color .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

    .sk-lang:hover {
        color: #003D59;
        border-color: rgba(15, 84, 140, .28);
        box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
    }

.sk-lang-pop {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 168px;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .16);
}

    .sk-lang-pop::before {
        content: "";
        position: absolute;
        top: -6px;
        right: 22px;
        width: 12px;
        height: 12px;
        background: #ffffff;
        border-left: 1px solid rgba(15, 23, 42, .10);
        border-top: 1px solid rgba(15, 23, 42, .10);
        transform: rotate(45deg);
    }

.sk-lang-option {
    width: 100%;
    border: 0;
    background: transparent;
    border-radius: 13px;
    padding: 10px 11px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    color: #344054;
    font-weight: 900;
}

    .sk-lang-option small {
        color: #667085;
        font-size: 12px;
        font-weight: 750;
    }

    .sk-lang-option:hover,
    .sk-lang-option.active {
        background: #eef7fc;
        color: #003D59;
    }

        .sk-lang-option.active::after {
            content: "\f00c";
            font-family: FontAwesome;
            color: #0F548C;
            font-size: 12px;
        }

.sk-cookie-bar {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 2147482000;
    width: min(94vw, 860px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.sk-cookie-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #003D59, #0F548C);
    box-shadow: 0 12px 24px rgba(15, 84, 140, .20);
}

.sk-cookie-content {
    display: grid;
    gap: 3px;
    min-width: 0;
}

    .sk-cookie-content strong {
        color: #101828;
        font-size: 14px;
        font-weight: 950;
        line-height: 1.2;
    }

    .sk-cookie-content span {
        color: #667085;
        font-size: 13px;
        font-weight: 650;
        line-height: 1.4;
    }

.sk-cookie-accept {
    min-height: 42px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    background: linear-gradient(135deg, #003D59, #0F548C);
    color: #ffffff;
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(15, 84, 140, .20);
    white-space: nowrap;
}

    .sk-cookie-accept:disabled {
        opacity: .65;
        cursor: not-allowed;
    }

@media (prefers-color-scheme: dark) {
    :root {
        --sk-auth-bg: #07111f;
        --sk-auth-card: #0f172a;
        --sk-auth-text: #f8fafc;
        --sk-auth-muted: #cbd5e1;
        --sk-auth-soft: rgba(15, 84, 140, .20);
        --sk-auth-border: rgba(226, 232, 240, .13);
        --sk-auth-shadow: 0 22px 54px rgba(0, 0, 0, .32);
        --sk-auth-shadow-strong: 0 34px 90px rgba(0, 0, 0, .52);
    }

    .skan-auth-card,
    .skan-auth-account-card,
    .country-gate-sheet,
    .country-gate-row,
    .country-required-dialog,
    .country-required-row {
        background: #0f172a;
        border-color: rgba(226, 232, 240, .12);
    }

    .skan-auth-input,
    .skan-auth-select,
    .skan-auth-textarea,
    .country-gate-search,
    .country-required-search input {
        background: rgba(255, 255, 255, .04);
        color: var(--sk-auth-text);
        border-color: rgba(226, 232, 240, .12);
    }

        .skan-auth-input:focus,
        .skan-auth-select:focus,
        .skan-auth-textarea:focus,
        .country-gate-search:focus,
        .country-required-search input:focus {
            background: rgba(255, 255, 255, .07);
        }

        .skan-auth-input:disabled,
        .skan-auth-select:disabled,
        .skan-auth-textarea:disabled {
            background: rgba(255, 255, 255, .06);
        }

    .skan-auth-btn-secondary,
    .country-required-cancel {
        background: rgba(255, 255, 255, .04);
        color: var(--sk-auth-text);
    }

    .skan-auth-check,
    .country-gate-consent label {
        color: #e2e8f0;
    }

    .country-gate-title,
    .country-gate-row-title,
    .country-required-head h2,
    .country-required-row strong {
        color: #f8fafc;
    }

    .country-gate-subtitle,
    .country-gate-row-sub,
    .country-gate-loading,
    .country-required-head p,
    .country-required-row small,
    .country-required-empty {
        color: #cbd5e1;
    }

    .country-gate-row.active,
    .country-required-row.active {
        background: rgba(15, 84, 140, .24);
    }

    .country-gate-footer,
    .country-required-actions {
        background: linear-gradient(180deg, rgba(15, 23, 42, .86), #0f172a);
        border-top-color: rgba(226, 232, 240, .08);
    }
}

@media (max-width: 760px) {
    .skan-auth-page {
        padding: 16px 10px 56px;
    }

    .skan-auth-card,
    .skan-auth-card-wide {
        border-radius: 24px;
    }

    .skan-auth-head {
        padding: 22px 18px 10px;
    }

    .skan-auth-body {
        padding: 12px 18px 22px;
    }

    .skan-auth-grid,
    .skan-auth-account-grid {
        grid-template-columns: 1fr;
    }

    .skan-auth-account-grid {
        padding: 8px 18px 16px;
    }

    .skan-auth-account-card {
        min-height: 168px;
    }

    .skan-auth-row-between {
        align-items: flex-start;
        flex-direction: column;
    }

    .country-gate-sheet,
    .country-required-dialog {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-height: 90vh;
        transform: none;
        border-radius: 30px 30px 0 0;
    }

    .country-gate-head,
    .country-required-head {
        padding: 23px 18px 10px;
    }

    .country-gate-search-wrap,
    .country-gate-list,
    .country-gate-consent,
    .country-gate-footer,
    .country-required-search,
    .country-required-list,
    .country-required-actions {
        padding-left: 16px;
        padding-right: 16px;
    }

        .country-gate-search-wrap i,
        .country-required-search i {
            left: 32px;
        }

    .sk-cookie-bar {
        left: 10px;
        right: 10px;
        bottom: 10px;
        width: auto;
        transform: none;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .sk-cookie-accept {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 430px) {
    .skan-auth-steps {
        gap: 4px;
    }

    .skan-auth-step-title {
        font-size: 10px;
    }

    .skan-auth-step-bubble {
        width: 32px;
        height: 32px;
        border-radius: 12px;
    }

    .skan-auth-progress-line,
    .skan-auth-progress-fill {
        top: 16px;
    }

    .country-required-actions {
        grid-template-columns: 1fr;
    }
}

.sk-lang-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 2147482100;
}

.sk-lang-pop {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    padding: 8px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 22px 54px rgba(15, 23, 42, .16);
    z-index: 2147482101;
}

.sk-lang-country {
    margin-top: 5px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.sk-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147482000;
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 -18px 54px rgba(15, 23, 42, .13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: none;
}

.sk-cookie-inner {
    width: min(100%, 1260px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

@media (max-width: 760px) {
    .sk-cookie-bar {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 10px;
        transform: none;
    }

    .sk-cookie-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .sk-cookie-accept {
        grid-column: 1 / -1;
        width: 100%;
    }
}

.sk-cookie-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2147482000;
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid rgba(15, 23, 42, .10);
    box-shadow: 0 -18px 54px rgba(15, 23, 42, .13);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: none;
}

.sk-cookie-inner {
    width: min(100%, 1260px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
}

.sk-lang-menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 2147482100;
}

.sk-lang-pop {
    z-index: 2147482101;
    min-width: 210px;
}

.sk-lang-country {
    margin-top: 5px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

@media (max-width: 760px) {
    .sk-cookie-bar {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 10px;
        transform: none;
    }

    .sk-cookie-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .sk-cookie-accept {
        grid-column: 1 / -1;
        width: 100%;
    }
}
.country-required-actions-single {
    grid-template-columns: 1fr;
}
