
/* The Modal (background) */
.modal-enquiry-product {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-enquiry-product-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
    /* position: relative; */
}
/* The Close Button */
.close-enquiry-product {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -15px;
    margin-right: -15px;
    /* position: absolute;
    top: 25px;
    right: 20px; */
}
.close-enquiry-product:hover,
.close-enquiry-product:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.enquiry_form {margin: 0 auto; width: 80%;}
.enquiry_label{width: 100%;  text-align: left; font-weight: normal;}
.enquiry_label span {color: red;}
input.enquiry_content {width: 100%;}
input#enquiry_email, textarea#enquiry_content {width: 100%;}
textarea#enquiry_content{ min-height: 100px;}
.enquiry_title_part{font-size: 16px; font-weight: bold;margin-bottom: 10px}
.enquiry_content_part, .enquiry_email_part, .enquiry_button_part {margin-top: 10px;}
button#enquiryProductBtn {background: #F3811D;border: none;padding: 10px 50px;color: white;font-weight: bold; margin-top: 15px;display: block}
button#submitEnquiryBtn{background: #F3811D;border: none;padding: 10px 30px;color: white;font-weight: bold;}
.enquiry_error{color: #DA251D;}
.enquiry_loader {display: none;}
#enquiryProduct{z-index: 999;vertical-align: middle;}
textarea#enquiry_content {resize: none;}
.modal-enquiry-product-content{
    z-index: 999;
}
@media only screen and (max-width: 1400px) {
    .modal-enquiry-product-content {
        margin: 15% auto;
        width: 50%;
    }
}
@media only screen and (max-width: 700px) {
    .modal-enquiry-product-content {
        font-size: 13px !important;
        margin: 10% auto;
        width: 60%;
    }
}
@media only screen and (max-width: 600px) {
    .modal-enquiry-product-content {
        margin: 5% auto;
        width: 80%;
    }
}
@media only screen and (max-width: 420px) {
    .modal-enquiry-product-content {
        margin: 2% auto;
        width: 90%;
    }
}

