.reservation-box {
    position: fixed;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    background: var(--hg-color-light);
    transition: .23s ease-in-out;
    z-index: 10;
}
.reservation-box:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    background-image: url("../images/icon/vector.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.reservation-box.active {
    opacity: 1;
    pointer-events: auto;
}
.reservation {
    position: relative;
    width: 100%;
    height: 100%;
}
.reservation > div {
    position: relative;
    height: 100%;
    width: 800px;
    margin: auto;
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.title-reservation {
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-bottom: 80px;
}

.title-reservation p:nth-child(1), .title-reservation p:nth-child(2) {
    font-family: var(--hg-font-title);
    margin: 0;
    line-height: 1;
}

.title-reservation p:nth-child(1) {
    font-size: 22px;
    letter-spacing: 6px;
    margin: 0 0 5px;
}

.title-reservation p:nth-child(2) {
    font-size: 110px;
    line-height: 1;
    color: var(--hg-color-primary);
}

.title-reservation p:nth-child(3) {
    font-size: 16px;
    margin: 0;
}
.reservation [class*=col-xs-]{
    padding: 0 15px;
}
.gj-datepicker-md [role=right-icon] {
    display: none !important;
}
.reservation input , .reservation select {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .42);
    display: block;
    font-family: var(--hg-font-title);
    font-size: 24px;
    padding: 4px 0;
    margin: 0;
    width: 100%;
    background: 0 0;
    text-align: left;
    color: rgba(0, 0, 0, .87);
    line-height: 34px;
    outline: none;
    cursor: pointer;
}

.reservation .icon-chevron-down {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 12px;
}
.reservation .icon-calendar {
    position: absolute;
    right: 15px;
    bottom: 10px;
    font-size: 22px;
}
.reservation label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}


.btnbook_reser {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    color: var(--hg-color-secondary);
    font-family: var(--hg-font-title);
    border: 0;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    background: var(--hg-color-title);
    margin: 50px 0 0;
}

.btnbook_reser:hover {
    background: var(--hg-color-primary) !important;

}

/*********************************/
/* CLOSE */
/*********************************/
.close_box {
    position: absolute;
    top: 50px;
    right: 150px;
    width: 55px;
    height: 55px;
    display: inline-block;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all .6s;
    z-index: 3;
}

.close_box:before, .close_box:after {
    content: "";
    width: 2px;
    height: 55px;
    position: absolute;
    background: var(--hg-color-primary);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: all .6s;
}

.close_box:before {
    transform: rotate(45deg);
}

.close_box:after {
    transform: rotate(-45deg);
}

.close_box:hover:before {
    transform: rotate(220deg);
}

/*********************************/
/* BOOK MOBILE */
/*********************************/
.book-mobile {
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 20px;
    text-align: center;
    font-family: var(--hg-font-title);
    text-transform: uppercase;
    color: var(--hg-color-title);
    /*background: rgba(4,38,64,0.7);*/
    /*backdrop-filter: blur(15px);*/
    /*-webkit-backdrop-filter: blur(15px);*/
    background: #FFF4BC;
    background: linear-gradient(0deg, rgb(194 188 139) 0%, rgb(240 235 191) 100%);
    padding: 15px;
    display: none;
    z-index: 8;

}
.book-mobile  i {
    position: relative;
    vertical-align: middle;
    animation: mymove 1.3s infinite;
}
@keyframes mymove {
    0% {
        left: 0;
    }
    30% {
        left: 4px;
    }
    100% {
        left: 0;
    }
}
@-webkit-keyframes mymove {
    0% {
        left: 0;
    }
    30% {
        left: 4px;
    }
    100% {
        left: 0;
    }
}

