.exit-intent-popup {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(33,33,33,.6);
	transform: translateY(60%) scale(0);
    transition: transform .3s cubic-bezier(.4,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 {

	border-radius: 2px;
    box-shadow: 0 4px 10px 0 rgb(33 33 33 / 50%);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #ffffff!important;
    color: #354553;
    max-width: 500px;
	}

.newsletter p{
	line-height:25px;
	}

.newsletterpopuplogo {
	background: #002f6c;
	padding-top: 15px;
	padding-bottom: 15px;
	}


.close {
    font-size: 16px;
    border-radius: 2px;
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 12px 10px 10px 10px;
    cursor: pointer;
    background: #8dc53f;
    height: 12px;
    width: 12px;
    line-height: 9px;
    text-align: center;
}