/* ------------------------------------------------------ */
/* GeoIP Popin
/* @type layout
/* ------------------------------------------------------ */

.pop-lang__main-container {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
}

.pop-lang__box {
    display: none;
    background: white;
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    max-width: calc(100% - 30px);
    z-index: 999999;
    padding: 50px;
}

.pop-lang__main-title {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    font-weight: bold;
}

.pop-lang__header-close {
    position: absolute;
    right: -10px;
    top: -10px;
    cursor: pointer;
    transform: translate(100%, -100%);
    border: none;
    background: none;
    padding: 0;
    outline: none;
}

.pop-lang__button span,
.pop-lang__header-close svg {
    pointer-events: none;
}

.pop-lang__header-close:hover {
    opacity: 0.6;
}

.pop-lang__main-text {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
}

.pop-lang__main-text .link {
    text-decoration: underline;
}

.pop-lang__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pop-lang__header-close {
        right: 0;
        transform: translate(0, -100%);
    }

    .pop-lang__box {
        padding: 30px;
    }
}
