/* icon member */
.box-textIcon{
    position: fixed;
        bottom: 75px;
    right: 10px;
    z-index: 9999;
}
.box-textIcon .text-icon .close {
    position: absolute;
    top: -14px;
    background-color: #ff8e00;
    width: 25px;
    height: 25px;
    font-size: 12px;
    right: -10px;
    opacity: 1;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 100;
    line-height: 22px;
    box-shadow: 0 0 15px #F9991C;
}
.box-textIcon .icon-popup:before{
    content: "\f0f3";
    font-family: FontAwesome;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #F9991C;
        color: #fdd4a1;
    border-radius: 50%;
    text-align: center;
    line-height: 56px;
    font-size: 32px;
    box-shadow: 0 0 15px #F9991C;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0;
}
.box-textIcon .text-icon {
    right: 15px;
    position: absolute;
    top: -85px;
    background-color: #ff9400;
    width: 200px;
    color: #fff;
    padding: 7px 15px;
    text-align: center;
    line-height: 19px;
    border-radius: 3px;
    box-shadow: 0 0 15px #F9991C;
    z-index: 2;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 1;
}
.box-textIcon .text-icon:after{
        content: "";
    display: inline-block;
    position: absolute;
    bottom: -10px;
    width: 30px;
    height: 30px;
    background-color: #ff9400;
    border-radius: 50%;
    left: 40px;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    box-shadow: 0 0 15px #F9991C;
}
.box-textIcon .text-icon:before{
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -30px;
    width: 15px;
    height: 15px;
    background-color: #ff9400;
    border-radius: 50%;
    left: 75px;
    right: 0;
    margin: 0 auto;
    z-index: 1;
    box-shadow: 0 0 15px #F9991C;
}
.box-textIcon .text-icon .fix-member ul > li p {
    font-size: 10px;
    display: inline-block;
    color: #ff9400;
        margin: 0;
}
.box-textIcon .text-icon .fix-member ul > li p a {
    color: #ff9400;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.box-textIcon .text-icon .fix-member ul > li a:hover {
    color: #191919;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.box-textIcon .text-icon p {
    font-size: 14px;
    margin-bottom: 0;
}
.box-textIcon .text-icon .fix-member ul > li:first-child:after{
    content: "|";
    display: inline-block;
    margin: 0 2px;
    color: #ff9400;
}
.box-textIcon .text-icon p > span{
    font-weight: 600;
        font-size: 16px;
    color: #fff;
}
.box-textIcon .text-icon p.signup-now{
    font-weight: 600;
        font-size: 16px;
    margin: 0;
}
.box-textIcon .text-icon .fix-member ul{
    margin: 0;
    padding: 0;
    list-style: none;
}
.box-textIcon .text-icon .fix-member ul>li{
    display: inline-block;
}
.box-textIcon .text-icon .fix-member {
    position: relative;
    z-index: 2;
    background-color: #fff;
        padding: 2px 15px;
    margin-top: 5px;
}
.box-textIcon.close-popup .text-icon {
    opacity: 0;
    right: -300px;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.box-textIcon.close-popup .icon-popup{
    cursor: pointer;
}
.box-textIcon.close-popup .icon-popup:before{
    color: #fff;
}
.box-textIcon.close-popup .icon-popup:hover:before{
    color: #fdd4a1;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.modal-open .modal-backdrop{
    display: block;
}
.modal-backdrop{
    display: none;
}
.icon-popup .ripple, .icon-popup .ripple:after, .icon-popup .ripple:before {
    border-radius: 50%;
        box-shadow: 0 0 0 0 rgba(255, 142, 0, 0.5);
    top: 0;
    height: 60px;
    position: absolute;
    width: 60px;
    
}
.icon-popup .ripple:before {
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
}
.icon-popup .ripple:after {
    -webkit-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
}
@-webkit-keyframes ripple {
    70% {     box-shadow: 0 0 0 50px transparent; }
    100% {     box-shadow: 0 0 0 0 transparent; }
}
@-moz-keyframes ripple {
    70% {     box-shadow: 0 0 0 50px transparent; }
    100% {     box-shadow: 0 0 0 0 transparent; }
}
@-o-keyframes ripple {
    070% {     box-shadow: 0 0 0 50px transparent; }
    100% {     box-shadow: 0 0 0 0 transparent; }
}
@-ms-keyframes ripple {
    70% {     box-shadow: 0 0 0 50px transparent; }
    100% {     box-shadow: 0 0 0 0 transparent; }
}
@keyframes ripple {
    70% {     box-shadow: 0 0 0 50px transparent; }
    100% {     box-shadow: 0 0 0 0 transparent; }
}
/* End icon member */

/*custom-booking-engine*/
.booking-engine .form-control {
    border-radius: 0;
}

.booking-engine .info a {
    color: #333;
}

.booking-engine .b2h-room-rate .price-display {
    color: #666;
}

.booking-engine #b2h-engine {
    background: transparent;
}

.booking-engine #b2h-engine * {
    font-family: "Prompt", sans-serif !important;
}

.booking-engine .info a {
    line-height: 40px;
}

.booking-engine .picker {
    position: relative;
}

