.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    background: #333;
    transform: translateY(60%) scale(0);
    transition: transform 0.3s linear (0.5);
}

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

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

/* Popup-specific styles */
.newsletter {
    background: #000;
    padding: 1px;
    width: 700px;
    height: 390px;
}

.close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	z-index: 50000;
}

