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

.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: #FFF;
    padding: 10px;
    border-radius: 10px;
	width: 650px;
	height: 350px;
	/*
	background-image: url('https://supertech.pl/img/slider/promo-serwery.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center; 
	*/
	border: 1px solid #000;
	-webkit-box-shadow: -3px 0px 24px 0px rgba(66, 68, 90, 1);
	-moz-box-shadow: -3px 0px 24px 0px rgba(66, 68, 90, 1);
	box-shadow: -3px 0px 24px 0px rgba(66, 68, 90, 1);
}
.popup_content {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	width: 100%;
	padding: 10px;
	text-align: center;
}

.close {
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    width: 100px;
    height: 20px;
}