.booking-engine .b2h-room-rate .package-remain {
    margin-top: 5px;
}

.booking-engine .b2h-room-rate .room-available {
    margin-top: 5px;
}

.booking-engine .b2h-room-rate .room-remain {
    margin-top: 5px;
}

.booking-engine .b2h-mobile .benefit-include>.cancellation-remark::before,
.booking-engine .benefit-include>.abf::before,
.booking-engine .benefit-include>.cancellation-remark::before,
.booking-engine .benefit-include>.max-adult::before,
.booking-engine .benefit-include>.max-child::before,
.booking-engine .benefit-include>.max-person::before,
.booking-engine .benefit-include>.policy-notice::before,
.booking-engine .benefit-include>.special-offer::before {
    background-image: url("../img/icon-set.png");
}

.booking-engine .benefit-include>.special-offer a {
    color: #85C99D;
}
.booking-engine .b2h-room-rate .room-available {
    color: #85C99D;
}

.booking-engine .b2h-room-rate {
    border-right: 2px solid #ddd;
    border-top: 2px solid #ddd;
    border-left: 2px solid #ddd;
}

.booking-engine .b2h-room-rate .sep-room {
    padding: 0;
}

.booking-engine .b2h-room-rate .price-strip {
    color: #d57474;
}

.booking-engine .b2h-room-rate .title a {
    color: #333;
}

.booking-engine .b2h-room-rate .hilight.header {
    background-color: #d5d279;
    border: 1px solid #d5d279;
    color: #fff !important;
}

.booking-engine .b2h-room-rate .hilight.condition-item {
    border-left: 1px solid #d5d279;
    border-bottom: 2px solid #d5d279;
}

.booking-engine .b2h-room-rate .hilight.price {
    border-bottom: 2px solid #d5d279;
}

.booking-engine .b2h-room-rate .hilight.quantity {
    border-bottom: 2px solid #d5d279;
    border-right: 1px solid #d5d279;
}

.booking-engine .room-pre-search {
    border-top: 2px solid #d5d279;
}

.booking-engine .rate-daily-strip {
    color: #d57474;
}

.booking-engine table {
    text-align: inherit !important;
    margin: 0 auto;
}

.booking-engine #b2h-engine .nav-tabs {
    margin-left: 0;
}

.booking-engine #b2h-engine .nav-tabs>li {
    border: 0 #ccc;
    background-color: #ccc;
}

.booking-engine #b2h-engine .nav-tabs>li>a {
    color: #333;
}

.booking-engine #b2h-engine .nav-tabs>li>a:hover {
    border: 0 #85C99D;
    background-color: #85C99D;
    color: #fff;
}

.booking-engine #b2h-engine .nav-tabs>li>a:focus {
    border: 0 #85C99D;
    background-color: #85C99D;
    color: #fff;
}

.booking-engine #b2h-engine .nav-tabs>li.active>a {
    border: 0 #85C99D;
    background-color: #85C99D;
    color: #fff;
}

.booking-engine #b2h-engine .nav-tabs>li.active>a:hover {
    border: 0 #85C99D;
    background-color: #85C99D;
    color: #fff;
}

.booking-engine #b2h-engine .nav-tabs>li.active>a:focus {
    border: 0 #85C99D;
    background-color: #85C99D;
    color: #fff;
}

.booking-engine #b2h-engine .num_guest {
    text-align: right !important;
    border-left: 2px solid #ddd;
    border-right: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    background: transparent;
}

.booking-engine #b2h-engine .num_guest input[type=submit] {
    padding: 5px !important;
    margin-bottom: 0;
    font-style: normal;
    background: #d5d279;
    border-color: #d5d279;
    color: #fff;
}

.booking-engine #b2h-engine .num_guest input[type=submit]:hover {
    outline: none;
}

.booking-engine #b2h-engine .num_guest input[type=submit]:focus {
    outline: none;
}

.booking-engine #b2h-engine .num_guest input[type=submit]:active {
    outline: none;
}

.booking-engine #b2h-engine .num_guest input[type=submit]:active:focus {
    outline: none;
}

.booking-engine #b2h-engine .num_guest input[type=submit]:active:hover {
    outline: none;
}

.booking-engine .benefit-include>li {
    color: #717171;
}

.booking-engine .benefit-include>.cancellation-remark a {
    color: #717171;
}

.booking-engine .all_promotion .button-available:hover {
    background-color: #d5d279;
    color: #fff !important;
}

.booking-engine p {
    letter-spacing: 0px;
}

.booking-engine .b2h-mobile .b2h-room-rate .hilight.quantity {
    border-bottom: 2px solid #d5d279;
    border-right: 1px solid #d5d279;
    border-left: 1px solid #d5d279;
}

.booking-engine .b2h-mobile .b2h-room-rate .hilight.condition-item {
    border-right: 1px solid #d5d279;
    border-bottom: none;
}

.booking-engine .b2h-mobile .b2h-room-rate .hilight.price {
    border-bottom: none;
    border-left: 1px solid #d5d279;
    border-right: 1px solid #d5d279;
}

.booking-engine #roomRatePanel td {
    font-size: 14px;
}

