.exit-intent-popup, .exit-intent-popup-m {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(60%) scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

    .exit-intent-popup.visible, .exit-intent-popup-m.visible {
        transform: translateY(0) scale(1);
    }

.newsletter, .newsletter-m {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Popup-specific styles */
.newsletter {
    padding: 50px;
    border-radius: 3px;
}

.newsletter-m {
    padding: 30px;
    border-radius: 3px;
    width:80%;
}
