/* popup */
.popup_wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    z-index: 10;
}

.popup_wrapper--active {
    display: flex;
}

.popup {
    position: relative;
    max-width: 750px;
    padding: 37px 40px;
    background-color: #FFFFFF;
}

.popup_content {
    display: flex;
    flex-direction: column;
}

.popup_title {
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    position: relative;
    margin-bottom: 70px;
    color: #203d5d;
    text-align: center;
}

.popup_title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: calc(50% - 50px);
    background-color: #01aaff;
    width: 100px;
    height: 6px;
}

.popup_text {
    margin-bottom: 40px;
    padding: 0 40px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.popup_cross_button {
    position: absolute;
    top: 43px;
    right: 40px;
    cursor: pointer;
    z-index: 11;
    background-color: inherit;
    border: none;
}

.popup_cross_button:hover {
    color: #01aaff;
}

.popup .language_tabs {
    gap: 20px;
}

@media (max-width: 768px) {
    .popup_wrapper {
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    .popup {
        padding: 28px;
    }

    .popup_text {
        padding: 0;
    }
}