/*---------------------- modal start ----------------------- */
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 99999;
    padding: 0px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

 .removeBodyPadding.modal-open {
    overflow: auto;
 }
 .removeBodyPadding{
     padding-right: 0px !important;
 }
    #myModal {
        padding-right: 0px !important;
    }

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;

}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close img {
    width: 15px;
    height: 20px;
}

/*===================== Modal Content ===============*/
.modal-content {
    background-color: white;
    border-radius: 10px;
    margin: auto;
    /* width: 40%; */
}

.modal-content p {
    color: black;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.modal_header {
    padding: 20px 30px;
    border-radius: 10px 10px 0px 0px;
    background-color: rgb(255, 255, 255);

}

.red-star {
    color: red;
    padding-right: 4px;
}

#modalContactForm {
    padding: 10px 30px 30px 30px;
}

.existing-customer {
    margin-bottom: 20px;
    display: flex
}

#existingCustomerfield {
    /* width: 40%; */
    width: 60%;
}

#existingCustomerfieldValues {
    /* width: 40%; */
    width: 80%;
}

#modalContactForm .form-control {
    background-color: transparent;
    outline: none;
    border: none;
    border-bottom: 1px solid rgb(184, 183, 183);
    border-radius: 0px;
    padding-bottom: 15px;
}

#modalContactForm .form-control:focus {
    box-shadow: none !important;
    border-color: rgb(184, 183, 183) !important;
}

#modalContactForm .contact-btn {
    background-color: #293275;
    color: white;
    border: none;
    font-size: 16px;
    padding: 12px 0px;
    margin-top: 15px;
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease-in-out;
}

#modalContactForm .contact-btn:hover {
    background-color: #11184d;

}
.form-div{
    margin-bottom: 2rem;
}
#message {
    height: 120px;
}
#contactFormModal{
    padding-right: 0px !important;
}

@media screen and (max-width: 800px) {
    .modal-content {
        width: 90%;
    }
    #modalContactForm{
        padding: 10px 20px 20px 20px !important;
    }

    .existing-customer {
        flex-direction: column;
    }

    #existingCustomerfield {
        width: 100%;
    }

    #existingCustomerfieldValues {
        width: 100%;
        margin-top: 10px;
        margin-left: 15px;
    }
    #message {
        height: 100px;
    }
}

@media (min-width: 576px)
{
.modal-dialog {
    max-width: 600px !important;
}
}

.modalContactFormPrivacyText h6{
    font-size: 13px;
    line-height: 22px;
    color: black;
    margin-bottom: 0px;
}
.modalContactFormPrivacyText a{
    color: blue;
}
.modalContactFormPrivacyText a:hover{
    color: #ea5b21;
}