
/* ======================Reservas Laterais (Esquerda)====================== */

.book-now-area {
    width: 100%;
    /* margin-bottom: 15px; */
    position: relative;
    z-index: 99999999999999;
}

.book-now-form {
    display: flex;
    flex-direction: row;
    width: auto;
    border-radius: 12px;
    position: fixed;
    z-index: 1;
    top: 25%;
    left: 0;
    transition: .6s;
}

.book-now-form:hover {
    background-color: rgba(63, 63, 63, 0.2);
}

.hide-btn {
    align-self: center;
    color: #FFF;
    font-size: 1.6rem;
    background: #363636;
    height: 120px;
    border: none;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    cursor: pointer;
    outline: none !important;
    transition: .4s ease;
}

.hide-btn:hover {
    background: #2e2e2e;
}


/*  Chevron Rotation */

.chevron-btn {
    display: inline-block;
    transition: .4s ease;
}

.rotateToLeft {
    transform: rotate(180deg);
    animation-duration: .3s;
    animation-name: rotateToLeft_btn;
}

@keyframes rotateToLeft_btn {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

.rotateToRight {
    transform: rotate(0);
    animation-duration: .3s;
    animation-name: rotateToRight_btn;
}

@keyframes rotateToRight_btn {
    from {
        transform: rotate(180deg);
    }
    to {
        transform: rotate(0deg);
    }
}

.esconder {
    left: -340px;
}

.animate-hide {
    animation-duration: .3s;
    animation-name: leftHide;
}

.animate-show {
    animation-duration: .3s;
    animation-name: leftShow;
}

@keyframes leftHide {
    from {
        left: 0;
    }
    to {
        left: -350px;
    }
}

@keyframes leftShow {
    from {
        left: -350px;
    }
    to {
        left: 0;
    }
}

.book-now-form form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    width: 100%;
}

.book-now-form form .form-group,
.book-now-form form button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -ms-grid-row-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    height: 60px;
    background-color: #363636;
    border-left: 2px solid #444444;
    border-top: 2px solid #444444;
    border-bottom: 2px solid #444444;
    margin-bottom: 0;
    padding: 15px 30px;
}

.book-now-form form .form-group h2 {
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .book-now-form form .form-group,
    .book-now-form form button {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        height: 100px;
        border-bottom: 0 solid transparent;
        border-right: 2px solid #cb8670;
    }
}

.book-now-form form .form-group label {
    color: #ffffff;
    display: block;
    font-size: 14px;
    width: 50%;
    margin-bottom: 0;
}

.book-now-form form button {
    border: none !important;
    font-size: 16px;
    background-color: #f03a3a;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    -webkit-transition-duration: 300ms;
    transition-duration: 300ms;
    padding: 15px 0;
}

.book-now-form form button:hover,
.book-now-form form button:focus {
    outline: none;
    background-color: #363636;
}

.book-now-form form .form-control:focus {
    box-shadow: none;
}

