@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Thai:wght@100;200;300;400;500;600;700&display=swap');
a{
    color: #239087;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
a:hover{
    color: #0c0c0c;
}
.hidden{
    display: none;
}
.img > img{
    max-width: 100%;
}
#ifmsubmit{
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    background: #ccc;
    height: 600px;
    color: #fff;
    z-index: 99999999;
}
/* Loading */
#lds-main {
    display: block;
    position: relative;
    width: 64px;
    height: 40px;
    margin: 0 auto;
}
#lds-main div {
    position: absolute;
    top: 15px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ccc;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

#lds-main div:nth-child(1) {
    left: 6px;
    animation: lds-main1 0.6s infinite;
}

#lds-main div:nth-child(2) {
    left: 6px;
    animation: lds-main2 0.6s infinite;
}

#lds-main div:nth-child(3) {
    left: 26px;
    animation: lds-main2 0.6s infinite;
}

#lds-main div:nth-child(4) {
    left: 45px;
    animation: lds-main3 0.6s infinite;
}

@keyframes lds-main1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-main3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-main2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(19px, 0);
    }
}
#main_loading{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 999999;
}
#main_loading #lds-main{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.book_now_btn,
.btn{
    display: inline-block;
    border-radius: 3px;
    font-size: 14px;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.form-control{
    border-radius: 0;
    border: 1px solid #e9e9e9;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    background: #f8f8f8;
    font-size: 13px;
    color: #8c8c8c;
    font-size: 14px;
}
.book_now_btn,
.book_now_btn_light,
.book_now_btn_black,
.book_now_btn_main{
    border-radius: 40px;
    padding: 10px 35px;
    border: none;
    font-size: 1.2rem;
    text-align: center;
    text-decoration: none!important;
}
.book_now_btn,
.book_now_btn_main{
    color: #fff;
    text-decoration: none;
    background: #1b9b90;
}
.book_now_btn:hover,
.book_now_btn_main:hover{
    color: #fff;
    background: #077068;
}
.book_now_btn_main span{
    display: block;
    font-size: 0.9rem;
}
.book_now_btn_black{
    background: #333;
    color: #fff;
}
.book_now_btn_black:hover{
    background: #444;
    color: #fff;
}
.book_now_btn_light{
    background: #fff;
    color: #239087;
}
.book_now_btn_light:hover{
    background: #fff;
    color: #239f97;
}
.header_menu .book_now_btn{
    padding-left: 60px;
    padding-right: 60px;
}
/* input[type='email'].form-control,
input[type='password'].form-control,
input[type='text'].form-control{
    min-height: 45px;
}
textarea.form-control{
    min-height: 120px;
} */
body{
    background: #fafafa;
    font-family: 'IBM Plex Sans Thai', cursive;
}
.daterangepicker{
    font-family: 'IBM Plex Sans Thai', cursive;
}
.header_menu{
    background: #fff;
    position: relative;
}
.header_menu > .navbar{
    padding: 15px;
    padding-top: 0;
}
.header_menu > .navbar > .m_left,
.header_menu > .navbar > .m_right{
    position: relative;
    min-width: 400px;
    max-width: 400px;
    display: flex;
    align-items: center;
}
.header_menu > .navbar > .m_right{
    justify-content: flex-end;
}
.header_menu > .navbar > .m_right .book_now_btn_main{
    padding-left: 80px;
    padding-right: 80px;
}
.navbar-toggler{
    display: flex;
    align-items: center;
    gap: 20px;
    border: none;
    outline: none!important;
    box-shadow: none;
}
.navbar-toggler .name{
    color: #239087;
}
.navbar-toggler .micon{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.navbar-brand{
    margin: 0;
}
.navbar-light .navbar-brand img{

}
.navbar-toggler .micon > span{
    display: block;
    background: #239087;
    width: 40px;
    height: 6px;
    border-radius: 3px;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.navbar-toggler .micon > span.c1,
.navbar-toggler .micon > span.c3{
    background: #d2d2d2;
}
.navbar-toggler .micon > span.c2{
    -webkit-transform: translate(10px);
       -moz-transform: translate(10px);
        -ms-transform: translate(10px);
         -o-transform: translate(10px);
            transform: translate(10px);
}
.navbar-toggler[aria-expanded="true"] span.c3{
    opacity: 0;
}
.navbar-toggler[aria-expanded="true"] span.c2{
    -webkit-transform: translate(-3px,0px) rotate(45deg);
       -moz-transform: translate(-3px,0px) rotate(45deg);
        -ms-transform: translate(-3px,0px) rotate(45deg);
         -o-transform: translate(-3px,0px) rotate(45deg);
            transform: translate(-3px,0px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] span.c1{
    -webkit-transform: rotate(-45deg) translate(-10px,5px);
       -moz-transform: rotate(-45deg) translate(-10px,5px);
        -ms-transform: rotate(-45deg) translate(-10px,5px);
         -o-transform: rotate(-45deg) translate(-10px,5px);
            transform: rotate(-45deg) translate(-10px,5px);
}
.navbar-toggler[aria-expanded="false"] .name::before{
    content: 'MENU';
}
.navbar-toggler[aria-expanded="true"] .name::before{
    content: 'CLOSE';
}
.header_menu > .navbar > .m_left .hinfo{
    display: flex;
    gap: 5px;
}
.header_menu > .navbar > .m_left .hinfo a.lang{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
}
.header_menu > .navbar > .m_left .hinfo a.lang.active{
    background: #239087;
    color: #fff;
}
.header_menu > .navbar > .m_left .hinfo a.tel{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
}
.header_menu > .navbar > .m_left .hinfo a.tel i{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    background: #333;
}
#main_menu{
    position: absolute;
    left: 0;
    top: 100%;
    background: rgb(35 144 135 / 90%);
    z-index: 99;
    height: 0!important;
    padding: 0px 0;
    padding-right: 50px;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
#main_menu.collapsing.show,
#main_menu.show{
    height: 40vw!important;
    padding: 50px 0;
    padding-right: 50px;
}
#main_menu > ul{
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
    min-width: 400px;
    opacity: 0;
    height: 0;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
#main_menu.collapsing.show > ul,
#main_menu.show > ul{
    opacity: 1;
    height: auto;
}
#main_menu > ul > li > a{
    display: inline-block;
    padding: 10px 50px;
    padding-left: 50px;
    font-size: 1.3rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}
#main_menu > ul > li > a::after{
    content: '';
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 100%;
    z-index: -1;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
#main_menu > ul > li:hover > a::after,
#main_menu > ul > li.active > a::after{
    right: 0;
}
#main_menu > ul:hover > li:not(:hover) > a{
    color: #fff;
}
#main_menu > ul:hover > li:not(:hover) > a::after{
    right: 100%!important;
}
#main_menu > ul > li:hover > a,
#main_menu > ul > li.active > a{
    color: #239087;
}
#main_menu a{
    color: #fff;
}
#main_menu a{

}
footer .copyright{
    background: #fff;
    color: #999;
}
footer .copyright > .container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
footer .copyright > .container .social{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
footer .copyright > .container .social a{
    background: #000;
    color: #fff;
    font-size: 1rem;
    border-radius: 50%;
    display: block;
    min-width: 30px;
    max-width: 30px;
    min-height: 30px;
    max-height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fh_menu{
    padding: 100px 0;
    padding-bottom: 12vw;
    background: #dfdfdf url('/web-assets/img/footer.png') center bottom no-repeat;
    background-size: 100%;
}
.f_menu{
    display: flex;
    gap: 40px;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 30px;
    flex-wrap: wrap;
}
.f_menu a{
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
} 
.f_menu a:hover{
    -webkit-transform: translateY(-5px);
       -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
         -o-transform: translateY(-5px);
            transform: translateY(-5px);
}
.book_room_box{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
}
.book_room_box .book_table_item{
    display: flex;
    flex-direction: column;
}
.book_room_area{
    background: #239087;
    color: #fff;
    padding: 40px 0;
}
.book_room_box{
    display: flex;
    justify-content: center;
}
#homeBooking .book_table_item{
    border-right: 1px solid #fff;
    padding:0 40px;
}
#homeBooking .book_table_item:last-child{
    border-right: none;
}
#homeBooking .book_table_item .book_now_btn_main{
    border-radius: 40px;
    padding: 20px 35px;
}
#homeBooking .book_table_item .book_now_btn_light{
    border-radius: 40px;
    padding: 20px 35px;
}

