#ouibounce-modal{
    font-family:'Open Sans',sans-serif;
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 9999;
}
#ouibounce-modal .underlay{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    background-color:rgba(0,0,0,.5);
    cursor:pointer;
    -webkit-animation:fadein .5s;
    animation:fadein .5s
}
#ouibounce-modal .exit-modal{
    width:55%;
    height:546px;
    background-color:#fff;
    z-index:1;
    position:absolute;
    margin:auto;
    top:0;
    right:0;
    bottom:0;
    left:0;
    border-radius:4px;
    -webkit-animation:popin .3s;
    animation:popin .3s
}

@media screen and (max-width:480px){
#ouibounce-modal .exit-modal{
    width:90%;
    }
}
.modal-footer{
    margin-top: -16px;
    float: right;
    text-align: center;
    width: 34px;
    height: 34px;
    font-size: 16px;
    line-height: 12px;
    padding: 11px;
    cursor: pointer;
    border-radius: 20px;
    background-color:#d6d6d6;
    color: #333;
    border-top: 0px solid #e5e5e5 ! important;
    webkit-box-shadow: inset 0 0px 0 #ffffff;
    -moz-box-shadow: inset 0 0px 0 #ffffff;
    box-shadow: inset 0 0px 0 #ffffff;    
}
.modal-footer:hover{
    background-color:#333;
    color: #d6d6d6; 
    transition:0.5s;   
}

@-webkit-keyframes fadein{
    0%{
        opacity:0
    }
    100%{
        opacity:1
    }
}
@-ms-keyframes fadein{
    0%{
        opacity:0
    }
    100%{
        opacity:1
    }
}
@keyframes fadein{
    0%{
        opacity:0
    }
    100%{
        opacity:1
    }
}
@-webkit-keyframes popin{
    0%{
        -webkit-transform:scale(0);
        transform:scale(0);
        opacity:0
    }
    85%{
        -webkit-transform:scale(1.05);
        transform:scale(1.05);
        opacity:1
    }
    100%{
        -webkit-transform:scale(1);
        transform:scale(1);
        opacity:1
    }
}
@-ms-keyframes popin{
    0%{
        -ms-transform:scale(0);
        transform:scale(0);
        opacity:0
    }
    85%{
        -ms-transform:scale(1.05);
        transform:scale(1.05);
        opacity:1
    }
    100%{
        -ms-transform:scale(1);
        transform:scale(1);
        opacity:1
    }
}
@keyframes popin{
    0%{
        -webkit-transform:scale(0);
        -ms-transform:scale(0);
        transform:scale(0);
        opacity:0
    }
    85%{
        -webkit-transform:scale(1.05);
        -ms-transform:scale(1.05);
        transform:scale(1.05);
        opacity:1
    }
    100%{
        -webkit-transform:scale(1);
        -ms-transform:scale(1);
        transform:scale(1);
        opacity:1
    }
}


/* input focus effects css */

:focus{outline: none;}

#ouibounce-modal input[type="text"], input[type="date"],  select{
    color: #333;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.effect-16{
    border: 0; 
    padding: 4px 0;
    border-bottom: 1px solid #ccc; 
    background-color: transparent;
    width: 100%;
}

.effect-16 ~ .focus-border{
    position: absolute;
    bottom: 0;
    left: 12px;
    width: 0;
    height: 2px;
    background-color: #3399FF;
    transition: 0.4s;
}
.effect-16:focus ~ .focus-border,
.has-content.effect-16 ~ .focus-border{
    width:96%;
    transition: 0.4s;
}
.effect-16 ~ label{
    position: absolute;
    left: 0;
    width: 100%;
    top: 9px;
    color: #aaa;
    transition: 0.3s;
    z-index: -1;
    letter-spacing: 0.5px;
    left: 12px;
}
.effect-16:focus ~ label, .has-content.effect-16 ~ label{
    top: -16px;
    font-size: 12px;
    color: #3399FF;
    transition: 0.3s;
}

.effect-16:focus ~ label:active{
   background-color: #000;
}

.form-date-time{
    margin-top: 10px;
    margin-left:15px;
    width: 96%;
    color: #aaa;
    font-size: 16px;
}