.reservation-box {
    position: fixed;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    background: var(--hg-color-secondary);
    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;
    padding: 150px;
    width: 100%;
    height: 100%;
}

.reservation > [class*=col-xs-] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.title-reservation {
    text-transform: uppercase;
    text-align: center;
    color: var(--hg-color-primary);
    padding-right: 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: 80px;
    margin-bottom: 15px;
}

.title-reservation p:nth-child(2) {
    font-size: 150px;
}

.title-reservation p:nth-child(3) {
    font-size: 16px;
}

.box-reservation > div {
    position: relative;
    width: 100%;
    display: inline-block;
    padding: 50px 0;
    border-bottom: 1px solid rgba(61, 61, 61, 0.5);
}

.box-reservation > div:nth-child(1) {
    padding: 0 0 50px;
}

.box-reservation > div:last-child {
    border: 0;
}

.text_ibe {
    text-transform: uppercase;
    color: var(--hg-color-primary);
    font-size: 15px;
    letter-spacing: 1px;
}

.input_in_out {
    text-transform: uppercase;
    color: var(--hg-color-title);
    font-size: 22px;
}

.check {
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
}
.input_in_out .col-xs-9 {
    padding-left: 15px;
}

.day {
    font-size: 64px;
    font-family: var(--hg-font-title);
    line-height: 1;
}

.style_calendar {
    padding: 0 15px;
}

.style_calendar.t-month-check-in, .style_calendar.t-month-check-out {
    padding: 0 15px 0 0;
}

.reservation-check {
    position: relative;
}

.reservation-check a {
    position: relative;
    font-size: 64px;
    color: var(--hg-color-title);
    font-family: var(--hg-font-title);
    text-transform: uppercase;
    line-height: 1;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
}

.reservation-check i {
    position: absolute;
    height: 30px;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    font-size: 20px;
    cursor: pointer;
}

.reservation-check .icon-minus {
    right: 35px;
}

.point .icon-minus {
    pointer-events: none;
    opacity: .4;
}

.promotion-code input {
    position: relative;
    width: 100%;
    font-size: 64px;
    color: var(--hg-color-title);
    font-family: var(--hg-font-title);
    text-transform: uppercase;
    line-height: 1;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;

}

.promocode input:focus::-webkit-input-placeholder {
    color: transparent;
    transition: all 0.3s;
}

.promocode input::placeholder {
    color: var(--hg-color-title);
}

.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;
}

.btnbook_reser:hover {
    background: var(--hg-color-title) !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: 25px;
    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);
}


/*********************************/
/* POPUP ROOM LIST */
/*********************************/

#popup_room_list.popup_content {
    position: absolute;
    background: #fff;
    width: 250px;
    margin: 10px 0 35px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    z-index: 6;
    max-height: 280px;
    overflow: scroll;

}
.numberroom {
    height: auto !important;
}
.detail-room_list {
    position: relative;
    display: inline-block;
    width: 100%;
}
.detail-room_list  + .detail-room_list {
    display: block;
}
.title_numroom.numberOfRoom1 {
    padding: 0 0 10px;
}
.title_numroom {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 0.5px solid rgba(var(--hg-rgba-color-body), 0.25);
}

.input-group-addon p {
    color: var(--hg-color-primary);
    text-transform: uppercase;
    margin: 0 0 5px;
    font-size: 14px;
}

.input-group-addon .icon-add-user,
.input-group .icon-kids {
    font-size: 24px;
    color: var(--hg-color-title);
    vertical-align: text-top;
}

.input-group-addon .icon-chevron-down {
    position: absolute;
    right: 0;
    bottom: 7px;
    font-size: 14px;
}

#popup_room_list.popup_content label {
    color: var(--hg-color-body) !important;
    float: left;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: lighter;
    font-family: var(--hg-font-body);
    text-transform: uppercase;
}

.padding_apply {
    padding: 0 25px 25px;
}

#total_adult_child {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 25px 25px 0;
}

#popup_room_list #numberOfRoom1, #popup_room_list #numberOfRoom2, #popup_room_list #numberOfRoom3, #popup_room_list #numberOfRoom4, #popup_room_list #numberOfRoom5 {
    position: relative;
    float: right;
}

#popup_room_list .popup_content .form_group_half {
    float: left;
    position: relative;
    width: 100%;
}

#popup_room_list .form-group {
    display: inline-block;
    padding: 10px 0 !important;
    margin: 0;
    width: 100%;
}
#popup_room_list .form-group + .form-group {
    padding: 0 0 10px !important;
}

.input-group {
    width: 100%;
    margin-bottom: 0;
}
.detail_age {
    position: relative;
    width: 100%;
}


.detail_age .icon-chevron-down {
    position: absolute;
    right: 0;
    font-size: 10px;
    top: 8px;
}

.row_age {
    margin-left: -15px;
    margin-right: -15px;
}
.row_age [class*=col-xs-]{
    padding: 5px 15px 0;
    display: flex;
}
#popup_room_list .input-group-addon:first-child {
    border-right: none;
    width: 100%;
    color: #333;
    text-transform: capitalize;
    font-weight: lighter;
}
#popup_room_list .input-group-addon .col-xs-10 {
    padding-left: 5px;
}


#popup_room_list .arrow {
    position: absolute;
    bottom: 15px;
    right: 10px;
    color: #888;
}

#popup_room_list select {
    width: 100%;
    border-radius: 0;
    background: none;
    outline: none;
    cursor: pointer;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    border: none;
    color: var(--hg-color-title);
    /*line-height: 1;*/
    font-size: 20px;
    text-transform: uppercase;
    font-family: var(--hg-font-title);
}

#popup_room_list select:active {
    font-size: 14px;
}

#popup_room_list input {
    width: 100%;
    font-size: 16px;
    padding: 10px 7px;
    color: var(--hg-color-secondary);
    outline: none;
    border: none;
    background: var(--hg-color-primary);
    border-radius: 0;
    margin: 0;
    font-weight: lighter;
    transition: all .5s;
    text-transform: uppercase;
}

#popup_room_list input:hover {
    background: var(--hg-color-title);
}

.popupTop {
    bottom: 50px;
    top: inherit;
}

.popupTop #numberrroomRow:before {
    top: inherit;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    bottom: -15px;
}

.popupTop #ui-datepicker-div:before {

}

.popupTop {
    bottom: 20px;
    top: inherit;
}

.popupTop #numberrroomRow:before {
    top: inherit;
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    bottom: -15px;
}

/*********************************/
/* 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: #fff;
    /*background: rgba(4,38,64,0.7);*/
    /*backdrop-filter: blur(15px);*/
    /*-webkit-backdrop-filter: blur(15px);*/
    background: var(--hg-color-primary);
    background: linear-gradient(0deg, #7bf8eb, #34cbbc);
    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;
    }
}

