.exit-popup{
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 999999;
    width: 100%;
    background: rgba(0,0,0,0.5);
    text-align: center;
    line-height: 1;
    overflow: auto;
}
.exit-popup .popup-container {
   min-width: 770px;
   background: #fff;
   /* padding: 30px; */
   border-radius: 4px;
   position: absolute;
   left: 50%;
   top: 50%;
   -webkit-transform: translate(-50%, -50%);
       -ms-transform: translate(-50%, -50%);
           transform: translate(-50%, -50%);
   overflow: auto;
}
.exit-popup .popup-header {
    padding: 50px 15px 40px;
    color: #0d2c58;
}
.exit-popup .popup-header p{
    font-size: 36px;
    margin-bottom: 0;
    line-height: 45px;
}
.exit-popup .popup-title {
    font-weight: bold;
}
.exit-popup .popup-text {
}

.exit-popup .close-popup{
    position:absolute;
    right:0;
    top:0;
    margin: 10px;
    line-height: initial;
    cursor: pointer;
    color: #2178b2;
}

.exit-popup .dont-show-again{
    
font-size: 12px;
    
color: #fff;
    
text-decoration: underline;
    
/* margin-top: 30px; */
    
cursor: pointer;
    
display: inline-block;
}

.exit-popup .popup-body{
    
background: #2178b2;
    
padding: 50px 20px 20px;
}

.exit-popup #form_1{
    /* background:#2178b2; */
    /* padding: 50px 20px 0; */
}

.exit-popup #form_1 .columns{
    float:right;
}

.exit-popup #form_1 input{
    box-shadow: none;
    padding: 10px;
    border: none;
    margin-bottom: 10px;
    border-radius: 3px;
}

.exit-popup #form_1 input[type=submit]{
    
color: #fff;
    
background: #0c2850;
    
border: none;
    
width: 100%;
}

.exit-popup #form_1 .checkbox{
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    margin-bottom: 20px;
}

.exit-popup #form_1 [type=checkbox]{

margin: 0;

margin-left: 2px;

position: relative;

top: 2px;
}

.exit-popup #form_1 .thanks-text{
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 30px;
    color: #fff;
}

@media (max-width:830px){
    .exit-popup .popup-container{
        left: 20px;
        top: 20px;
        right: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        min-width: initial;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
   }

    .exit-popup .popup-text{
        font-size: 26px;
   }
}

.exit-popup .popup-call-now{
    background: #0d2c58;
    display: none;
    color:#fff;
    border-radius:3px;
    padding:10px;
    margin-bottom:5px;
}
@media (max-width:639px){
    .exit-popup .popup-container{
        max-width: 250px;
        background: #edeef0;
    }
    .exit-popup #form_1{
        display: none;
    }
    .exit-popup .popup-text{
        display:none;
    }
    .exit-popup .popup-header{
        padding: 20px 15px 0;
    }
    .exit-popup .popup-body{
        background: #edeef0;
        padding: 10px 20px;
    }
    .exit-popup .popup-header p{
        font-size: 19px;
        line-height: 24px;
    }
    .exit-popup .popup-call-now{
        display:block;
    }
    .exit-popup .popup-call-now i{
        vertical-align: middle;
        margin-left: 5px;
        transform: scaleX(-1);
        font-size: 18px;
    }
    .exit-popup .dont-show-again{
        color:#000;
    }
    .exit-popup .popup-container{
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        right:initial;
        bottom: initial;
        width: 250px;
    }
}