.booking-engine .lg-outer .lg-thumb-item img {
    height: auto;
}

.booking-engine #btnBackHome input {
    background-color: #85C99D;
    border: none;
    color: #fff;
    padding: 8px 10px;
}

.booking-engine table.num_guest tr td {
    border-bottom: none;
}

.booking-engine .add-main-menu .navbar-default .navbar-nav>.active>a::after {
    margin-top: -10px;
}

.booking-engine .col-more-room .btn-default {
    background-color: #85C99D;
    border-color: #85C99D;
    color: #fff;
}

.booking-engine .col-more-room .caret {
    color: #fff;
}

.booking-engine .overlay-zoom {
    z-index: 2;
}

.booking-engine .box_promoion .button {
    background-color: #d5d279;
}

.booking-engine .all_promotion .tab-v2 .nav-tabs li.active a {
    border-top: solid 2px #85C99D;
}

.booking-engine .all_promotion .tab-v2 .nav-tabs>li>a:hover {
    color: #d5d279;
}

.booking-engine .all_promotion .tab-v2 .tab-content {
    background-color: #fff;
    box-shadow: 2px 1px 9px -2px rgba(0, 0, 0, 0.3);
}

.booking-engine .all_promotion .headdate {
    color: #4f4e4f;
}

.booking-engine .all_promotion .headstay {
    color: #4f4e4f;
}

.booking-engine .headpro {
    margin-top: 15px;
}

.booking-engine .modal-content * {
    font-family: "Prompt", sans-serif;
    font-weight: 400 !important;
    line-height: 25px;
}

.booking-engine .ac_block ul {
    padding-left: 20px;
}

.booking-engine .ac_block b {
    color: #4f4e4f;
}

.booking-engine .modal-title {
    font-size: 15px;
    font-weight: bold;
}

.booking-engine .modal-header {
    border-bottom: 1px solid #ddd;
}

.booking-engine .modal-footer {
    border-top: 1px solid #ddd !important;
}

.booking-engine .fnBlue {
    color: #ddd;
}

.booking-engine .b2hReviewResult {
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
    padding: 30px 15px;
}

.booking-engine .b2hReviewResult a {
    color: #d5d279;
}

.booking-engine .b2hReviewResult p {
    margin: inherit;
    line-height: 20px;
}

.booking-engine .fnLarge {
    line-height: 30px;
    margin-bottom: 15px;
}

.booking-engine #review-overall {
    margin-top: 15px;
}

.booking-engine .fnOrange {
    color: #ddd;
}

.booking-engine a#btnReviewSubmit {
    background-color: #d5d279;
    color: #fff;
    padding: 15px 30px;
    text-transform: uppercase;
}

.booking-engine a#btnReviewSubmit:hover {
    text-decoration: none;
    background-color: #85C99D;
}

.booking-engine button#btnSubmit {
    background-color: #d5d279;
    border-color: #ddd;
    color: #fff;
}

.booking-engine button#btnForgot {
    background-color: #d5d279;
    border-color: #ddd;
    color: #fff;
}

.booking-engine .b2h_loading_rate {
    text-align: center;
}

@media (max-width: 767px) {
    .b2h-select-guest th {
        color: #ddd !important;
    }

    .b2h-room-rate.b2h-select-guest {
        border-left: 1px solid #ddd !important;
        border-bottom: 1px solid #ddd !important;
    }

    .b2h-room-rate.b2h-select-guest .btn-success {
        background: #d5d279;
        border-color: #d5d279;
        color: #fff;
        font-style: normal;
        width: 100% !important;
        margin: 0 auto;
        height: auto !important;
        padding: 10px 16px !important;
    }

    #review-rightPan {
        width: 100%;
    }

    #review-leftPan {
        width: 100%;
    }

    .product-review-item {
        width: 100%;
    }
}

.booking-engine .b2h-daily-rate td {
    font-weight: bold;
}

@media (max-width: 992px) {
    .b2h-room-rate {
        border-right: 1px solid #ddd !important;
        border-top: 0 !important;
        border-left: 0 !important;
    }

    #b2h-engine .num_guest {
        border-left: 0 !important;
        border-right: 0 !important;
        border-bottom: 0 !important;
    }

    .b2h-rate-content {
        border: 2px solid #ddd !important;
    }
}

.fancybox-title-float-wrap .child {
    width: auto;
}

#btnSubmit,
#btnForgot {
    background-color: #d5d279;
    border-color: #d5d279;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .boxsearch_page {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.84);
        padding: 15px 0 20px;
    }
}

