/* Button used to open the contact form - fixed at the bottom of the page */

.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
}


/* The popup form - hidden by default */

.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 60px;
    border: 3px solid rgba(0, 0, 0, .1);
    z-index: 9;
    border-radius: 10px;
}


/* Add styles to the form container */

.form-container {
    max-width: 300px;
    padding: 18px;
    background-color: white;
    border-radius: 10px;
}


/* Full-width input fields */

.form-container input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 5px 0 6px 0;
    border: none;
    border-radius: 4px;
    border: 1px solid #ced4da;
}


/* When the inputs get focus, do something */

.form-container input[type=text]:focus,
.form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}


/* Set a style for the submit/login button */

.form-container .btn {
    width: 100%;
    background: #00B300;
    border: 0;
    padding: 10px 30px;
    border-radius: 4px;
    color: #fff;
    transition: 0.4s;
}


/* 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;
}

.nav-menu .drop-down ul a:hover {
    color: white;
}

#open_form {
    bottom: 65px;
    position: fixed;
    display: inline;
    cursor: pointer;
    right: 15px;
    z-index: 99999
}

#open_form_icon {
    display: flex;
    padding: 14%;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #00B300;
    color: #fff;
    transition: all 0.4s;
}

#enquiry_close_icon {
    color: #00B300;
    cursor: pointer;
    float: right;
    font-size: 1.0em;
    position: absolute;
    top: 16px;
    right: 12px;
}

.error {
    color: red;
}

.nav-active {
    border-bottom: 1px solid #00B300
}

#inquiry_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: #00B300;
    color: #fff;
    transition: all 0.4s;
}