/*==========================
  Floating Enquiry Panel
==========================*/

#enquiryPanel {
    position: fixed;
    right: -360px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    z-index: 99999;
    transition: all .4s ease-in-out;
    font-family: Arial, Helvetica, sans-serif;
}

    #enquiryPanel.active {
        right: 0;
    }

/* Vertical Button */

#enquiryHeader {
    position: absolute;
    left: -50px;
    top: 120px;
    width: 50px;
    height: 170px;
    background: #0d6efd;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px 0 0 10px;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0,0,0,.30);
}

/* Form Container */

#enquiryBody {
    background: #fff;
    padding: 20px;
    border-radius: 0 0 0 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

    /* Heading */

    #enquiryBody h4 {
        text-align: center;
        margin-bottom: 20px;
        color: #0d6efd;
        font-weight: bold;
    }

/* Close Button */

#btnClose {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 28px;
    cursor: pointer;
    color: #444;
}

    #btnClose:hover {
        color: red;
    }

/* Textboxes */

#enquiryBody .form-control {
    margin-bottom: 15px;
    height: 45px;
    border-radius: 5px;
}

textarea.form-control {
    height: 90px !important;
}

/* Button */

#enquiryBody .btn {
    width: 100%;
    height: 45px;
    font-size: 16px;
    font-weight: bold;
}

/* Mobile */

@media(max-width:768px) {

    #enquiryPanel {
        width: 300px;
        right: -300px;
    }

    #enquiryHeader {
        left: -45px;
        width: 45px;
        height: 150px;
        font-size: 16px;
    }
}
