#region-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: block;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#region-popup {
    background: #f5f1ed;
    max-width: 490px;
    height: 290px;
    width: 90%;
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-top: 100px;
}
.region-popup-top {
    height: 23px;
    position: relative;
    background-color: #CDC4BB;
}
.region-popup-close {
    position: absolute;
    right: 6px;
    top: 5px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 14px;
    height: 14px;
    font-weight: 600;
    line-height: 14px;
}
.region-popup-container {
    padding: 55px 41px 15px;
}
.region-popup-text {
    margin-bottom: 40px;
    color: #333;
    font-size: 14px;
}

.region-popup-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.region-popup-actions button,
.region-popup-actions a {
    padding: 10px 18px;
    font-size: 13px;
    border: 1px solid #8B847A;
    cursor: pointer;
    background: #CDC5B8;
    margin: 0 10px;
    display: block;
    line-height: 100%;
    font-weight: 600;
    text-decoration: none;
    min-width: 170px;
}
.region-popup-actions button:hover,
.region-popup-actions a:hover {
    background: #fff;
    text-decoration: none;
}
@media (max-width: 849px) {
    .region-popup-actions {
        flex-direction: column;
        gap: 15px;
    }
}
