.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    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 {
    border-radius: 2px;
    box-shadow: 0 4px 10px 0 rgba(33,33,33,.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    background: #ebb811;
    color: #221f22;
    min-width: 400px;
    min-height: 200px;
    text-align:center;
    border-radius: 20px;

}

.newsletter-title {
font-size: 20px;
margin-bottom: 30px;
}

.newsletter-subtitle {
font-size: 20px;
}

#popup-contact-container {
    margin-top: 20px !important;
}

.submit-popup {
   background-color:#444 !important;
   color:#fff !important;
}

.submit-popup:hover {
   background-color:white !important;
   color:#444 !important;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.7;
    cursor: pointer;
    font-size: 18px;
    background-image: url("../images/icons/close-popup.svg");
    width:16px;
    height: 16px;
}