@media screen and (min-width: 768px) {
    .close_box {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .btn_mobile_book {
        position: fixed;
        bottom: 0;
        z-index: 2;
        text-align: center;
        width: 100%;
        color: #fff;
        background-color: #d5d279;
        text-transform: uppercase;
        padding: 12px 0;
        cursor: pointer;
    }

    .boxsearch_page {
        position: absolute;
        opacity: 0;
        transition: all 0.4s ease-in-out;
        z-index: 0;
    }

    .boxsearch_page.book_page {
        position: relative;
        opacity: 1;
        z-index: 3;
    }

    .boxsearch_page.book_page .close_box {
        display: none;
    }

    .open_boxsearch .boxsearch_page {
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 999;
        opacity: 1;
        transition: all 0.4s ease-in-out;
    }

    .open_boxsearch .bg_overley {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        background: #333;
    }

    .open_boxsearch .con_boxsearch {
        position: absolute;
        top: 13%;
        width: 80%;
        height: 70%;
        margin: 0 auto;
        display: block;
        left: 0;
        right: 0;
        overflow: hidden;
        overflow-y: auto;
    }

    .open_boxsearch .close_box {
        position: absolute;
        right: 25px;
        width: 20px;
        top: 20px;
        cursor: pointer;
    }
}

.overlay-zoom .zoom-icon {
    left: 0;
}

.all_promotion .textdate {
    font-size: 12px;
}

.all_promotion .box_promoion {
    text-align: left;
}

.picker {
    position: relative;
}

.booking-engine .tab-content {
    padding: 0;
    background-color: inherit;
    border: inherit;
    margin-bottom: 0;
}

.booking-engine .dropdown-menu {
    margin-top: 0;
}

.submenu p {
    margin: 0;
}

.picker__day--outfocus {
    color: #868686;
}

p#lbWelcome {
    padding: 10px;
}

@media screen and (max-width: 991px) {
    #member_modal {
        z-index: 9999999;
    }

    .modal-backdrop {
        z-index: 9999998;
    }
}

