.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: auto;
}

.popup-overlay.active {
    visibility: visible;
}


.popup-content {
    max-width: 90%;
    max-height: 90%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}


.popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-weight: bold;
    text-align: center;
}


.popup-close:hover {
    color: red;
}

.elementor-control-animation_duration {
    display: block !important;

}
#custom-modal.hide {
    display: none;
}

#custom-modal.show {
    display: flex;
}
