/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: #000;
    color: white;
    padding: 16px 18px;
    border: none;
    cursor: pointer;
    opacity: 0.95;
    position: fixed;
    bottom: 13px;
    right: 75px;
    width: 280px;
    z-index: 5000;
}

/* The popup form - hidden by default */
.form-popup {
    display: none;
    position: fixed;
    bottom: 13px;
    right: 75px;
    border: 3px solid #f1f1f1;
    z-index: 5000;
    width: 280px;
}

/* Add styles to the form container */
#call_me_back_frm {
    max-width: 300px;
    padding: 10px;
    background-color: white;
}

/* Full-width input fields */
#call_me_back_frm input[type=text], #call_me_back_frm input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 5px 0;
    border: none;
    background: #f1f1f1;
}

/* When the inputs get focus, do something */
#call_me_back_frm input[type=text]:focus, #call_me_back_frm input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit/login button */
#call_me_back_frm .btn {
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
}


/* Add some hover effects to buttons */
#call_me_back_frm .btn:hover, .open-button:hover {
    opacity: 1;
}