@media (min-width: 992px) {
    .lg-outer .lg-toogle-thumb {
        right: 400px;
    }

    .lg-outer.lg-thumb-open .lg-thumb-outer {
        padding-right: 400px;
    }

    .lg-outer .lg-thumb {
        width: 100% !important;
        overflow: hidden;
        overflow-y: auto;
    }
}
.all_promotion .box_promoion {
    margin-top: 0;
}
.booking-engine .all_promotion .tab-v2 .tab-content {
    background-color: transparent;
    box-shadow: none;
    border: none;
    padding: 0 16px;
}
#b2hModal {
    z-index: 9999999;
}
.booking-engine .b2h_select .custom-options {
  display: none;
}
.booking-engine .b2h_select .opened .custom-options {
  display: block;
}
.booking-engine .b2hRateResult .dbl-spinner-2 {
  border-right: 4px solid #85C89D;
  border-bottom: 4px solid #85C89D;
}
.booking-engine .b2h_rate_v3 * {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.booking-engine .b2h_tabBlock-tab {
  background-color: #fff;
  border: 1px solid #d3d3d3;
  color: #232323;
  font-size: 18px;
}
.booking-engine .b2h_tabBlock-tab.is-active {
  color: #85C89D;
  border-color: #fff;
  border-top-color: #85C89D;
}
.booking-engine .b2h_tabBlock-tab.is-active:before {
  background-color: #d3d3d3;
}
.booking-engine .b2h_tabBlock-tab.is-active::before {
  background-color: #85C89D;
}
.booking-engine .b2h_tabBlock-tab.is-active::after {
  background-color: #fff;
}
.booking-engine .b2h_tabBlock-content {
  background-color: #fff;
}
.booking-engine .select_bh2Curency .b2h_select .custom-select-trigger .b2h_sym {
  color: #85C89D;
}
.booking-engine .select_bh2Curency .b2h_select .custom-option .b2h_sym {
  color: #85C89D;
}
.booking-engine .b2h_benefits .title {
  color: #232323;
}
.booking-engine .b2h_benefits li.item_policy.item_low .b2h_ipolicy {
  fill: #00b1ce;
}
.booking-engine .b2h_benefits .item_discountApplied span {
  color: #8e805f;
}
.booking-engine svg.b2h_ipolicy {
  fill: #85C89D;
}
.booking-engine svg.b2h_ipro {
  fill: #fc492d;
}
.booking-engine svg.b2h_iaccom {
  fill: #85C89D;
}
.booking-engine svg.b2h_ibreakfast {
  fill: #85C89D;
}
.booking-engine svg.b2h_imember {
  fill: #fc492d;
}
.booking-engine svg.b2h_imobile {
  fill: #fc492d;
}
.booking-engine svg.b2h_iadults {
  fill: #85C89D;
}
.booking-engine svg.b2h_ichild {
  fill: #85C89D;
}
.booking-engine svg.b2h_iadd {
  fill: #85C89D;
}
.booking-engine svg.b2h_iextra {
  fill: #85C89D;
}
.booking-engine svg.b2h_itooltip {
  fill: #a7a7a7;
}
.booking-engine svg.b2h_iplus {
  fill: #85C89D;
}
.booking-engine svg.b2h_idiscount {
  fill: #8e805f;
}
.booking-engine svg.b2h_iconGuest {
  fill: #85C89D;
}
.booking-engine .package_open.borderLight .b2h_content_package {
  border: 2px solid #00b1ce !important;
}
.booking-engine .borderLight .b2h_rate_v3 .b2h_content_package .b2h_btnShowmore .b2h_More {
  background-color: #00b1ce !important;
  color: #fff !important;
}
.booking-engine .b2h_rate_v3 .b2h_content_package {
  border: 2px solid #fff;
}
.booking-engine .b2h_rate_v3 .b2h_content_package .b2h_cardlist .b2h_cardItem .b2h_colPrice .price_sale {
  color: #00b1ce;
}
.booking-engine .b2h_rate_v3 .b2h_content_package .b2h_btnShowmore {
  border-top: 1px solid #e8e8e8;
}
.booking-engine .b2h_rate_v3 .b2h_content_package .b2h_btnShowmore .b2h_More {
  background-color: #e8e8e8;
  color: #232323;
}
.booking-engine .b2h_rate_v3 .b2h_packImage p {
  color: #fff;
  background: #00b1ce;
}
.booking-engine .b2h_rate_v3 .b2h_packImage p:after {
  border-right: 12px solid #00b1ce;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage {
  border: 1px solid #00b1ce;
  color: #85C89D;
  background-color: transparent;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage:hover {
  background-color: #00b1ce;
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage:hover .text_package {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage:hover span {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage:hover .b2h_itabPack {
  fill: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage .text_package {
  color: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage span {
  color: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_tabPack .b2h_tabPackage .container_pack .animate_pack {
  background: #380848;
  color: white;
}
.booking-engine .package_open .b2h_tabPack .b2h_tabPackage {
  background-color: #00b1ce;
  color: #fff;
}
.booking-engine .package_open .b2h_tabPack .b2h_tabPackage .text_package {
  color: #fff;
}
.booking-engine .package_open .b2h_tabPack .b2h_tabPackage span {
  color: #fff;
}
.booking-engine .b2h_btn_Pack {
  color: #00b1ce;
  border: 1px solid #00b1ce;
}
.booking-engine .b2h_btn_Pack:hover {
  background: #00b1ce;
  color: #fff !important;
}
.booking-engine .b2h_rate_v3 {
  background: #f9f9f9;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent {
  background: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent.bestPrice .b2h_titleDetail + .b2h_cardItem {
  border: 1px solid #fc492d;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent.bestPrice .b2h_titleDetail + .b2h_cardItem .b2h_colPrice .boxBest_price {
  background: #fc492d;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent.bestPrice .b2h_titleDetail + .b2h_cardItem .b2h_colPrice .boxBest_price .txtPrice {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent .img_roomType {
  position: relative;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent .img_roomType .b2h_moreDetail {
  color: #5488a1;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent .img_roomType .banpro {
  color: #fff;
  background: #db0946;
}
.booking-engine .b2h_rate_v3 .b2h_cardContent .img_roomType .banpro:after {
  border-right: 12px solid #db0946;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .title_roomtype .title_name {
  color: #232323;
  font-size: 18px;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .title_roomtype .title_name a {
  color: #232323;
  font-size: 18px;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem {
  background: #f9f9f9;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_include {
  border-right: 1px solid #d3d3d3;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_guests .max_guest {
  color: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_guests .b2h_iadults {
  fill: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_guests .b2h_ichild {
  fill: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colPrice .price_sale {
  color: #fc492d;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colPrice .price_sale .txtCurrency {
  color: #232323;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colPrice .add_extra_bed .select_bed .b2h_select .custom-select .custom-select-trigger {
  color: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colPrice .add_extra_bed .txtAdd {
  color: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colPrice .add_extra_bed .priceAdd {
  color: #fc492d;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colPrice .add_extra_bed .priceAdd .currencyBed {
  color: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colRoom .statusRoom {
  color: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_cardlist .b2h_cardItem .b2h_colRoom .statusRoom.remain {
  color: #fc492d;
}
.booking-engine .b2h_rate_v3 .b2h_btnShowmore {
  border-top: 1px solid #e8e8e8;
}
.booking-engine .b2h_rate_v3 .b2h_btnShowmore .b2h_More {
  background: #e8e8e8;
}
.booking-engine .b2h_rate_v3 .iconAccom {
  fill: #fc492d;
}
.booking-engine .b2h_rate_v3 .b2h_addon {
  position: relative;
  border: 1px solid #c3d3e0;
  margin-bottom: 15px;
  background-color: #f9f9f9;
}
.booking-engine .b2h_rate_v3 .b2h_addon:before {
  position: absolute;
  content: '';
  left: 0;
  width: 4px;
  top: -1px;
  bottom: -1px;
  background: #85C89D;
  display: block;
}
.booking-engine .b2h_rate_v3 .b2h_addon .titleAdd {
  margin-top: 25px;
}
.booking-engine .b2h_rate_v3 .b2h_addon .b2h_cardItem .b2h_include {
  min-height: 42px;
  padding: 10px 15px;
  background: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_addon .b2h_cardItem .b2h_include .b2h_benefits {
  margin-bottom: 0;
}
.booking-engine .b2h_rate_v3 .b2h_addon .b2h_cardItem .b2h_include .b2h_benefits .item_add {
  margin-top: 7px;
}
.booking-engine .b2h_rate_v3 .b2h_addon .b2h_cardItem .b2h_colPrice .price_sale {
  line-height: 33px;
  position: relative;
  top: 4px;
}
.booking-engine .b2h_rate_v3 .b2h_addon.b2h_addExtra:before {
  background: #4fc6c3;
}
.booking-engine .b2h_rate_v3 .b2h_addon.b2h_addTranfer:before {
  background: #db0946;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue {
  position: static;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue .b2h_boxContinue {
  border-bottom: 4px solid #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue .b2h_boxContinue .b2h_btnContinue {
  background-color: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue .b2h_btnContinue {
  background-color: #85C89D;
  border-bottom: 4px solid #c4b5d0;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue .b2h_btnContinue .b2h_btnContinue {
  background-color: #ff4c00;
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue .b2h_btnContinue .b2h_btnContinue:hover {
  background-color: #e64400;
}
.booking-engine .b2h_rate_v3 .b2h_toContinue .b2h_btnContinue .notice_footer {
  color: #8e8e8e;
}
.booking-engine .header-popup h2 {
  font-family: "Montserrat", sans-serif;
  background-color: #fff;
  box-shadow: 0 3px 5px #c7c7c7;
}
.booking-engine .cancellation-popup strong,
.booking-engine .header-popup h3 {
  font-family: "Montserrat", sans-serif;
  color: #737373;
}
.booking-engine .main-popup {
  font-family: "Montserrat", sans-serif;
  color: #8a8a8a;
  background-color: #fff;
}
.booking-engine .features-popup {
  font-family: "Montserrat", sans-serif;
  border-bottom: solid 1px #efefef;
}
.booking-engine .amenities-popup ul > li,
.booking-engine .features-popup ul > li {
  font-family: "Montserrat", sans-serif;
}
.booking-engine .b2h_gallery_show {
  background-color: #fff;
}
.booking-engine .lg-outer .lg-thumb::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
.booking-engine .lg-outer .lg-thumb::-webkit-scrollbar-thumb {
  background: #ccc;
}
.booking-engine .lg-outer .lg-thumb::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
@media screen and (min-width: 768px) {
  .booking-engine .b2h_rate_v3 .b2h_tabBlock-tab {
    background-color: #85C89D;
    color: #fff;
    border: 1px solid #85C89D;
  }
  .booking-engine .b2h_rate_v3 .b2h_tabBlock-tab.is-active {
    color: #fff;
  }
  .booking-engine .b2h_rate_v3 .b2h_tabBlock-tab.b2h_tabPro {
    background: #fc492d;
    border-color: #fc492d;
  }
  .booking-engine .b2h_rate_v3 .b2h_tabBlock-tab.b2h_tabPro .b2h_isearch {
    fill: #fff;
  }
}
.booking-engine .b2h_itabPack {
  fill: #00b1ce;
}
.booking-engine .b2h_itabPack .st4 {
  fill: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_tab_Noshow {
  background: #ede4cc;
}
.booking-engine .b2h_rate_v3 .b2h_tab_Noshow .b2h_iselectDate {
  fill: #9b8b67;
}
.booking-engine .b2h_rate_v3 .b2h_tab_Noshow .b2h_iDate {
  fill: #9b8b67;
}
.booking-engine .b2h_rate_v3 .b2h_tab_Noshow span {
  color: #9b8b67;
}
.booking-engine .b2h_rate_v3 .b2h_contianer_room .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow {
  background: #85C89D;
}
.booking-engine .b2h_rate_v3 .b2h_contianer_room .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow:hover {
  background: #73c08f;
}
.booking-engine .b2h_rate_v3 .b2h_content_package .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow, .booking-engine .b2h_rate_v3 .b2h_mobile_package .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow {
  background: #00b1ce;
}
.booking-engine .b2h_rate_v3 .b2h_content_package .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow:hover, .booking-engine .b2h_rate_v3 .b2h_mobile_package .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow:hover {
  background: #009bb5;
}
.booking-engine .b2h_rate_v3 .b2h_cardNoshow .b2hContent_Noshow .title_roomtype .title_name a {
  color: #232323;
}
.booking-engine .b2h_rate_v3 .b2h_cardNoshow .b2hContent_Noshow .b2hGuest_Noshow .b2h_listGuestRoom li .b2h_iadults {
  fill: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardNoshow .b2hContent_Noshow .b2hGuest_Noshow .b2h_listGuestRoom li .b2h_ichild {
  fill: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow {
  margin-top: 15px;
  color: #fff;
  background: #8e8e8e;
}
.booking-engine .b2h_rate_v3 .b2h_cardNoshow .b2hContent_Noshow .b2h_noshowCheck .b2h_Checrate_noshow:hover {
  background: #818181;
}
.booking-engine .b2h_rate_v3 .b2h_cardNoshow .b2hContent_Noshow .b2h_linkviewNoshow a {
  color: #232323;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .booking-engine .b2h_rate_v3 .b2h_cardNoshow {
    border-bottom: 1px solid #efefef;
  }
}
@media screen and (min-width: 992px) {
  .booking-engine .b2h_rate_v3 .b2h_conNoshow .b2h-col-6:nth-of-type(odd) .b2h_cardNoshow {
    border-right: 1px solid #efefef;
  }
}
.booking-engine .b2h_select.b2h_disable .custom-select-trigger {
  background: #dbdbdb;
}
.booking-engine .b2h_select .custom-select.caretTop .custom-options:before {
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.booking-engine .b2h_select .custom-select-trigger {
  color: #232323;
  background: #fff;
  border: 1px solid #d3d3d3;
}
.booking-engine .b2h_select .custom-options {
  border: 1px solid #d3d3d3;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
  background: #fff;
}
.booking-engine .b2h_select .custom-options::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
}
.booking-engine .b2h_select .custom-options::-webkit-scrollbar-thumb {
  background: #ccc;
}
.booking-engine .b2h_select .custom-options::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}
.booking-engine .b2h_select .custom-options:before {
  border-top: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  background: #fff;
}
.booking-engine .b2h_select .option-hover:before {
  background: #f9f9f9;
}
.booking-engine .b2h_select .custom-option {
  border-bottom: 1px solid #d3d3d3;
  color: #232323;
}
.booking-engine .b2h_select .custom-option:hover,
.booking-engine .b2h_select .custom-option.selection {
  background: #333;
  color: #fff;
}
.booking-engine .b2h_select .custom-option:hover span,
.booking-engine .b2h_select .custom-option.selection span {
  color: #aeaeae;
}
.booking-engine .b2h_select .custom-option:hover .b2h_sym,
.booking-engine .b2h_select .custom-option.selection .b2h_sym {
  color: #aeaeae;
}
.booking-engine .b2h_select .custom-option:hover .b2h_valueSe,
.booking-engine .b2h_select .custom-option.selection .b2h_valueSe {
  color: #fff;
}
.booking-engine .box_toolRate .b2h_tooltipRate {
  background: #fff !important;
  color: #8e8e8e !important;
  border: 1px solid #85C89D;
}
.booking-engine .box_toolRate .b2h_tooltipRate li {
  border-right: 1px solid #ededed;
}
.booking-engine .box_toolRate .b2h_tooltipRate li .b2h_dateRate {
  color: #232323;
}
.booking-engine .box_toolRate .b2h_tooltipRate li .b2h_dateBenefit {
  color: #fc492d;
}
.booking-engine .icon_allGuest .b2h_iplus {
  fill: #85C89D;
}
.booking-engine .box_tooltip .b2h_itooltip {
  fill: #a7a7a7;
}
.booking-engine .b2hTool-bottom:after {
  border-bottom: solid #333 10px;
}
.booking-engine .box_tooltip .b2h_tooltip {
  background: #333;
  color: #fff;
}
.booking-engine .box_tooltip .b2h_tooltip:after {
  border-top: solid #333 10px;
}
.booking-engine .b2h_rate_v3 .b2h_modal {
  background: rgba(74, 74, 74, 0.8);
}
.booking-engine .b2h_rate_v3 .b2h_modal-header {
  background: #fff;
  color: #232323;
  border-bottom: 1px solid #f9f9f9;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_package {
  background: #00b1ce;
  border-bottom: 1px solid #00b1ce;
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_package .b2h_close-modal {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_detail {
  background: #85C89D !important;
  border-bottom: 1px solid #85C89D !important;
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_detail .b2h_close-modal {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_promotion {
  background: #fc492d !important;
  border-bottom: 1px solid #fc492d !important;
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_promotion .b2h_close-modal {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_discount {
  background: #8e805f !important;
  border-bottom: 1px solid #8e805f !important;
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header.modal_discount .b2h_close-modal {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-header .b2h_title_modal {
  color: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-body {
  background: #fff;
}
.booking-engine .b2h_rate_v3 .b2h_modal-trigger {
  color: #232323;
}
.booking-engine .b2h_rate_v3 .b2h_modal-trigger:hover, .booking-engine .b2h_rate_v3 .b2h_modal-trigger:focus {
  color: #232323;
}
.booking-engine button {
  border: 1px solid #333333;
  outline: none;
  color: #333333;
}
.booking-engine .b2h_rate_mobileV3.b2h_rate_v3 .b2h_btnShowmore {
  background: #eaeaea;
  box-shadow: 0px -1px 22px -10px #ccc;
}
.booking-engine .b2h_rate_mobileV3.b2h_rate_v3 .b2h_packImage p:after {
  border-right: 24px solid #00b1ce;
}
.booking-engine .b2h_rate_mobileV3 .select_bh2Curency .b2h_select .custom-select-trigger {
  background: #f1f1f1;
}
.booking-engine .b2h_rate_mobileV3 .b2h_tabBlock-tab.is-active {
  background: #fff;
  box-shadow: 0px 0px 20px -3px #ccc;
}
.booking-engine .b2h_rate_mobileV3 .b2h_packSum {
  background: #ee552d;
  color: #fff;
}
.booking-engine .b2h_rate_mobileV3 * {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.booking-engine .b2h_rate_mobileV3 .b2h_listRoomCard {
  box-shadow: 0px 0px 28px -12px #737373;
  background: #fff;
}
.booking-engine .b2h_rate_mobileV3 .b2h_CaptionCard {
  border-bottom: 1px solid rgba(142, 142, 142, 0.3);
}
.booking-engine .b2h_rate_mobileV3 .b2h_CaptionCard .b2h_listdetailRoom li {
  color: #8e8e8e;
}
.booking-engine .b2h_rate_mobileV3 .b2h_CaptionCard .b2h_moviewDetail {
  color: #5488a1;
}
.booking-engine .b2h_rate_mobileV3 .b2h_conditionCard {
  border-bottom: 4px solid rgba(142, 142, 142, 0.15);
}
.booking-engine .b2h_rate_mobileV3 .b2h_conditionCard .price_sale {
  color: #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_conditionCard .price_sale .night {
  color: #232323;
}
.booking-engine .b2h_rate_mobileV3 .b2h_conditionCard .txtCurrency {
  color: #232323;
}
.booking-engine .b2h_rate_mobileV3 .b2h_AddextraBed {
  background: #f7f7f7;
}
.booking-engine .b2h_rate_mobileV3 .b2h_AddextraBed .b2h_iextrabed {
  fill: #a7b5c1;
}
.booking-engine .b2h_rate_mobileV3 .b2h_AddextraBed .price_per_bed {
  color: #fc492d;
}
.booking-engine .b2h_rate_mobileV3 .b2h_AddextraBed .price_per_bed .curency {
  color: #232323;
}
.booking-engine .b2h_rate_mobileV3 .b2h_AddextraBed .b2h_select_mobile .b2h_selectAdd {
  color: #fff;
  background: #a7b5c1;
}
.booking-engine .b2h_rate_mobileV3 .b2h_selectNumRoom {
  border-top: 1px solid rgba(142, 142, 142, 0.3);
}
.booking-engine .b2h_rate_mobileV3 .b2h_selectNumRoom .b2h_txtSelectRoom .b2h_ichild, .booking-engine .b2h_rate_mobileV3 .b2h_selectNumRoom .b2h_txtSelectRoom .b2h_iadults {
  fill: #a7b5c1;
}
.booking-engine .b2h_rate_mobileV3 .b2h_selectNumRoom .b2h_selectRight.b2h_packdisable .b2h_disable {
  color: #ce3d3d;
  border: 1px solid #ffd7d4;
}
.booking-engine .b2h_rate_mobileV3 .b2h_selectNumRoom .b2h_select_mobile .b2h_selectAdd {
  color: #fff;
  background: #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_modailyrate {
  border-bottom: 1px solid #ededed;
}
.booking-engine .b2h_rate_mobileV3 .b2h_modailyrate.b2h_hasbenefit .b2h_dateBenefit {
  color: #fc492d;
}
.booking-engine .b2h_rate_mobileV3 .b2h_modailyrate li {
  border-right: 1px solid #ededed;
}
.booking-engine .b2h_rate_mobileV3 .b2h_modailyrate li .b2h_dateRate {
  color: #232323;
}
.booking-engine .b2h_rate_mobileV3 .b2h_listGuestRoom li .b2h_iadults {
  fill: #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_listGuestRoom li .b2h_ichild {
  fill: #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_moAddons .b2h_CaptionCard {
  border-top: 3px solid #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_moAddons.b2h_moExtra .b2h_CaptionCard {
  border-top: 3px solid #00b1ce;
}
.booking-engine .b2h_rate_mobileV3 .b2h_moAddons.b2h_moTransfer .b2h_CaptionCard {
  border-top: 3px solid #db0946;
}
.booking-engine .b2h_rate_mobileV3 .b2h_tabMoPack .b2h_tabPackage {
  border: 1px solid #00b1ce;
  color: #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_tabMoPack .b2h_tabPackage .b2h_packSumNum {
  color: #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_tabBlock-tabs .b2h_tabBtnRoomtype {
  background: #85C89D;
  color: #fff;
  border: 1px solid #85C89D;
}
.booking-engine .b2h_rate_mobileV3 .b2h_tabBlock-tabs .b2h_tabBtnRoomtype .b2h_roomSumNum {
  color: #fff;
}
.booking-engine .b2h_rate_mobileV3 .b2h_benefits .item_discountApplied span {
  color: #8e805f;
}
.booking-engine .b2h_rate_mobileV3 .statusRoom {
  color: #00ca77;
}
.booking-engine .b2h_rate_mobileV3 .statusRoom.remain {
  color: #fc492d !important;
}
.booking-engine .package_open .b2h_tabMoPack .b2h_tabPackage {
  border: 1px solid #00b1ce;
  color: #fff;
  background: #00b1ce;
}
.booking-engine .package_open .b2h_tabMoPack .b2h_tabPackage .b2h_packSumNum {
  color: #fff;
}
.booking-engine .package_open .b2h_tabMoPack .b2h_tabPackage .icon_thor {
  fill: #fff;
}
.booking-engine .b2h_rate_mobileV3.b2h_rate_v3 .b2h_cardNoshow {
  border-bottom: 1px solid #efefef;
}

@media screen and (min-width: 768px) {
  .b2h_search_bestrate_new {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 992px) {
  .b2h_search_bestrate_new {
    max-width: 970px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .b2h_search_bestrate_new {
    max-width: 1170px;
    margin: 0 auto;
  }
}