#homeBooking .book_table_item h2{
 font-size: 1.4rem;
}   
#homeBooking .book_table_item label{
    font-size: 1.1rem;
}
#homeBooking .book_table_item input,
#homeBooking .book_table_item select{
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    width: 100%;
    outline: none;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-right: 10px;
    color: #fff;
}
.search_right_sidebar .book_room_box .daterang::placeholder,
#homeBooking .book_table_item input::placeholder,
#homeBooking .book_table_item select::placeholder {
  color: #fff;
  opacity: 1;
}

#homeBooking .book_table_item input::-ms-input-placeholder,
#homeBooking .book_table_item select::-ms-input-placeholder {
  color: #fff;
}
#homeBooking .book_table_item select{
    color: #fff;
}
#homeBooking .book_table_item select > option{
   color: black;
}
#homeBooking .book_table_item select.iRoom{
    padding-left: 40px;
    background :transparent url('../img/icon/i-type.png') left center no-repeat!important;
}
#homeBooking .book_table_item select.iGuest{
    padding-left: 25px;
    background :transparent url('../img/icon/i-user.png') left center no-repeat!important;
}
.slick-prev, .slick-next{
    width: 50px!important;
    height: 75px!important;
}
.slick-prev::before, .slick-next::before{
    display: none;
}
.slick-prev{
    background: url('/web-assets/img/icon/i-prev.png') center center no-repeat!important;
    left: -100px!important;
}
.slick-next{
    background: url('/web-assets/img/icon/i-next.png') center center no-repeat!important;
    right: -100px!important;
}
.sec_rooms{
    padding: 100px 0;
}
.sec_box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 25px;
}
.sec_box > .left > h2{
    color: #239f97;
    font-size: 2.2rem;
}
.sec_box > .left > p{
    font-size: 1.5rem;
    color: #4c4c4c;
    margin-bottom: 0;
}
.sec_box > .right{
}
.room_item{
    display: flex;
}
.room_item > .room_image{
    display: flex;
    max-width: 60%;
    min-width: 60%;
}
.room_item > .room_image img{
    width: 100%;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.room_item > .room_image .room_master{
    min-width: 75%;
    max-width: 75%;
    display: block;
    height: 450px;
    overflow: hidden;
    outline: none;
}
.room_item > .room_image .room_master img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.room_item > .room_image .room_master:hover img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.room_item > .room_image .room_image{
    min-width: 15%;
    max-width: 15%;
}
.room_item > .room_info{
    max-width: 40%;
    min-width: 40%;
}
.room_item > .room_image .room_others{
    height: 450px;
    overflow: auto;
    padding-left: 5px;
}
.room_item > .room_image .room_others::-webkit-scrollbar {
  display: none;
}
.room_item > .room_image .room_others {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.room_item > .room_image .room_others > a{
    display: block;
    margin-bottom: 5px;
    outline: none;
    overflow: hidden;
}
.room_item > .room_image .room_others > a:last-child{
    margin-bottom: 0;
}
.room_item > .room_image .room_others > a:hover img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.room_item > .room_info{
    padding-left: 60px;
    position: relative;
    color: #4c4c4c;
}
.room_item > .room_info a{
    text-decoration: none;
}
.room_item > .room_info a h3{
    color: #0c0c0c;
    font-size: 2.2rem;
}
.room_item > .room_info > p{
    font-size: 1.2rem;
}
.room_item > .room_info > ul{
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}
.room_item > .room_info > .book_now_btn{
    border-radius: 0;
    padding: 20px 60px;
}
.room_slides{
    margin-bottom: 50px;
}
/* .room_item > .room_info::before{
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
    z-index: 1;
}
.room_item > .room_info::after{
    content: '';
    width: 30px;
    height: 30px;
    background: #239087;
    position: absolute;
    top: 30px;
    left: 16px;
    border-radius: 50%;
    z-index: 2;
} */
.resort_gallery_inner{
    background: #43a8a5;
    color: #fff;
    padding: 100px 0;
    padding-bottom: 180px;
}
.resort_gallery_inner h2{
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 50px;
}
.resort_gallery .item{
    height: 400px;
}   
.resort_gallery .item .img{
    height:100%;
}
.resort_gallery .item .img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.resort_gallery .slick-slide .item{
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.resort_gallery .slick-slide .item{
    -webkit-transform: scale(0.6);
       -moz-transform: scale(0.6);
        -ms-transform: scale(0.6);
         -o-transform: scale(0.6);
            transform: scale(0.6);
}
.resort_gallery .slick-slide.slick-active .item{
    -webkit-transform: scale(0.8)!important;
       -moz-transform: scale(0.8)!important;
        -ms-transform: scale(0.8)!important;
         -o-transform: scale(0.8)!important;
            transform: scale(0.8)!important;
}
.resort_gallery .slick-slide.slick-current .item{
    -webkit-transform: scale(1)!important;
       -moz-transform: scale(1)!important;
        -ms-transform: scale(1)!important;
         -o-transform: scale(1)!important;
            transform: scale(1)!important;
}
.spec_resort_area{
    padding: 100px 0px;
}
ul.spec_resort_inner{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
ul.spec_resort_inner > li{
    min-width: calc(33.33%);
    max-width: calc(33.33%);
    padding: 15px;
}
ul.spec_resort_inner > li .img{
    margin-bottom: 25px;
    display: block;
    height: 300px;
}
ul.spec_resort_inner > li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
ul.spec_resort_inner > li h3{

}
ul.spec_resort_inner > li p{
    color: #4c4c4c;
    font-size: 1.3rem;
}
.f_roomtype{
    text-align: center;
    padding: 40px 0;
}
.f_roomtype .f_title > h3{
    margin-bottom: 20px;
}
.f_roomtype > ul{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.f_roomtype > ul > li a{
    color: #4c4c4c;
    font-size: 1.3rem;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.f_roomtype > ul > li a:hover{
    -webkit-transform: translateY(-5px);
       -moz-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
         -o-transform: translateY(-5px);
            transform: translateY(-5px);
}
.resort_gallery .slick-prev{
    background-image: url('../img/icon/i-prev-white.png')!important;
}
.resort_gallery .slick-next{
    background-image: url('../img/icon/i-next-white.png')!important;
}
.slick-dots li button{
    width: 30px!important;
    height: 30px!important;
}
.slick-dots li button:after,
.slick-dots li button:before{
    color: #ccc!important;
    width: 30px!important;
    height: 30px!important;
    font-size: 14px!important;
    opacity: 0.8!important;
}
.slick-dots li.slick-active button:before{
    opacity: 1!important;
    color: #239f97!important;
}
.slick-dots{
    bottom: -50px!important;
}
.banner_area{
    height: 35vw;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.banner_area::before{
    content: '';
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
}
.banner_inner_content{
    min-width: 100%;
    max-width: 100%;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.banner_inner_content h2{
    font-size: 3rem;
    font-weight: 300;
}
.banner_inner_content h1{
    font-size: 4rem;
    font-weight: 400;
}
.banner_inner_content p{
    font-size: 2rem;
    font-weight: 300;
}
.room_area{
    padding: 80px 0;
}
.room_area > .container > h3{
    color: #239f97;
    margin-bottom: 15px;
}
.room_area .room_list{
    padding: 30px 0;
    padding-top: 0;
}
.room_list .explor_item{
    padding-bottom: 40px;
}
.room_list .explor_item .img{
    margin-bottom: 20px;
    display: block;
    height: 300px;
    overflow: hidden;
    text-decoration: none;
}
.room_list .explor_item .img > img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.room_list .explor_item:hover .img > img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.room_list .explor_item .explor_text > ul{
    list-style: none;
    padding: 0;
    padding-bottom: 10px;
}
.room_list .explor_item .explor_text .room_subject{
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    padding-bottom: 5px;
    display: block;
}
.room_list .explor_item .book_now_btn{
    border-radius: 0;
    font-size: 1rem;
}
.room_details_inner{
    padding: 50px 0;
    padding-top: 0;
}
.search_right_sidebar .book_room_area{
    padding: 40px 30px;
    color: #fff;
}
.search_right_sidebar .book_room_box{
    flex-wrap: wrap;
    min-width: 100%;
}
.search_right_sidebar .book_table_item{
    display: block;
    width: 100%;
    text-align: center;
}
.search_right_sidebar .book_table_item > h3{
    font-size: 1.3rem;
    text-align: center;
}
.search_right_sidebar .book_room_box .daterang,
.search_right_sidebar select{
    background: none;
    width: 100%;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    box-shadow: none;
    text-align: center;
    font-size: 1rem;
}
.search_right_sidebar select:disabled{
    border: none;
    text-align: center;
    text-align-last:center;
}
.room_details_inner > .col-md-4{
    max-width: 400px;
    min-width: 400px;
}
.room_details_inner > .col-md-8{
    min-width: calc(100% - 400px);
    max-width: calc(100% - 400px);
    flex-grow: 1;
}
.search_right_sidebar .alert{
    padding-left: 10px;
    padding-right: 10px;
    /* margin-bottom: 0;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 0;
    border: none; */
}
.search_right_sidebar .alert strong{
    font-size: 1.2rem;
}
.room_details_img{
    padding-bottom: 40px;
}
.room_details_img .slider-for{
    padding-bottom: 5px;
}
.room_details_img .slider-nav .slick-slide{
    padding: 5px;
}
.resot_list > ul{
}
.daterangepicker .drp-buttons .btn,
.daterangepicker .drp-selected,
.daterangepicker .calendar-table th, .daterangepicker .calendar-table td,
.daterangepicker select.yearselect,
.daterangepicker select.monthselect{
    font-size: 15px;
}
.daterangepicker{
    border-radius: 0;
    border: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
.daterangepicker td.active,
.daterangepicker td.active:hover{
    background-color: #239087;
}
.daterangepicker .drp-buttons .btn.btn-primary{
    background-color: #239087;
    border-color: #239087;
}
.daterangepicker::before{
    display: none;
}
.daterangepicker td.start-date,
.daterangepicker td.end-date{
    border-radius: 0;
}
.booking_form .banner_area{
    height: 400px;
    background: rgb(76,151,146);
    background: linear-gradient(0deg, rgba(76,151,146,1) 0%, rgba(76,151,146,1) 16%, rgba(153,204,201,1) 100%);
}
.booking_form .banner_area::before{
    display: none;
}
@media (min-width: 1440px) {
    .booking_layout .container{
        max-width: 1199px;
    }    
}
.booking_layout .sec1,
.booking_layout .sec2{
    padding: 80px 0;
    padding-bottom: 60px;
}
.booking_layout .sec1{
    background: #fff;
    padding-bottom: 60px;
}
.booking_layout .sec2{
    background: #dfdfdf;
    padding-bottom: 30px;
}
.booking_layout .bk_title{
    text-align: center;
    color: #239f97;
}
.booking_layout .bk_subtitle{
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 20px;
}
ul.booking_room_infos{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
ul.booking_room_infos > li{
    display: flex;
    gap: 50px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}
ul.booking_room_infos > li.fnRoomRows{
    
}
ul.booking_room_infos > li > .room_img{
    max-width: 300px;
    min-width: 300px;
}
ul.booking_room_infos > li > .room_infos{
    flex-grow: 1;
}
ul.booking_room_infos > li > .room_infos{
    color: #4c4c4c;
}
ul.booking_room_infos > li > .room_infos .room_fn{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}
ul.booking_room_infos > li > .room_infos .room_fn a{
    font-size: 1.5rem;
    text-decoration: none;
    color: #333;
}
ul.booking_room_infos > li > .room_infos .room_fn a.del{
    color: #fff;
    background: #dc3545;
    padding: 0 10px;
    font-size: 1rem;
}
ul.booking_room_infos > li > .room_infos ul.room_price{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
ul.booking_room_infos > li > .room_infos ul.room_price > li{
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
ul.booking_room_infos > li > .room_infos ul.room_price > li.disabled{
    text-decoration: line-through;
    color: #999;
}
ul.booking_room_infos > li .room_addon > h4{
    font-size: 1.2rem;
}
ul.booking_room_infos > li .room_addon .fn_addon .add_rows{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
ul.booking_room_infos > li .room_addon .fn_addon .add_rows{
    padding-bottom: 10px;
}
ul.booking_room_infos > li .room_addon .fn_addon .add_rows .add_name{
    flex-grow: 1;
}
#fnDiscount .discount,
ul.booking_room_infos > li .room_addon .fn_addon .add_rows > *:not(.add_name){
    min-width: 130px;
    max-width: 130px;
    text-align: right;
}
#fnDiscount .distxt,
ul.booking_room_infos > li .room_addon .fn_addon .add_rows > .add_input{
    min-width: 60px;
    max-width: 60px;
    text-align: right;
}
ul.booking_room_infos > li .room_addon .fn_addon select{
    background: none;
    text-align: center;
    font-size: 0.9rem;
}
ul.booking_room_infos > li.b_sumtotal{
    margin-top: 15px;
    margin-bottom: 10px;
    justify-content: space-between;
    background: #000;
    color: #fff;
    font-size: 1.3rem;
    padding: 15px 30px;
}
ul.booking_room_infos > li.b_sumtotal strong{
    font-size: 400;
}
.boxcaptcha{
    display: flex;
    justify-content : center;
}
.roombtn{
    display: flex;
    gap: 20px;
    justify-content : center;
}
.fn_discount{
    justify-content: flex-end;
}
#fnDiscount{
    display: flex;
    gap: 15px!important;
    align-items: center;
    align-items: flex-start;
}
#fnDiscount .form-control{
    border: none;
}
#fnDiscount .discount{

}
#fnDiscount .discount::before{
    content: '-';
    display: inline-block;
}
#fnDiscount .distxt{
    font-weight: bold;
}
.payment_status .info{
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
ul.payment-lists{
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
ul.payment-lists > li{
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
ul.payment-lists > li .icon{
    max-width: 60px;
    min-width: 60px;
}
ul.payment-lists > li .icon img{
    max-width: 100%;
}
ul.payment-lists > li .info{
    font-size: 18px;
}
ul.payment-lists > li .info strong{
    font-size: 20px;
}
.swal2-modal .swal2-styled{
    outline: none;
}
.promotion_layout,
.news_layout{
    padding: 150px 0;
}
.inner_header{
    color: #239f97;
}
ul.event_inner{
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: -25px;
    margin-right: -25px;
}
ul.event_inner > li{
    max-width: 33.33%;
    min-width: 33.33%;
    padding: 25px;
    padding-bottom: 50px;
}
ul.event_inner > li .event_items .book_now_btn{
    border-radius: 0;
}
ul.event_inner > li .event_items .img{
    margin-bottom: 15px;
    display: block;
    height: 300px;
    overflow: hidden;
}
ul.event_inner > li .event_items .img > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
ul.event_inner > li:hover .event_items .img > img{
    -webkit-transform: scale(1.05);
       -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
         -o-transform: scale(1.05);
            transform: scale(1.05);
}
ul.event_inner > li .event_items .event_info .media{
    gap: 15px;
    padding-bottom: 10px;
}
ul.event_inner > li .event_items .event_info .media .media-left a{
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 15px;
    text-decoration: none;
    text-align: center;
}
ul.event_inner > li .event_items .event_info .media .media-left a > *{
    margin-bottom: 0;
    text-transform: uppercase;
}
ul.event_inner > li .event_items .event_info .media .media-body a{
    color: #000;
}
ul.event_inner > li .event_items .event_info .media .media-body a h4{
    margin-bottom: 0;
}
ul.event_inner > li .event_items .event_info > p{
    color: #4c4c4c;
}
.pagination{
    justify-content: center;
    gap: 15px;
}
.pagination .page-link{
    border: none;
    color: #239087;
}
.page-item.active .page-link{
    background: #239087;
}
.event_details_area{
    padding: 150px 0;
}
.news_relates ul.event_inner{
    flex-direction: column;
}
.news_relates ul.event_inner > li{
    min-width: 100%;
    max-width: 100%;
    padding-bottom: 10px;
}
ul.promotion_lists{
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    padding-right: -30px;
}
ul.promotion_lists > li{
    max-width: 50%;
    min-width: 50%;
    padding: 30px;
    position: relative;
}
ul.promotion_lists > li .promotion_item{
    position: relative;
}
ul.promotion_lists > li .promotion_info{
    text-align: center;
    padding: 30px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 100%;
    z-index: 1;
    color: #fff;
    background: hsl(175deg 61% 35% / 90%);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
ul.promotion_lists > li:hover .promotion_info{
    opacity: 1;
    top: 0;
}
ul.promotion_lists > li .promotion_item .promotion_info h4{
    font-size: 30px;
    margin-top: 25px;
}
ul.promotion_lists > li .promotion_item .promotion_info > p{
    font-size: 18px;
}
.review_gallery_area{
    background: #239087;
    color: #fff;
    padding: 100px 0;
}
.review_gallery_area .banner_area{
    height: auto;
}
.review_gallery_area .banner_area::before{
    display: none;
}
.grid_gallery_inner .grid{
    margin-left: -15px;
    margin-right: -15px;
}
.grid_gallery_inner .grid .grid-item{
    width: 33.33%;
    padding: 15px;
}
.grid_gallery_inner .grid .grid-item:nth-child(2){
    margin-top: 100px;
}
.grid_gallery_inner .grid .grid-item a{
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
}
.grid_gallery_inner .grid .grid-item .img{
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.grid_gallery_inner .grid .grid-item .img > img{
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.grid_gallery_inner .grid .grid-item:hover .img > img{
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}
.grid_gallery_inner .grid .grid-item h3{
    margin-top: 15px;
    font-weight: normal;
    margin-bottom: 0;
} 
.contact_area{
    padding: 100px 0;
    background: #fff;
}
.contact_map_area{
    background: #239087;
    padding: 100px 0;
}
.contact_map_area iframe{
    width: 100%;
    height: 700px;
    padding: 10px;
    background: #fff;
}
ul.contact_info_list{
    display: flex;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.contact_info_list > li{
    padding: 0 50px;
    border-right: 1px solid rgba(0,0,0,.1);
    min-width: 25%;
    max-width: 25%;
    text-align: center;
}
ul.contact_info_list > li:last-child{
    border-right: none;
}
ul.contact_info_list > li .icon{
    text-align: center;
    margin-bottom: 50px;
}
.contact_info{
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.contact_inner{
    padding-top: ;
}
.contact_inner > h4{
    margin-bottom: 20px;
}
.contact_inner form{
    padding: 0 50px;
}
#formContact .row{
    margin-bottom: 20px;
}
#formContact #btnSubmit{
    padding-left: 80px;
    padding-right: 80px;
}
#formContact .is-invalid{
    padding-top: 5px;
    color: #dc3545;
    display: inline-block;
    font-size: 14px;
}
#formContact label{
    font-size: 18px;
}
.boxAvataUpload div.form-valid::before {
    display: none !important;
}

.boxAvataUpload .recommetn {
    text-align: center;
    font-size: 0.9em;
}

.btnNewsUpload {
    overflow: hidden;
    width: 150px;
    height: 150px;
    border: 3px solid #eee;
    cursor: pointer;

    margin-bottom: 10px;
    margin-right: 10px;
    margin-bottom: 0px;
    position: relative;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}

.btnNewsUpload .icon {
    position: absolute;
    font-size: 5em;
    line-height: 0;
    width: 80px;
    height: 0;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #eee;
    z-index: 3;
}

.btnNewsUpload:hover .icon {
    z-index: 2;
}
.btnNewsUpload img {
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}
.btnNewsUpload:hover img {
    opacity: 0.1;
}

.btnNewsUpload input[type=file] {
    font-size: 99em;
    opacity: 0;
    cursor: pointer;
    z-index: 4;
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
}

.btnNewsUpload img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    object-fit: cover;
}

.logcontainer .boxAvataUpload {
    float: left;
}

.logcontainer .boxAvataUpload .btnNewsUpload {
    margin: 0;
}

.boxAvataUpload.CoverImg {
    text-align: left;
    max-width: 330px;
}
.boxAvataUpload.CoverImg .btnNewsUpload {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.boxAvataUpload.LogoImg .btnNewsUpload {
    width: 150px;
    height: 150px;
    margin-left: auto;
    margin-right: auto;
}
.boxAvataUpload .recommend{
    font-size: 0.9rem;
    color: #999;
    padding-top: 5px;
}
.booking_form .order_infos{
    background: #fff;
    padding: 100px 0;
    padding-top: 100px!important;
}
.order_infos .bk_title{
    text-align: left;
    font-size: 30px;
}
.order_infos .view_orders{
    background: #f2f2f2;
    padding: 30px;
}
.order_infos .view_orders > ul{
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}
.order_infos .view_orders > ul > li{
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.order_infos .view_orders > ul > li.list-group-item{
    margin-bottom: 0;
    border: none;
    background: none;
    padding-top: 7px;
    padding-bottom: 7px;
}
.order_infos .view_orders > ul > li.list-group-item.bgsub{
    background: #d4d4d4;
}
.order_infos .view_orders > ul > li.list-group-item.fn_discount{
    padding-bottom: 10px;
}
.order_infos .view_orders > ul > li.list-group-item.b_head{
    background: #239f97;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
}
.order_infos .view_orders .roominfo{
    display: flex;
    gap: 30px;
}
.order_infos .view_orders .roominfo > .img{
    max-width: 200px;
    min-width: 200px;
}
.order_infos .view_orders .room_addon h4{
    background: #747a81;
    text-align: center;
    color: #fff;
    padding: 10px 15px;
    font-size: 22px;
}
.payment_boxs{
    padding-top: 40px;
}
.payment_boxs > h3{
    font-size: 24px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.payment_boxs > h3 span{
    font-weight: normal;
    color: #999;
}
.help-block{
    color: #999;
    font-size: 14px;
}
.booking_status{
    border: 1px solid #ccc;
}
.booking_status > h3{
    background: #239087;
    color: #fff;
    padding: 20px 20px;
    font-size: 22px;
    text-align: center;
    margin-bottom: 0;
}
.booking_status .book_room_box{
    padding: 15px 20px;
}
.booking_status .payment_history > h5{
    background: #f2f2f2;
    padding: 15px 20px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 0;
}
.booking_status .payment_history > ol{
    padding: 15px 0;
    list-style: none;
}
.booking_status .payment_history > ol > li{
    padding-bottom: 15px;
}