#exitIntentPopup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    opacity: 0;
    transition: all .3s;
    background-color: rgba(0, 0, 0, .8);
    z-index: 999999
}

#exitIntentPopup.show {
    pointer-events: auto;
    opacitY: 1
}

#exitIntentPopup .exitIntentClose {
    width: 30px;
    height: 30px;
    background-color: black;
    border: 2px solid #fff;
    position: absolute;
    right: -15px;
    top: -15px;
    transition: all .3s;
    cursor: pointer;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-align: center;
    border-radius: 15px;
    line-height: 26px;
    display: block
}

#exitIntentPopup .exitIntentClose:hover,
#exitIntentPopup .exitIntentClose:focus,
#exitIntentPopup .exitIntentClose:active {
    text-decoration: none;
    background-color: #053c65;
    color: #fff!important
}

#exitIntentPopup .popup-content {
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
    max-width: 500px;
    border: 1px solid #fff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

#exitIntentPopup .popup-content .popup-hero {
    background-size: cover;
    background-position: center center;
    padding: 30px
}

#exitIntentPopup .popup-content .popup-hero .hero-heading {
    font-weight: bold;
    font-size: 20px;
    color: #053c65;
    margin-bottom: 20px
}

#exitIntentPopup .popup-content .popup-hero .logo-row {
    margin-bottom: 20px
}

#exitIntentPopup .popup-content .popup-hero .logo-row img {
    max-width: 120px;
    height: auto;
    width: 100%
}

#exitIntentPopup .popup-content .popup-hero .logo-row .big {
    padding-left: 10px;
    font-size: 25px;
    font-weight: bold;
    color: #053c65
}

#exitIntentPopup .popup-content .popup-hero .usps {
    font-weight: bold;
    color: #fff;
    font-size: 14px
}

#exitIntentPopup .popup-content .popup-footer {
    padding: 30px;
    text-align: center
}

#exitIntentPopup .popup-content .popup-footer .footer-title {
    margin-bottom: 15px;
    color: #053c65;
    font-size: 18px
}

#exitIntentPopup .popup-content .popup-footer .form-control {
    margin-bottom: 15px;
    font-size: 14px;
    background-color: #f7f7f7;
    box-shadow: none
}

#exitIntentPopup .popup-content .popup-footer .btn.btn-default {
    border-radius: 4px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    display: block;
    clear: both;
    width: 100%;
    text-align: center;
    height: auto;
    line-height: 1;
    padding: 15px 20px
}