.irt-cf7-popup-overlay {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.irt-cf7-popup-modal {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999;
    background: rgb(235 242 237 / 90%);
    padding: 32px 24px;
    border-radius: 8px;
    max-width: 500px;
    width: 90vw;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.irt-cf7-popup-overlay.active,
.irt-cf7-popup-modal.active {
    display: block;
}
@media (max-width: 600px) {
    .irt-cf7-popup-modal {
        padding: 16px 4px;
        max-width: 98vw;
    }
}
