#termsModal{
    text-align: center;
    min-width: 320px;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: 0;
    z-index: -1;
}
#termsModal::before{
    display: inline-block;
    vertical-align: middle;
    content: " ";
    height: 100%;
}
#termsModal .modal-dialog {
     display: inline-block;
    text-align: left;
    vertical-align: middle;
    width: 600px;
    margin: 30px auto;
    position: relative;
}
#termsModal .modal-content{
     border: 0;
    position: relative;
    background-color: #fff;
    border-radius: 2px;
    background-clip: padding-box;
    outline: 0;
}
#termsModal .modal-header {
    color: #fff;
    background-color: #0c4c8c;
    border-radius: 0;
    font-size: 1.4rem;
    padding: 0.8rem 1rem 0.8rem 1rem;
    padding-left: 17px;
    border-bottom: 1px solid #e5e5e5;
}
#termsModal .modal-content .fancy-form {
    margin-bottom: 17px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
#termsModal.modalterms .modal-body {
    padding: 25px;
    position: relative;
    font-family: Lato, sans-serif;
    font-size: 17px;
    color: #575657;
}
#termsModal.modalterms .modal-body a{
    color:rgb(22, 90, 162);
}
#termsModal.modalterms .modal-body label{
    position: relative;
    display: inline-block;
    max-width: 100%;
    font-weight: bold;
    height: auto;
    margin: 3px 0 0;
    margin-top: 5px;
}
#termsModal .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
#termsModal .modal-footer button{
    color: #fff;
    background-color: #0c4c8c;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    padding: 12px 32px;
    text-transform: uppercase;
    white-space: normal;
    border: 0;
    border-radius: 0;
}

@media all and (max-width: 767px) {
    #termsModal .modal-dialog{
        width: 90%;
    }
    #termsModal .modal-dialog .modal-title{
        font-size: 18px;
        margin: 12px 0;
    }
    #termsModal .modal-dialog .modal-body{
        padding: 15px;
    }
    #termsModal .modal-dialog .modal-body p{
        margin-top: 0;
        font-size: 15px;
    }
    #termsModal .modal-dialog .modal-body label{
        font-size: 15px;
    }
}