.open-my-popup {
    cursor: pointer;
    color: #fff;
    background: #046bd2;
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.open-my-popup:hover {
    color: #046bd2;
    background: #fff;
    border: 1px solid #046bd2;
}

.custom-modal-overlay {
    position: fixed;
    top: 30px; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none; /* Скрыто */
    align-items: center; 
    justify-content: center;
}


.main-modal-window {}
.fiz-modal-window {}
.yur-modal-window {}


.custom-modal-overlay.is-active {
    display: flex !important;
}


.custom-modal-container {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    max-width: 550px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.custom-modal-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none; border: none;
    font-size: 32px; cursor: pointer; color: #333; line-height: 1;
}
.custom-modal-close:hover { color: #000; }
.modal-title { margin-top: 0; text-align: center; }
.modal-text { text-align: center; }
.modal-buttons-wrapper { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.popup-trigger-btn { 
    padding: 10px 20px; 
    cursor: pointer; 
    width: 225px;
    border-radius: 10px;
}