.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 16px;
}

.popup__close {
    position: absolute;
    top: 35px;
    right: 40px;
    cursor: pointer;
}

.popup_title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

