﻿#browser-language-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    padding: 10px;
    background-color: rgba(0, 0, 0, .7);
}

#browser-language-popup {
    position: relative;
    z-index: 101;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    border-radius: 24px;
    background-color: #fff;
}

#blp-close {
    display: block;
    width: 20px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    margin-bottom: 16px;
    cursor: pointer;
}

#blp-close path {
    fill: #a0b0c0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#browser-language-popup .blp-text {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    color: #777f86;
}

#browser-language-popup strong {
    font-weight: 600;
    color: #040404;
}

#browser-language-popup .blp-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

#browser-language-popup .blp-button {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #c6c9cd;
    background-color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    color: #383f46;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

#browser-language-popup .blp-button .blp-lang-code {
    padding: 6px;
    min-width: 34px;
    border-radius: 6px;
    background-color: #02ad49;
    border: 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
    #blp-close:hover path {
        fill: #252A2E;
    }

    #browser-language-popup .blp-button:hover {
        border-color: #02ad49;
        background-color: #02ad49;
        color: #fff;
    }

    #browser-language-popup .blp-button:hover .blp-lang-code {
        background-color: #fff;
        color: #02ad49;
    }
}

@media (max-width: 767px) {
    #browser-language-popup {
        max-width: 320px;
        padding: 20px;
    }

    #browser-language-popup .blp-buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 20px;
    }

    #browser-language-popup .blp-text {
        font-size: 16px;
    }

    #browser-language-popup .blp-button {
        position: relative;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 10px;
    }

    #browser-language-popup .blp-button .blp-lang-code {
        font-size: 12px;
    }
}
