/* --- VPN NOTICE --- */

.vpn-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200000;
    background-color: #ffeb59;
    border-bottom: 1px solid #e6d33d;
}

.vpn-notice .wrapper {
    padding-top: 0;
    padding-bottom: 0;
}

.vpn-notice__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    min-height: 46px;
}

.vpn-notice__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.vpn-notice__text {
    flex: 1;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #2f2f2f;
    margin: 0;
}

.vpn-notice__text strong {
    font-weight: 700;
}

.vpn-notice__close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    background: rgba(0, 0, 0, 0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #2f2f2f;
    transition: background 0.2s ease;
    margin-left: auto;
}

.vpn-notice__close:hover {
    background: rgba(0, 0, 0, 0.14);
}

#vpn-notice-spacer {
    height: 0;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .vpn-notice__text {
        font-size: 12px;
    }

    .vpn-notice__inner {
        gap: 10px;
        padding: 10px 0;
    }
}

/* --- / VPN NOTICE --- */
