.pop_form_loader {
    position: absolute;
    top: -2%;
    left: 0%;
    width: 100%;
    height: 100%;
    background: #0000005e;
    z-index: 1;
}
/*    .pop_form_loader {
        position: absolute;
        padding: 140px 25px;
        background: #0000005e;
        z-index: 1;
    }*/
.pop_submit{
    color: #FFFFFF;
    background-color: #E8562A;
    border: 3px solid #ffffff;
    min-height: 30px;
    border-radius: 0px;
    margin-top: 8px;
    width: 259px;
}
.cls{
    float: right;
    background-color: white !important;
    color: gray;
}
.cls:hover{
    color: black;
}
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: white;
    color: #555;
    padding: 1px !important;
    border: none;
    opacity: 0.8;
    position: fixed;
    bottom: 15px;
    right: 2px;
    width: 20px;
    z-index: 1 !important;
}

/* The popup form - hidden by default */
.form-popup {
    position: fixed;
    bottom: -9px;
    right: 2px;
    border-top: 8px solid #E8562A;
    z-index: 9;
    box-shadow: 0 2px 6px 0 rgba(0,0,0,0.10);
}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 20px;
    background-color: white;
    font-size: 14px;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=email], .form-container input[type=number]{
    max-width: 302px;
    padding: 12px;
    /*background-color: white;*/
    font-size: 13px;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=email]:focus, .form-container input[type=number]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
    background-color: #4CAF50;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
    opacity: 1;
}