.lang-select {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 59, 70, .7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
.lang-select__popup {
    position: relative;
    width: 100%;
    max-width: 466px;
    margin: 20px;
    padding: 48px 40px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 40px rgba(0, 0, 0, .25);
}
.lang-select__close {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}
.lang-select__title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #3B3B46;
    text-align: center;
    margin: 0 0 32px;
}
.lang-select__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.lang-select__link {
    display: block;
    padding: 18px;
    background: #F2F2F4;
    border-radius: 10px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #3B3B46;
    text-align: center;
    text-decoration: none;
    transition: background .2s;
}
.lang-select__link:hover {
    background: #EBEBED;
}
@media (max-width: 767px) {
    .lang-select__popup {
        padding: 40px 24px 32px;
    }
    .lang-select__title {
        font-size: 22px;
        margin-bottom: 24px;
    }
}
