.ct-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);
}

.ct-exit-intent-popup-close {
    position: absolute;
    right: 3px;
    top: 3px;
    padding: 6px 10px;
    cursor:pointer;
    transition: all .2s;
}

.ct-exit-intent-popup-close:hover {
    font-weight:bold;
}

.ct-exit-intent-popup.visible {
    transform: translateY(0) scale(1);
}

.newsletter {
    position: absolute;
    top: 50%;
    left: 50%;
    color:white;
    transform: translate(-50%, -50%);
}

.newsletter-target{
    position: absolute;
    border: solid red;
    width: 50%;
    margin-left: 50%;
    height: 50px;
    bottom: 5%;
}