.modal{
    background: #fff;
    z-index:10101;
}
.modal button.close {
    opacity: 1;
}
.modal button.close:hover{
    opacity: 1;
}
.modal .modal-header,
.modal .modal-footer{
    border: 0;
}
.modal .modal-header{
    padding: 30px 30px 15px;
}
.modal .modal-footer{
    padding: 0 30px 15px;
}
.modal .modal-body {
    padding: 15px 30px 0;
}
.modal input:not([type=checkbox]):not([type=radio]).form-control{
    background: #FFFFFF;
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    box-shadow: none;
    height: 48px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-blue);
}
.modal input:not([type=checkbox]):not([type=radio]).form-control:focus{
    border-color: var(--blue);
}
.modal label {
    font-weight: 500;
    font-size: 14px;
    line-height: 13px;
    color: var(--dark-blue);
    margin-bottom: 5px;
    width: 100%;
    display: block;
}
.modal .terms-use label a {
    color: var(--blue);
}
.modal .intl-tel-input{
    max-width: 100%;
    width: 100%;
}
.modal textarea{
    resize: none;
    min-height: 180px;
    box-shadow: none;
    background: #FFFFFF;
    border: 1px solid var(--light-blue);
    border-radius: 6px;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: var(--dark-blue);
}
.modal textarea:focus{
    border-color: var(--blue);
    box-shadow: none;
}
.modal .modal-title {
    font-weight: 500;
    font-size: 24px;
    line-height: 26px;
    color: var(--blue);
}
.modal.large-modal .modal-dialog{
    width: calc(100vw - 60px);
    margin: 30px auto;
}
.modal.large-modal .modal-content {
    height: calc(100vh - 60px);
    overflow-y: auto;
    min-height: 320px;
}
.modal.flt_more .modal-dialog{
    max-width: 420px;
    width: 100%;
}
.modal.flt_more .modal-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 20px;
    position: sticky;
    bottom: 0;
    background: #fff;
    width: 100%;

}
.modal.flt_more .modal-footer > button {
    height: 40px;
    border-radius: 6px;
    flex-grow: 1;
}
.modal.flt_more .modal-footer > button:first-of-type{
    margin-right: 10px;
}
.modal .modal-footer .checkbox input[type=checkbox]{
    -webkit-transform: scale(1.4,1.4);
    margin-top: 0px;
    margin-left: -25px;
}
@media(max-width: 767px){
    .modal .modal-footer .checkbox input[type=checkbox]{
        margin-top: 2px;
    }
    .modal .modal-body {
        padding: 20px;
    }
    .modal .modal-header {
        padding: 25px 20px 15px;
    }
    .modal .modal-title {
        font-size: 20px;
        line-height: 18px;
    }
    .modal label {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 5px;
    }
    .modal.large-modal .modal-dialog {
        width: auto;
        margin: 10px;
    }
    .modal .terms-use label {
        font-size: 13px !important;
        line-height: 16px !important;
    }
    .modal.large-modal .modal-content {
        height: calc(100vh - 20px);
    }
    .modal textarea {
        min-height: 90px;
        font-size: 16px;
    }
    .modal input:not([type=checkbox]):not([type=radio]).form-control{
        font-size: 16px;
    }
    .modal .form-group{
        margin-bottom: 25px;
    }
}
@media(max-width: 480px){
    .modal .blue_btn_rq{
        max-width: 100%;
        width: 100%;
    }
    .modal.flt_more .modal-dialog{
        margin: 0;
        border-radius: 0;
    }
    .modal.flt_more .modal-content{
        border-radius: 0;
    }
}
