  @import url('https://fonts.googleapis.com/css?family=Raleway:300,400,400i,500,600,700,700i');
@font-face{
    font-family: 'Palatino', serif;
    src: url('/wp-content/themes/parkavenue-V2/css/fonts/PalatinoLinotype-Italic.woff');
    font-style: italic;
}
html,body{
    width: 100%;
    font-size: 16px;
    margin: 0 auto;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
    background-color: #f8f8f8;

}

html.no-scroll{
    overflow: hidden;
}

a{
    color: #B2BB1E;
}

.header{
    position: absolute;
    top: 0;
    z-index: 100;
    width: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.header_container{
    width: 80%;
    margin: 0 auto;
    height: auto;
    background: transparent;
    height: 60px;
}
@media (min-width: 999px) and (max-width: 1350px){
    .header_container {
        width: 95%;
    }
}
.header_contacts{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 5px;
}
.header_contacts_list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 0;
}
.header_contacts_list_single:nth-child(n+2){
    padding-left: 50px;
}
.header_contacts_list_single a{
    font-size: 13px;
    text-transform: uppercase;
    color: #fff !important;
    font-weight: bold;
    text-decoration: none;
}
.header_contacts_list_single span{
    padding-right: 10px;
    color: #fff;
    text-decoration: none;
}
.header_right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    padding-right: 3%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.social_login{
    padding: 7px 20px;
    text-transform: uppercase;
    border-radius: 25px;
    border: 1px solid white;
    text-align: center;
    color: #fff;
}
.lang_curr{
    display: none;
    color: #fff;
}
.header_lang_sel a{
    text-decoration: none;
}

.lang_sel{
    display: none;
}
.navbar{
    width: 100%;
    background: #B2BB1E;
    height: 70px;
}
.header_nav{
    width: 80%;
    margin: 0 auto;
}
.header .logo{
    height: 70px;
    /*margin-top: -1px;*/
}
.header .logo a{
    display: block;
    width: 100%;
    height: 100%;
}

.header .logo img{
    max-width: 300px;
    max-height: 70px;
    /*max-width: 300px;*/
    /*height: 71px;*/
}
.header nav ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0 20px;
}
.header nav ul > li{
    display: block;
    position: relative;
    font-size: 13px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.header nav ul li a{
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 25px 7px;
    letter-spacing: 0.5px;
}
/*.header #menu-primary-menu >li >a::before,*/
.menu-primary-container >ul >li >a::before
{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 27%;
    width: 30%;
    height: 2px;
    background-color: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate(-50%, 0) scaleX(0);
    -ms-transform: translate(-50%, 0) scaleX(0);
    transform: translate(-50%, 0) scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
/*.header #menu-primary-menu >li >a:hover::before,*/
/*.header #menu-primary-menu >li >a:focus::before,*/
.menu-primary-container >ul >li >a:hover::before,
.menu-primary-container >ul >li >a:focus::before{
    -webkit-transform: translate(-50%, 0) scaleX(1);
    -ms-transform: translate(-50%, 0) scaleX(1);
    transform: translate(-50%, 0) scaleX(1);
}
.menu-primary-container >ul .current-menu-item >a::before{
    -webkit-transform: translate(-50%, 0) scaleX(1);
    -ms-transform: translate(-50%, 0) scaleX(1);
    transform: translate(-50%, 0) scaleX(1);
}
.header nav ul li ul {
    background: #B2BB1E;
    display:none;
    width: 260px;
    position: absolute;
    top: 67px;
    left: 35px;
    padding: 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    text-align: left;
}
@media(min-width: 1000px) and (max-width: 1200px){
    .header nav ul li ul{
        left: 20px;
    }
}
.header nav ul li:hover > ul,
.header nav ul li ul:hover{
    visibility: visible;
    opacity: 1;
    display: block;
}
.header nav ul li  > ul > li > a {
    color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid white;
}
.header_nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 70px;
}
.logo,
.book_now_button{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
}
.menu-primary-container{
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.book_now_button{
    display: none;
}
.navbar.sticky .social_login_sticky{
    display: block;
}
.header_lang_sel{
    padding: 10px;
}
.sub-menu li {
    padding: 0 10px;
    text-transform: uppercase;
}

@media (max-width: 999px){
    .sub-menu li {
        padding: 0;
    }
}


.sub-menu li:last-child{
    padding-bottom: 30px;
}
.social_login_sticky{
    border-radius: 50%;
    color: #fff;
    border: solid 1px #fff;
    padding: 9px 11px;
    display: none;
}
.sticky{
    position: fixed;
    top: 0;
}
.news_and_social_container{
    background: #f8f8f8;
}
.news_and_social{
    width: 80%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 50px;
}
.news_and_social .newsletter_title{
    font-weight: 400;
    margin-bottom: 0;
    text-transform: uppercase;
}
.news_and_social .newsletter{
    width: 60%;
    height: auto
}
.news_and_social .follow_us{
    width: 40%;
    height: auto;
}
.footer_mobile{
    display:none;
}
.footer{
    background: #222222;
    color: #f8f8f8;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
html[lang="zh-hans"] .footer{
    flex-direction: column;
}

html[lang="zh-hans"] .footer .icp-info{
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    margin: 20px auto 10px auto;
    width: 80%;
}

.footer_container{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    width: 80%;
    margin: 0 auto;
    letter-spacing: 1.5px;
    font-weight: 300;

}
.footer_title{
    text-transform: uppercase;
    margin: 24px 0 10px 0;
}
.footer a{
    text-decoration: none;
    color: #fff !important;
}
.footer_nav{
    width: 15%;
    padding: 10px 10px 10px 0;
}
@media all and (-ms-high-contrast:none)
{
.footer_nav { width: 37%; } /* IE10 */
*::-ms-backdrop, .footer_nav { width: 37%; } /* IE11 */
}
.footer_nav ul{
    text-transform: uppercase;
    padding-left: 0;
}
.footer_nav ul li{
    display: block;
    padding: 10px 10px 10px 0;
}
.footer_container_misc{
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
    margin-right: 15px;
}
.footer_misc {
    padding: 10px 0 10px 10px;
}
.footer_misc ul{
    padding-left: 20px;
    margin-top: 0;
}
.footer_misc ul li{
    display: block;
    padding-top: 10px;
    font-size: 13px;
}
.footer_misc h4{
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: 25px;
}
.copyright{
    color: #000;
    background: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 300;
}
.news_and_social_container .gform_body{
    height: auto;
}
.news_and_social_container{
    margin-top: 0;
}
.news_and_social_container .gform_footer.top_label{
    visibility: hidden;
}
.news_and_social_container .validation_error{
    display: none;
}
.news_and_social_container .gfield_error{
    margin:0;
}
.news_and_social_container .submit_subscribe{
    padding: 15px 25px;
    background-color: #988a7f;
    text-transform: uppercase;
    color: #fff;
    margin-top: 20px;
    width: 150px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
}
@media (max-width: 999px){
    .news_and_social_container .submit_subscribe{
        width: 100%;
    }
    #label_16_2_1{
        text-align: left;
    }
}
.news_and_social_container .ginput_container_email{
    font-size: 13px;
    width: 18rem !important;
}
.news_and_social_container .top_label li.gfield.gf_inline{
    padding-right: 0px;
}
.news_and_social_container .gfield_required{
    display: none;
}
.news_and_social_container .ginput_container_email input{
    background: #fff;
}
.news_and_social_container ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    font-size: 12px;
    font-weight: bold;
}
.news_and_social_container ::-moz-placeholder { /* Firefox 19+ */
    font-size: 12px;
    font-weight: bold;
}
.news_and_social_container :-ms-input-placeholder { /* IE 10+ */
    font-size: 12px;
    font-weight: bold;
}
#label_16_2_1{
    font-size: 10px;
    font-weight: 600;
    color: #000;
}
.subscribe_checkbox{
    padding-top: 10px;
    font-size: 12px;
    line-height: 18px;
    color: #575756;
}
.footer_widgets{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer_widgets a{
    text-transform: capitalize;
    /*color: #222;*/
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 13px;
    margin-top: 15px;
}
.socials{
    padding-top: 20px;
    margin-bottom: 50px;
}
.socials a{
    border-radius: 100%;
    display: inline-block;
    text-decoration: none;
    background: #978a7f;
    border: black;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    margin-right: 25px;
}
.socials a i{
    color: #fff;
}
.socials a .fab{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 100%;
    font-size: 20px;
}
.socials .wechat-account{
    width: 150px;
    height: 150px;
    display: inline-block;
    margin-right: 25px;
}

.socials .wechat-account img{
    width: 100%;
    height: auto;
}

.socials .weibo-account{
    color: #FFFFFF;
}

html[lang="zh-hans"] .socials{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

@media(min-width: 320px) and (max-width: 767px){
    #mobile_booking_menu .mobile_booking_row.check_in_out{
        flex-wrap: wrap;
        margin-top: 5vh;
    }
    .mobile_booking_row.check_in_out.one_line{
        border-bottom: 0;
    }
    .mobile_booking_row.check_in_out .mobile_booking_tab.check_in,
    .mobile_booking_row.check_in_out .mobile_booking_tab.check_out{
        width: 100%;
        border-bottom: 1px solid #a99436;
    }
    .mobile_booking_row.check_in_out .mobile_booking_tab.check_in{
        margin-bottom: 20px !important;
    }

    .qs_booking_tab_check_in:before, .qs_booking_tab_check_out:before{
        display: none;
    }

    .qs_booking_tab_check_in:after, .qs_booking_tab_check_out:after{
        content: "\e923";
        font-family: "icomoon";
        position: absolute;
        right: 10px;
        font-size: 16px;
        font-style: normal;
    }

    /*.mobile_booking_tab .qs_booking_tab_check_in:after,*/
    /*.mobile_booking_tab .qs_booking_tab_check_out:after{*/
    /*    display: none;*/
    /*}*/

    .news_and_social_container{
        /*height: 700px;*/
        height: 100%;
    }
    .news_and_social_container form{
        text-align: center !important;
    }
    .news_and_social_container .gf_inline{
        display: inline;
    }
    .news_and_social_container .ginput_container_email{
        width: 100% !important;
    }
    .news_and_social_container #field_16_1{
        float:left;
        width: 100%;
    }
    .news_and_social_container .submit_subscribe{
        margin-top: 37px;
        padding: 20px 22px;
    }
}


@media(min-width: 768px) and (max-width: 999px){
    .news_and_social_container{
        height: 800px;
    }
    .news_and_social{
        padding-top: 0;
    }
    .news_and_social_container form{
        text-align: center !important;
    }
    .news_and_social_container .gf_inline{
        display: inline !important;
    }
    .news_and_social_container .ginput_container_email{
        width: 100% !important;
    }
    .news_and_social_container #field_16_1{
        float:left !important;
        width: 100% !important;
    }
    .news_and_social_container .submit_subscribe{
        padding: 15px 30px;
    }
}

.hero_slider{
    position: relative;
    top: 0;
    z-index: 1;
    height: calc(85vh - 40px);
}
.hero_slider-cell{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 35%;
    height: calc(85vh - 40px) !important;
    position: relative;

}
@media(max-width: 999px){
    .hero_slider{
        height: calc(61vh - 40px);
    }
    .hero_slider-cell{
        height: calc(61vh - 40px) !important;

    }
}
.full_height{
    height: calc(100vh - 40px) !important;
}
@media (min-width: 1000px) and (max-height: 650px) {
    .full_height {
        height: calc(100vh - -140px) !important;
    }
    .hero_caption_title {
        top: 25% !important;
    }
    .hero_caption {
        top: 39% !important;
    }
}


.slick_next_hero,
.slick_prev_hero{
    font-size: 0;
    line-height: 0;
    position: absolute;
    bottom: 0;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    cursor: pointer;
    color: black;
    border: none;
    outline: none;
    background-color: rgba(6, 6, 6, 0.3) !important;
    z-index: 1;
}
.slick_next_hero{
    right: 0;
}
.slick_prev_hero{
    right: 60px;
}
@media(min-width: 1000px) and (max-width: 1200px){
    .slick_next_hero,
    .slick_prev_hero{
        width: 40px;
        height: 40px;
    }
    .slick_prev_hero{
        right: 40px;
    }
}
.hero_caption_title{
    position: absolute;
    color: #fff;
    left: 5%;
    top: 28%;
    font-size: 36px;
    letter-spacing: 2.5px;
    font-weight: 500;
    margin: 10px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 2px #222, 0px -5px 35px rgba(255,255,255,0.3), 2px 8px 6px rgba(0,0,0,0.2);
}
.hero_caption{
    position: relative;
    color: #fff;
    top: 43%;
    left: 5%;
    font-size: 17px;
    line-height: 120%;
    font-style: italic;
    width: 30%;
    font-weight: 300;
    text-shadow: 2px 2px 2px #222, 0px -5px 35px rgba(255,255,255,0.3), 2px 8px 6px rgba(0,0,0,0.2);
    margin: 10px 0;
}
.caption_centeredtitle,
.caption_centeredtext{
    top: 40%;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}
.caption_centeredtext{
    top: 45%;
    width: 100%;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 3px;
}
.hero_slider-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero_slider-container .caption_centeredtitle,
.hero_slider-container .caption_centeredtext{
    position: relative;
    transform: none;
    top: 0;
    left: auto;
}

@media (max-width: 999px){
    .hero_slider-container{
        display: none;
    }
}

.booking_container:not(.sticky_booking),
.single_property_booking:not(.sticky_booking){
    max-width: 1550px;
}

.single_property_booking.inner_page_booking,
.booking_container.inner_page_booking{
    max-width: 100%;
}

.booking_container,
.single_property_booking{
    /*max-width: 1550px;*/
    width: 100%;
    /*width: 80%;*/
    position: absolute;
    /*height: 80px;*/
    top: auto;
    bottom: 0;
    /*top: calc(100vh - 80px);*/
    /*background: #fff;*/
    z-index: 101;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.qs_container{
    max-width: 1550px;
    margin: 0 auto;
    height: 80px;
}

.sticky_booking{
    position: fixed;
    top: 70px;
    width:100%;
    height: 70px;
    z-index: 20;
}

.sticky_booking,
.inner_page_booking{
    background: #FFFFFF;
}

.sticky_booking .qs-form_checkin,
.sticky_booking .qs-form_checkout{
    top: 40px;
    bottom: auto;
}

#mobile_booking_menu{
    display: none;
    opacity: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity ease .3s;
    background: #FFFFFF;
}

#mobile_booking_menu .mobile_booking_inner{
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    height: 100%;
}

.inner_page_booking{
    position: absolute;
    top: 130px;
    width:100%;
    height: 70px;
    z-index: 20;
}
.intro_container{
    width: 70%;
    margin: 100px auto;
    padding: 0 15px;
}
.quotes_text{
    width: 60%;
    font-size: 30px;
    letter-spacing: 0.5px;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    font-family: 'Palatino', serif;
    position: relative;
    margin-bottom: .5rem;

}
.quotes_text:before {
    font-weight: bold;
    color: #aaaaaa;
    content: "“";
    position: absolute;
    left: -.4em;
}
html[lang="zh-hans"] .quotes_text:before {
    left: -1.2em;
}

.quotes_text:after {
    content: "”";
    margin-right: -1rem;
    font-weight: bold;
    color: #aaaaaa;
}
.circles_container{
    width: 45vw;
    margin: 50px auto;
    height: 300px;
    position: relative;
    left: calc(20% - 407px);
}
.circle {
    border-radius: 50%;
    background-color: #dd9057;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 320px;
    height: 320px;
    text-align: center;
    position: relative;
    top: 0;
    left:0;
}
.circle_two {
    border-radius: 50%;
    background-color: #80914d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 320px;
    height: 320px;
    text-align: center;
    position: relative;
    bottom: 320px;
    left: 280px;
}
.circle_three{
    border-radius: 50%;
    background-color: #75a2a8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 320px;
    height: 320px;
    text-align: center;
    position: relative;
    bottom: 640px;
    left: 560px;
}
.circles_mobile_container{
    display:none !important;
}

@media (max-width: 767px){
    .circles_mobile_container{
        display: block !important;
        width: 100%;
    }
    .circles_mobile{
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 50%;
        width: 300px;
        height: 300px !important;
        text-align:center;
    }
    .orange {
        background-color: #dd9057;
    }
    .green {
        background-color: #80914d;
        margin-left: -15px;
    }
    .blue{
        background-color: #75a2a8;
        margin-left: -21px;
    }

}
.circle_icon{
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    color: #fff;
}
.circle_title{
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 0;
    color: #fff;
}
.circle_text{
    font-size: 14px;
    color: #fff;
    line-height: 25px;
    font-weight: 500;
}
.section_title{
    text-transform: uppercase;
    text-align: center;
    font-size: 45px;
    font-weight: 600;
    letter-spacing: 1.5px;
    width: 50%;
    margin: 100px auto 50px auto;
    color: #978a7f;
}

.first_title{
    margin: 100px auto 30px auto;
    word-break: keep-all;

}
.no_slideshow {
    padding-top: 200px;
}
.inner_page_title{
    margin: 50px auto 25px auto;
}
.section_caption{
    text-align: center;
    font-size: 16px;
    font-style: italic;
    line-height: 25px;
    letter-spacing: 0;
    width: 60%;
    margin: 50px auto 50px auto;
    color: #978a7f;
}
.section_caption_bold {
    font-size:20px;
    font-weight:700;
}
.section_caption p{
    margin: 0;
}
.cta_button_wrap {
    text-transform: uppercase;
    width:30%!important;
}

.first_caption{
    margin: 30px auto;
    color: #555;
}
.featured_promo{
    width: 100%;
    margin: 0 auto;
    background: #d5d1c5;
    height: 600px;
    padding-top: 20px;
    padding-right: 6%;
}

body.single-property .featured_promo{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

body.single-property .featured_promo .book_direct{
    width: 100%;
}

body.single-property .featured_promo .discover_more{
    position: absolute;
    top: auto;
    /*left: 50%;*/
    bottom: -27px;
    /*transform: translateX(-50%);*/
}

@media (max-width: 999px){
    body.single-property .featured_promo .discover_more{
        position: relative;
        bottom: auto;
        transform: none;
        left: auto;
    }
    .no_slideshow {
        padding-top: 70px;
    }
}


@media(min-width: 1001px) and (max-width: 1847px){
    .featured_promo{
        height: 626px;
    }
}
.book_direct{
    color: #555;
    font-size: 35px;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}
.book_direct_caption{
    color: #555;
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    font-style: italic;
    padding: 20px;
    width: 47%;
    margin: 0 auto 40px auto;
}
.promo_wrapper,
.property_wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*width: 106%;*/
    /*margin-left: -2%;*/
    width: 95%;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
}
.property__entry, .property_content {
    flex-grow: 1;
}

.property__entry,
.promo__entry{
    height: 365px;
    background-position: center center;
    background-size: cover;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 33.333333%;
    flex: 1 0 33.333333%;
    -ms-transform: skew(-5deg);
    transform: skew(-5deg);
    -webkit-transform: skew(-5deg);
    -moz-transform: skew(-5deg);
    -o-transform: skew(-5deg);
}
/*.property__entry{*/
/*    margin-right: -1px;*/
/*}*/
/*.property__entry .overlay{*/
/*    top: 250px;*/
/*}*/

.single_property {
    width: calc(33% - 30px);
    padding: 25px 10px;
    /* newwwww */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap:nowrap;
    flex-wrap: nowrap;
}
.single_property.hidden {
    display:none;
    /*width:0px!important;*/
    /*height:0px!important;*/
    /*margin:0px!important;*/
    /*padding:0px!important;*/
}
.property_content {
    position: relative;
    left: -16px;
    background: #fff;
    box-shadow: 0 0 20px rgba(120, 120, 120, .08);
}

.property_image {
    position: relative;
    height: 365px;
    background: #ccc;
    background-size: cover;
    background-position: center center;
}
.hotel_country {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.flag_country {
    display: inline-block;
    width: 50px;
    height: 42px;
    background-size: cover;
    background-position: center left;
    margin-right: 10px;
}
.country_label {
    display: inline-block;
}

.flag-and-logo{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
}

.flag-and-logo .custom-hotel-logo{
    margin-left: auto;
}
.flag-and-logo .custom-hotel-logo.only_logo{
    margin-left: 0;
}

.custom-hotel-logo{
    width: 100px;
    height: 50px;
}

.custom-hotel-logo img{
    width: 100%;
    height: auto;
}


.filter_wrapper {
    margin: 20px auto;
    width: 33%;
}
.filter_wrapper.properties{
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
}

.filter_wrapper.properties .filter-wrap-mobile{
    width: 50%;
}

.filter_wrapper.properties .filter-wrap-mobile .filter-content{
    padding: 0 10px;
}

.filter-wrap-mobile{
    margin-bottom: 20px;
}

.filter-wrap-mobile:last-child{
    margin-bottom: 0;
}

@media screen and (max-width:767px) {
    .filter_wrapper.properties .filter-wrap-mobile{
        width: 100%;
    }
}

.middle_title {
    display: block;
    color: #96853b;
    text-align: left;
    text-transform: uppercase;
    font-size: 13px;
}
#select_filter {
    height: 50px;
    background-color: #e9e8e3;
    border: 1px solid #e9e8e3;
    width: 100%;
    text-transform: uppercase;
    text-indent: 10px;
    margin-top: 8px;
}
#load-more {
    padding: 15px 25px;
    background-color: #988a7f;
    text-transform: uppercase;
    color: #fff;
    margin-top: 20px;
    width: 150px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.featured_promo h3{
    margin-left: 19px;
}
.featured_promo h3,
.featured_promo .discover_btn,
.featured_promo span{
    -webkit-transform: skew(5deg);
    -ms-transform: skew(5deg);
    transform: skew(5deg);
    min-width: 192px;
}
.discover_btn{
    padding: 15px 50px;
    z-index: 3;
    position: relative;
    top: -15px;
    background: #fff;
    font-size: 12px;
    color: #988a7f;
    letter-spacing: 0.5px;
    text-align: center;
    left: calc(50% - 96px);
    font-weight: bold;
    text-transform: uppercase;
    border-color: #fff;
    cursor: pointer;
}
.featured_promo .offer_hotels{
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.7px;
    list-style: none;
    position: absolute;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    padding-top: 10px;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
    -webkit-transform: skew(5deg);
    -ms-transform: skew(5deg);
    transform: skew(5deg);
}
.featured_promo .offer_overlay{
    background: rgba(151,138,127,0.8);
    position: relative;
    top: 60%;
    height: 56%;
    z-index: 2;
}
.featured_promo .offer_details{
    font-size: 20px;
    width: 70%;
    margin: 5px auto;
    text-align: center;
    color: #fff;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.offer_details .offer{
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}
.offer_details .available_from{
    text-transform: lowercase;
    font-size: 16px;
    font-family: 'Palatino', serif;
    font-style: italic;
}
.offer_details .currency{
    font-weight: bold;
}
.discover_more{
    padding: 5px 20px;
    color: #000;
    background: transparent;
    width: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
    top: -30px;
}
.discover_more_button{
    padding: 15px 45px;
    background: #978a7f;
    color: #fff;
    border-color:#978a7f;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
}
.overlay{
    /*opacity: 0.8;*/
    /*position: relative;*/
    /*top: 310px;*/
    /*height: 50%;*/
    position: relative;
    top: 100%;
    background: #fff;
}
.home_discover_title{
    margin: 110px auto 50px auto;
}
.home_discover_caption{
    margin: -20px auto 50px auto;
    width: 50%;
}
.hotel_info{
    color: #3a3a3a;
    /*-webkit-transform: skew(5deg);*/
    /*-ms-transform: skew(5deg);*/
    /*transform: skew(5deg);*/
    width: 80%;
    margin: 0 auto;
    /*text-align: center;*/
    padding: 15px 10px 10px;
}
.hotel_info .hotel_title{
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /*text-align: center;*/
    margin: 20px 0;
    height: 80px;
    display: flex;
    align-items: center;
}
.hotel_info .hotel_caption{
    font-size: 14px;
    font-weight: 500;
    /*text-align: center;*/
    line-height: 20px;
    height: 120px;
}
.properties_wrapper > div:hover .overlay{
    position: relative;
    top: 230px;
    height: 100%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.other_business_wrapper .single_property {
    width: calc(33% - 20px);
}
.other_business_wrapper > div:hover .overlay{
    position: relative;
    top: 200px;
    height: 100%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
.property__entry .hotel_caption{
    margin-bottom: 40px;
}
.property__entry:hover .overlay{
    position: relative;
    top: 170px;
    height: 100%;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}
@media (min-width: 1000px){
    .hidden_desktop{
        display: none !important;
    }
    .promo__entry_nonstretch {
        width:45%;
        padding:0px 30%;
    }
}

@media (min-width: 1000px) and (max-width: 1111px){

}

@media (min-width: 768px) and (max-width: 999px){
    .circles_container{
        width: auto;
        left: -0.3em;
    }
}

/* mobile */
@media (max-width: 999px){
    .promo__entry_nonstretch {
        width: 106%;
        padding:0px;
    }
    .mobile_booking_container{
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .booking_container,
    .single_property_booking{
        display: none !important;
    }
    .hidden_mobile{
        display: none !important;
    }
    .intro_container{
        margin: 20px 0;
        width: auto;
        padding: 0 50px;
    }
    .quotes_text{
        font-family: "Serif";
        position: relative;
        width: 100%;
        text-align: center;
        color: #222;
        font-size: 20px;
        line-height: 30px;
        width: auto;

    }
    .intro_container:before,
    .intro_container:after{
        position: relative;
        font-size: 32px;
        bottom: unset;
        color: #484848;
    }
    .intro_container:after{
        left: 100%;
    }
    .intro_container:before{
        top: 0;
    }
    .hero_caption_title{
        display: none;
    }
    .hero_caption{
        display: none;
    }
    .section_title{
        width: auto;
        margin: 30px;
        font-size: 24px;
    }
    .section_caption{
        font-size: 16px;
        margin: 20px auto;
        width: 90%;
    }
    .hotels_suites_caption{
        color: #978a7f;
        font-size: 14px;
    }
    .first_title{
        margin: 50px auto 0 auto;

    }
    .book_direct{
        font-size: 24px;
        font-weight: 600;
    }
    .book_direct_caption{
        width: auto;
        font-size: 16px;
        font-weight: 300;
    }
    .featured_promo{
        height: auto;
        padding-right: 0;
        overflow-x: hidden;
    }
    .featured_promo h3,
    .featured_promo .discover_btn,
    .featured_promo .offer{
        -ms-transform: none;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
    }
    .featured_promo .offer{
        font-weight: 500;
    }
    .featured_promo .offer_hotels{
        display: none;
    }
    .featured_promo .price,
    .featured_promo .currency{
        font-size: 18px;
    }
    .featured_promo .offer_hotels{
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        padding: 15px;
    }
    .featured_promo .discover_btn{
        /*left: calc(50% - 80px);*/
        font-weight: 500;
    }
    .featured_promo .offer_overlay{
        height: 48%;
        top: 52%;
    }
    .promo_wrapper{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 400px;
        width: 90%;
        margin: 0 auto;
        overflow: unset;
    }
    .promo_wrapper > div{
        width: 100%;
        height: 100%;
    }
    .promo_wrapper .slick-track{
        height: 100%;
    }
    .property__entry,
    .promo__entry{
        -ms-transform: none;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        margin-left: 0;
    }
    .promo__entry{
        height: 400px;
    }
    .property__entry .hotel_caption{
        margin-bottom: 0;
    }
    .featured_promo .discover_more{
        padding: 20px;
        width: auto;
        top: unset;
        z-index: unset;
        position: unset;
        margin: 50px auto 20px auto;
    }
    .discover_more_button{
        padding: 15px 20px;
        font-weight: 500;
    }
    .property_wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }
    .property__entry{
        margin-left: 0;
        width: 100%;
        /*height: 400px;*/
        /*margin: 10px 0;*/
        z-index: 1;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
    .property_content {
        left: 0;
    }
    .single_property {
        width: 96%;
        padding: 25px 0;
    }
    .filter_wrapper {
        width: 90%;
    }
    .other_business_wrapper .single_property {
        width: 100%;
    }
    /*.property_wrapper .overlay{*/
    /*    height: 210px;*/
    /*    top: 190px;*/
    /*    z-index: 2;*/
    /*}*/
    .hotel_info{
        -ms-transform: none;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        width: 90%;
    }
    .hotel_info .hotel_title{
        margin: 10px 0 5px 0;
    }
    .hotel_info .hotel_caption{
        margin-top: 0;
        font-size: 12px;
    }
    .news_and_social{
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        height: auto;
        width: 90%;
    }
    .newsletter_title{
        text-align: center;
        font-weight: normal;
        font-size: 25px;
    }
    .news_and_social .follow_us{
        width: auto;
        margin: 30px auto;
    }
    .news_and_social .socials{
        padding-left: 25px;
        text-align: center;
    }
    .news_and_social .newsletter{
        width: auto;
        margin: 0 auto;
        margin-bottom: 100px;
        text-align: center;
    }
    .copyright{
        font-size: 11px;
        padding: 20px auto;
    }

    .footer{
        display:none !important;
    }
    .footer_mobile{
        display:-webkit-box !important;
        display:-ms-flexbox !important;
        display:flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: auto;
        padding-bottom: 100px;
        background: #222;
        color: #fff;
        width: 100%;
    }
    .footer_mobile a{
        color: #fff!important;
        text-decoration: none;
    }
    .footer_mobile .footer_nav{
        width: 90%;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        border-bottom: 1px solid #fff;
        letter-spacing: 2px;
        font-size: 13px;
    }
    .menu-footer-container #menu-footer-1{
        padding: 0;
    }
    .footer_misc{
        width: auto;
        border-bottom: 1px solid #fff;
        margin: 0 15px;
        padding-left: 0;
    }
    .footer_mobile #menu-footer{
        padding: 20px 0;
    }
    .footer_mobile .footer_title_about:after{
        content: "\f067";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: relative;
        float: right;
    }
    .footer_mobile .icp-info{
        font-size: 13px;
        line-height: 20px;
        text-align: center;
        margin-top: 20px;
        padding: 0 10px;
    }

    .minus-footer:after{
        content: "\f068" !important;
        font-family: "Font Awesome 5 Free" !important;
        font-weight: 600 !important;
    }
    .footer_title_about{
        text-transform: uppercase;
        font-size: 14px;
        font-weight: normal;
        letter-spacing: 1.5px;
        margin: 15px 0;
    }
    .footer_misc ul {
        padding-left: 0;
    }

    .footer_misc ul li{
        font-size: 11px;
        padding-bottom: 5px;
    }

    .footer_widgets {
        align-items: center;
    }

    .news_and_social_container .gform_footer.top_label {
        /*display: none;*/
        visibility: hidden;
        height: 0;
    }

}


@media (max-width: 767px){
    .circles_container{
        display: none;
    }
    .single_property {
        width: 92%;
    }
}

/* end mobile*/

.discover_property{
    margin: 17px auto;
    background: #fff;
    padding: 15px 50px;
    font-size: 12px;
    font-family: 'Raleway', sans-serif;
    border: 1px solid #978a7f;
    color: #978a7f;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
}
.mobile_menu{
    background-color: #b2bb1e;
}
.mobile_menu,
.mobile_menu-frontpage{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
}
.mobile_menu-frontpage {
    height: 100px;
}
.mobile_menu-frontpage.is-scrolled{
    height: 70px;
    background: #b2bb1e;
}
.dark-overlay{
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.45)),to(rgba(0,0,0,0)));
    background: -o-linear-gradient(top, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%,rgba(0,0,0,0) 100%);
}
.white-overlay{
    background: -webkit-linear-gradient(top, rgba(255,255,255,0.65) 0%,rgba(255,255,255,0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.65)),to(rgba(255,255,255,0)));
    background: -o-linear-gradient(top, rgba(255,255,255,0.65) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,0.65) 0%,rgba(255,255,255,0) 100%);
}
.mobile_logo-isfront{
    display: none;
}
.mobile_logo_before_scroll{
    margin-top: 10px;
}
body:not(.home) .mobile_logo_before_scroll.dark-logo {
    margin-top: 0px;
    background-color: #fff;
}
.mobile_logo_before_scroll,
.mobile_logo-isfront.is-scrolled,
.mobile_logo{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mobile_logo_before_scroll.is-scrolled{
    display: none;
}
.mobile_logo,
.mobile_logo-isfront.is-scrolled{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
}

.mobile_menu .mobile_logo_before_scroll.light-logo{
    margin-top: 0;
    background-color: #fff;
}

.mobile_menu .hamburger_nav,
.mobile_menu .mobile_logo,
.mobile_menu .mobile_logo_before_scroll,
.mobile_menu .mobile_login,
.mobile_menu .mobile_logo-isfront.is-scrolled,
.mobile_menu .mobile_logo_before_scroll.light-logo,
.mobile_menu-frontpage .hamburger_nav,
.mobile_menu-frontpage .mobile_logo,
.mobile_menu-frontpage .mobile_logo-isfront,
.mobile_menu-frontpage .mobile_logo_before_scroll,
.mobile_menu-frontpage .mobile_login{
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.menu_overlay{
    width: 0;
    height: 100%;
    position: fixed;
    right: 0;
    background: rgba(0,0,0,0.5);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu_overlay_shown{
    width: 10%;
}
.nav-toggle{
    min-width: 110px;
    height: 70px;
    position: fixed;
    top: 0px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    margin-top: 0;

}
.mobile_menu-frontpage .nav-toggle{
    margin-top: 15px;
}
.mobile_menu-frontpage.is-scrolled .nav-toggle{
    margin-top: 0;
}



.nav-toggle-icon{
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    font-size: 0px;
    border-radius: 2px;
    vertical-align: top;
    position: relative;
    top: 35px;
    left: 30px;
}
.nav-toggle-icon:before{
    position: absolute;
    left: 0;
    width: 35px;
    height: 100%;
    border-radius: 2px;
    background: inherit;
    content: '';
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(-12px);
    -ms-transform: translateY(-12px);
    transform: translateY(-12px);
}
.nav-toggle-icon:after{
    position: absolute;
    left: 0;
    width: 35px;
    height: 100%;
    border-radius: 2px;
    background: inherit;
    content: '';
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
}
.menu_mobile{
    background: #B2BB1E;
    position: fixed;
    top: 0px;
    left: 0;
    height: 100%;
    width: 0;
    overflow: auto;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.menu_show{
    width: 90% !important;
}
.menu_open{
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.menu_open .nav-toggle-icon.cross,
.mobile_menu.is-scrolled .nav-toggle-icon.cross,
.mobile_menu-frontpage.is-scrolled .nav-toggle-icon.cross{
    background-color: transparent;
}
.cross:after{
    background-color: #fff;
    -webkit-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
}
.cross:before{
    background-color: #fff;
    -webkit-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
}
/*#mobile-primary-menu{*/
/*    padding-top: 100px;*/
/*}*/
#mobile-primary-menu,
#mobile-primary-menu .sub-menu{
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
#mobile-primary-menu >li{
    margin: 0 15px;
}
#mobile-primary-menu a{
    display: block;
    padding: 15px 0;
    margin: 5px 50px 5px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
}
#mobile-primary-menu .sub-menu a{
    margin: 5px 20px 5px 0;
    padding: 7px 0;
    font-weight: 100;
}
#mobile-primary-menu  > li::after{
    background-color: #fff;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    width: 100%;
}
.more_li{
    padding: 15px;
    position: absolute;
    right: 0rem;
    color: #fff;
}
.menu-item-has-children:before {
    position: absolute;
    right: 0.75rem;
    width: 1rem;
    text-align: center;
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-size: 32px;
    color: #fff;
    font-weight: 500;
}
.sub-menu-toggle{
    position: relative;
    left: 15rem;
    padding: 5px 25px;
    color: #fff;
    top: -2.5rem;
    font-size: 32px;
}
.show_more_plus{
    font-size: 32px;
    font-weight: 500;
}
.menu_mobile .lang_curr{
    display: none;
    position: relative;
    top: 70px;
    margin-left: 15px;
    border-bottom: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    padding: 15px 0;
}
.mobile_booking_container{
    display:none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    width: 100%;
    z-index: 100;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;

}
.mobile_booking_container .mobile_booking_call{
    width: 25%;
    background: #fff;
    line-height: 40px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 1px solid #666;
    text-decoration: none;
}
.mobile_booking_container .mobile_booking_call .fa-phone{
    transform: rotate(90deg);
}
.mobile_booking_container .mobile_booking_call .fa-phone:before{
    color: #000;
}

.mobile_booking_container .mobile_booking_contact{
    width: 25%;
    line-height: 40px;
    text-align: center;
    background: #ffff;
    color: #000;
    text-decoration: none;
}
.mobile_booking_container .mobile_booking_booking{
    width: 50%;
    line-height: 40px;
    background: #f42a3f;
    color: #fff;
    text-align: center;
    text-decoration: none;
}
.is-scrolled{
    background-color: #B2BB1E;
}

.about_us_highlighted{
    font-family: 'Palatino', serif;
    font-size: 25px;
    font-style: italic;
    font-weight: normal;
    line-height: 38px;
    letter-spacing: 0.5px;
    color: #B2BB1E;
    text-align: left;
    width: 60%;
    margin: 50px auto 0 auto;
}
.values_caption{
    text-align: center;
}
.about_us_content{
    font-size: 16px;
    line-height: 27px;
    color: #978a7f;
    width: 60%;
    margin: 32px auto 100px auto;
    text-align: left;
}
.about_us_slider{
    height: auto;
    margin: 70px 0;
}
.about_us_slider-cell{
    text-align: center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: contain;
    background-position: center center;
}
.about_us_slider .slick-slide{
    margin: 10px 10px 100px 10px;
    height: 450px;
    opacity: 0.6;
}
.about_us_slider .slick-current{
    opacity: 1;
}
.image_caption_title{
    font-size: 21px;
    letter-spacing: 0.5px;
    color: #b2bb1e;
    font-weight: 500;
    position: relative;
    top: 100%;
    margin-bottom: 0;
    text-transform: uppercase;
}
.image_caption{
    font-size: 16px;
    line-height: 25px;
    font-style: italic;
    position: relative;
    top: 100%;
}
.slick-arrow .fa{
    font-size: 17px;
    color: #fff;
}
.slick-prev,
.slick-next{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 60px;
    height: 60px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: black;
    border: none;
    outline: none;
    background: #666;
}
.about_us_slider .slick-prev{
    position: absolute;
    left: 10%;
    top: 40%;
    z-index: 1;
    background: rgba(20,20,20, .8)
}
.about_us_slider .slick-next {
    position: absolute;
    top: 40%;
    right: 10%;
    background: rgba(20,20,20, .8)
}
@media (max-width: 999px){
    .about_us_highlighted{
        width: 85%;
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 50px;
    }
    .about_us_content{
        width: 85%;
        line-height: 25px;
    }
    .about_us_slider-cell{
        width: 100%;
        height: auto;
    }
    .about_us_slider-cell img{
        height: 440px;
        width: 100%;
    }
    .about_us_slider .slick-prev{
        left: 0;
    }
    .about_us_slider .slick-next{
        right: 0;
    }
    .breadcrumb{
        display: none;
    }
}
.awards{
    width: 60%;
    margin: 50px auto;
}
.awards_title{
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 24px;
}
.awards_slider{
    height: auto;
    margin: 70px auto;
}
.awards_slider-cell{
    margin: 0 10px;
    text-align:center;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: contain;
    height: 80px;
    width: 80px;
}
.awards_slider .slick-slide{
    height: 80px;
}
.awards_wrap {
    padding: 1px;
    width: 100%;
    background-color: #fff;
}
.awards .slick-prev{
    position: absolute;
    left: -1%;
    top: 41%;
    z-index: 1;
    background: transparent;
    font-size: 25px;
}
.awards .slick-next {
    position: absolute;
    top: 36%;
    right: -8%;
    background: transparent;
    font-size: 25px;
}
@media (max-width: 999px){
    .awards_slider .slick-slide{
        height: 60px;
    }
    .awards_slider{
        width: auto;
    }
}
.properties_wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    overflow: hidden;
    /*width: 106%;*/
    /*margin-left: -2%;*/
    width: 95%;
    margin: 0 auto;
}
.properties__entry{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    background-position: center center;
    background-size: cover;
    height: 450px;
    -ms-transform: skew(-5deg);
    transform: skew(-5deg);
    -webkit-transform: skew(-5deg);
    -moz-transform: skew(-5deg);
    -o-transform: skew(-5deg);
}
.other_business .overlay{
    top: 305px;
}
.properties__entry .overlay{
    top: 325px;
}
@media (min-width: 1444px){
    .properties__entry .overlay{
        top: 324px;
    }

}
@media (max-width: 999px){
    .properties_wrapper {
        width: 90%;
        margin: 30px auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

    }
    .properties__entry{
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        background-position: center center;
        background-size: cover;
        margin: 30px auto;
        -ms-transform: none;
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
    }
    .properties__entry .overlay{
        height: 220px;
        top: 230px;
    }

}

.flex_container{
    width: 90%;
    margin: 0 auto 30px auto;
}
.flex_row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-filter: drop-shadow(0px 10px 5px rgba(0,0,0,0.1));
    filter: drop-shadow(0px 10px 5px rgba(0,0,0,0.1));
}
.offers_container{
    margin-bottom: 100px;
}
.offer_skew{
    -webkit-clip-path: polygon(0% 100%, 95% 100%, 95% 44%, 100% 0%, 5% 0%, 0% 44%);
    clip-path: polygon(0% 100%, 95% 100%, 95% 44%, 100% 0%, 5% 0%, 0% 44%);
}
.flex-box_item{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    background: #fff;
    color: #222;
    margin: 20px 10px;
    height: auto;
    position: relative;
    overflow: hidden;
    -webkit-filter: drop-shadow(0px 10px 5px rgba(0,0,0,0.1));
    filter: drop-shadow(0px 10px 5px rgba(0,0,0,0.1));
    /*-webkit-box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.1);*/
    /*box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.1);*/
}
.flex-box_item_photo{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
}
.offers_item_price{
    background: #b2bb1e;
    color: #fff;
    position: absolute;
    top: 0;
    right: 0px;
    z-index: 2;
    padding: 10px;
}
.inner_price{
    right: auto;
    left: calc(15% - 20px);
    text-align: left;
}
@media(max-width: 999px){
    .inner_price{
        left: calc(42% - 10px);
    }
    .inner_title{
        margin-top: 100px;
    }
}
.offers_item_feat{
    background: rgba(178, 187, 30, 0.8);
    color: #fff;
    position: absolute;
    top: 207px;
    z-index: 2;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}
.offers_item_feat .feat{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.from{
    font-family: 'Palatino', serif;
    font-style: italic;
    font-size: 21px;
    line-height: 25px;
}
.currency,
.price{
    font-size: 21px;
    font-weight: 600;
}
.flex-box_item_title{
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 300;
    min-height: 60px;
    padding: 20px 25px 0 25px;
    margin:0;
}
.flex-box_item_desc{
    font-size: 16px;
    padding: 20px;
    line-height: 1.56;
    font-weight: 300;
    min-height: 30px;
    padding: 20px 25px 0 25px;
}
.flex-box_item_buttons{
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;

}
.flex-box_item_buttons a {
    text-decoration: none;
}

.offers_item_book_now_button{
    padding: 15px 30px;
    font-size: 12px;
    letter-spacing: 0.5px;
    background-color: #f4293f;
    border: 1px solid #f4293f;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    width: 43%;
    cursor: pointer;

}
.offers_select_hotel_item_book_now_button{
    background-color: #bf5f6a;
    border: 1px solid #bf5f6a;
    padding: 15px 40px;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    cursor: pointer;
}

.link-selected{
    background-color: #f4293f;
    border: 1px solid #f4293f;
}
.offers_item_view_more_button{
    padding: 15px 26px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border: 1px solid #978a7f;
    color: #978a7f;
    margin: 10px;
    text-decoration: none;
    background: #fff;
    width: 40%;
    cursor: pointer;
}
.offers_view_more_box{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
    -o-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
    z-index: 10;
}
.offers_view_more_box_content{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 50%;
    height: auto;
    max-height: 650px;
    overflow: auto;
}
.close_button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.offers_view_more_title{
    font-size: 30px;
    text-align: center;
    padding-bottom: 10px;
    text-transform: capitalize;
    font-weight: 300;
}
.offers_view_more_title::after {
    background-color: #b2bb1e;
    top: 20px;
    content: '';
    display: block;
    height: 3px;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    width: 70px;
}
.offers_view_more_box_container{
    width: 80%;
    margin: 40px auto;
    text-align: center;
}
.offers_view_more_caption{
    font-size: 25px;
    line-height: 1.52;
    letter-spacing: 0.5px;
    font-style: italic;
    color: #b2bb1e;
    text-align: left;
}
.offers_view_more_desc{
    font-size: 16px;
    line-height: 1.56;
    color: #978a7f;
    text-align: left;
}
.offers_view_more_details{
    display: block;
    width: 100%;
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
    padding-bottom: 20px;
    text-align: left;
    font-weight: 300;
}
.offers_view_more_menu li:first-child{
    padding-top: 40px;
}
.offers_view_more_menu li:last-child{
    padding-bottom: 40px;
}
.offers_view_more_menu{
    margin-bottom: 50px;
    background-color: #fff;
}
@media only screen and (max-width: 1300px) and (min-width: 1000px) {

    .offers_item_feat{
        top: 210px;
    }
    .offers_item_feat .feat{
        font-size: 16px;
    }
}
.offers_view_more_details::after{
    content: "\e925";
    font-family: "icomoon";
    float: right;
}
.offers_view_more_menu_details{
    display: none;
    text-align: left;
    padding-bottom: 10px;
}
.offers_view_more_box_content_hotel_list{
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    width: 50%;
    height: auto;
    text-align:center;
}
.hotel_feat{
    font-size: 12px;
    line-height: 1.42;
    font-weight: bold;
    margin-top: 30px;
}
.back_to_promo_details{
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #B2BB1E;
    text-transform: uppercase;
}
.is-showing{
    visibility: visible;
    opacity: 1;
}
.is-hidden{
    visibility: hidden;
    opacity: 0;
}
.offers_item_content .flex-box_item_buttons{
    text-align: left;
    padding-left: 9px;
}
@media (max-width: 999px){
    .flex_container{
        width: 90%;
    }
    .offer_skew{
        -webkit-clip-path: none;
        clip-path: none;
    }
    .flex-box_item{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 15px auto;
    }
    .offers_item_content .flex-box_item_buttons{
        margin-bottom: 40px;
        text-align: center;
    }
    .offers_item_view_more_button{
        width: auto;
        padding: 15px 30px;
    }
    .offers_item_book_now_button{
        width: auto;
        padding: 15px 30px;
    }
    .offers_view_more_box{
        z-index: 500;
    }
    .offers_view_more_box_content{
        width: 100%;
        top: 52%;
        left: 48%;
        height: 100%;
        overflow: scroll;
    }
    .offers_view_more_box_content_hotel_list{
        top: 52%;
        left: 48%;
        height: 100%;
        width: 100%;
    }
    .offers_view_more_caption{
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.5px;
        margin-bottom: 50px;
    }
    .offers_view_more_desc{
        margin-bottom: 50px;
    }
    .offers_view_more_menu_details{
        font-size: 14px;
        line-height: 25px;
    }

}

@media (max-width: 321px){
    .offers_item_feat{
        top: 180px;

    }
    .offers_item_content .flex-box_item_buttons{
        text-align: center;
    }
}
@media(min-width: 1000px) and (max-width: 1025px){
    .offers_item_view_more_button,
    .offers_item_book_now_button{
        width: auto;
        padding: 15px;
    }
}
.offers_item_hotel_list{
    background: #fff;
    text-align: center;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    -webkit-clip-path: none;
    clip-path: none;
}
.close_button_offer{
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    position: relative;
    top: 10px;
    left: calc(50% - 20px);
}
.close_button_offer img{
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.offer_select_hotel{
    text-transform: capitalize;
    text-align: center;
    font-size: 25px;
    color: #363636;
    margin-top: 70px;
    font-weight: 400;
}
.offer_select_hotel::after {
    background-color: #b2bb1e;
    top: 20px;
    content: '';
    display: block;
    height: 3px;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    width: 70px;
}
.offers_view_more_box_hotels_dropdown{
    padding: 0 0 25px 0;
}
.offer_select_hotel_list{
    text-align: center;
    padding: 15px 0 30px 0;
    list-style: none;

}
.offer_select_hotel_item{
    padding: 15px 0;
    font-size: 16px;
    line-height: 25px;
    color: #363636;
    list-style: none;
}
.offer_select_hotel_item:hover{
    background: #b2bb1e;
    cursor: pointer;
}
.offers_select_hotel_item_book_now_button{
    font-size: 12px;
    letter-spacing: 0.5px;
    width: 50%;
}
.medium_book{
    width: 20%;
}
custom-dropdown{
    display: none;
}
.is-custom-list-shown{
    z-index: 5;
    opacity: 1;
}
.list-is-selected{
    background: #b2bb1e;
}
.news_container{
    width: 80%;
    margin: 0 auto 200px auto;
}
.news_row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.news_item_content .flex-box_item_title{
    padding-top: 0;
}
.news_publish_date{
    font-size: 12px;
    color: #776100;
    margin-left: 25px;
    margin-bottom: 25px;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 400;
}
.news_read_more{
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 12px;
    margin: 50px 0 50px 25px;
}
.news_read_more a{
    color: #B2BB1E;
    font-weight: 600;
}
@media (max-width: 999px){
    .medium_book{
        width: 50%;
    }
    .news_container{
        width: 90%;
    }
    .news_item{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 15px auto;
    }
    news_item_desc{
        margin: 30px 20px;
    }

}
.news_button{
    text-align: center;
    margin-bottom: 20px;
}
.back_to_news_button{
    padding: 15px 25px;
    background-color: #978a7f;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
}
.breadcrumb{
    font-size: 12px;
    color: #776100;
    margin-top: 20px;
    margin-left: 100px;
    text-transform: capitalize;
}
.breadcrumb__a{
    text-decoration: none;
    color: #776100;
}
.breadcrumb__curr{
    display: inline-block;
    text-transform: capitalize;
}
.breadcrumb__curr::first-letter{
    text-transform: uppercase;
}
.values_circles_container_mobile{
    display: none;
}
.values_circle{
    margin: 50px auto 150px auto;
}
@media (max-width: 999px){
    .values_circles_container_mobile{
        display: block !important;
        width: 100%;
        margin-bottom: 100px;
    }
    .values_circle{
        display: none;
    }
    .values_circle_mobile {
        border-radius: 50%;
        background-color: #dd9057;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 300px !important;
        height: 300px !important;
        text-align: center;
        margin: auto;
    }
    .values_circle_two_mobile {
        border-radius: 50%;
        background-color: #80914d;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 300px !important;
        height: 300px !important;
        text-align: center;
        margin: 15px auto;
    }
    .values_circle_three_mobile{
        border-radius: 50%;
        background-color: #75a2a8;
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 300px !important;
        height: 300px !important;
        text-align: center;
        margin: auto;
    }
}
.slick-dots li button{
    width: 0.5rem;
    height: 0.5rem;
}
.mobile_hotel_info{
    text-align: center;
    font-size: 12px;
    color: #fff;
    position: relative;
    top: 40px;
    padding-bottom: 50px;
}
.mobile_hotel_info_address{
    margin-bottom: 25px;
    padding: 10px 15px;
}

/*QUICKSEARCH*/


.qs_container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    /*padding: 20px 0;*/
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: auto;
    background-color: #fff;
    text-align: left;
    -webkit-box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 14px 0 rgba(0, 0, 0, 0.1);
}
@media (min-width: 1380px) {
    .qs_container {
        padding: 20px;
    }
    body:not(.single-property) .qs-form_adults , body:not(.single-property) .qs-form_children {
        width: auto !important;
    }
    .check_out {
        padding-right: 36px;
    }
}
.qs_container.qs_scroll{
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 70px;
    padding: 0;
}
.booking_tab{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.choose_hotel,
.check_out,
.booking_guests,
.choose_destination {
    border-right: 1px dotted #776100;
    padding-right: 20px;
}
.check_in,
.booking_guests,
.tab_bk_now_btn {
    padding-left: 20px;
}
.check_in {
    padding-right: 20px;
}

.qs_container label{
    font-size: 12px;
    color: #776100;
    width: 100%;
    text-transform: uppercase;
    padding-bottom: 10px;
    letter-spacing: 0.7px;
    font-weight: 600;
}
.choose_hotel, .choose_destination{
    width: 22%
}
.choose_hotel_tab.qs-form_hotel {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 20px;
    max-width: calc(100% - 20px);
}

.choose_hotel_tab, .choose_destination_tab{
    position: relative;
    cursor: pointer;
    font-size: 22px;
    line-height: 34px;
    letter-spacing: 0.5px;
    color: #000;
    font-style: italic;
    -webkit-appearance: none;
    border: none;
    width: 100%;
    background: #fff url('https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png') no-repeat;
    background-size: 20px;
    background-position: right center;
    font-family: 'Palatino', serif;
}
select::-ms-expand {
    display: none;
}
.choose_hotel_tab::-ms-value,
select:focus::-ms-value,
#js-property-booknow::-ms-value,
select:focus::-ms-value{
    background-color: white;
    color:#000;
}
.qs_booking_tab{
    cursor:pointer;

}

.qs_booking_tab_check_in,
.qs_booking_tab_check_out{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: 'Palatino', serif;;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.5px;
    font-style: italic;
    cursor: pointer;
    position: relative;
    justify-content: flex-start;
    align-items: center;
}

.booking_container .qs-form_checkin,
.booking_container .qs-form_checkout {
    display: none;
    position: absolute;
    left: 0;
    z-index: 9999;
    bottom: 100px;
    top: unset;
}

.booking_container.sticky_booking .qs-form_checkin,
.booking_container.sticky_booking .qs-form_checkout,
.booking_container.inner_page_booking .qs-form_checkin,
.booking_container.inner_page_booking .qs-form_checkout {
    top: calc(100% + 10px);
    bottom: unset;
}

.qs-form_checkin .ui-datepicker,
.qs-form_checkout .ui-datepicker{
    width: 320px !important;
}

.check_in_day,
.check_out_day{
    padding-right: 5px;
}
.check_in_month,
.check_out_month{
    font-size: 18px;
    line-height: 32px;
    white-space: nowrap;
}
.check_in, .check_out {
    width: 12%;
}

@media (min-width: 1000px) and (max-width: 1480px) {
    .check_in_month,
    .check_out_month{
        line-height: 32px;
    }
    .check_in_day, .check_out_day {
        padding-right: 4px;
    }
}
/*.check_out{*/
/*    width: 11%;*/
/*}*/
.check_in_month:after,
.check_out_month:after{
    content:"\e923";
    font-family: "icomoon";
    position: relative;
    right: -20px;
    font-size: 16px;
    font-style: normal;

}

.check_in input,
.check_out input{
    border: none;
}
.qs-form_checkin,
.qs-form_checkout{
    font-size: 22px;
    line-height: 38px;
    letter-spacing: 0.5px;
    width: auto;
}
.tab_bk_now_btn{
    width: 15%;
}

body.single-property .tab_bk_now_btn{
    width: 27%;
    padding-right: 0;
}

.qs-form_adults,
.qs-form_children{
    font-size: 18px;
    font-style: italic;
    line-height: 38px;
    letter-spacing: 0.5px;
    font-family: 'Palatino', serif;
    width: 150px;
    -webkit-appearance: none;
    border: none;
    background: #fff url('https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png') no-repeat;
    background-size: 20px;
    background-position: right center;
    cursor: pointer;
    overflow: hidden !important;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 18px;
}
.qs-form_adults option,
.qs-form_children option{
    font-size: 16px;
}
.qs-form_children {
    padding-left: 10px;
}
.qs-form_adults{
    width: 130px;
}
.qs-form_submit{
    background: #f4293f;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #fff;
    padding: 15px 30px;
    width: 100%;
    cursor: pointer;
}
.promo_code{
    font-size: 12px;
    line-height: 17px;
}
.promo_code{
    -webkit-appearance: none;
    border: none;
    text-align: center;
    width: 100%;
    margin-top: 3px;
}
.promo_code::-webkit-input-placeholder {
    text-align: center;
    font-weight: bold;
}
.promo_code:-moz-placeholder {
    text-align: center;
    font-weight: bold;
}
.promo_code:-ms-input-placeholder {
    text-align: center;
    font-weight: bold;
}
.booking-tab_submit{
    padding-right: 24px;
    padding-top: 24px;
}
.guest_count{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.qs_scroll{
    width: 80%;
    margin: 0 auto;
    font-size: 20px;
    height: 60px;
    padding: 10px 0;
}
.qs_scroll .tab_bk_now_btn .qs-form_submit{
    padding: unset;
}
.qs_scroll label{
    padding-bottom: 6px;
    white-space: nowrap;
}


/*.qs_scroll .choose_hotel{*/
/*    width: 30%;*/
/*}*/
.qs_scroll .tab_bk_now_btn{
    width: 25%;
}
/*.qs_scroll .check_in{*/
/*    width: 8%*/
/*}*/
/*.qs_scroll .check_out{*/
/*    width: 10%;*/
/*}*/

.qs_scroll .booking_tab {
    margin: 10px 0;
}
/*.qs_scroll .promo_code{*/
/*    display: none;*/
/*}*/
.qs_scroll .qs-form_submit{
    height: 100%;
}
.qs_scroll .qs_booking_tab_check_out,
.qs_scroll .qs_booking_tab_check_in{
    align-items: center;
    font-size: 20px;
}
.qs_scroll .choose_hotel_tab,
.qs_scroll .qs_booking_tab_check_in,
.qs_scroll .qs_booking_tab_check_out,
.qs_scroll .qs-form_adults,
.qs_scroll .qs-form_children{
    line-height: normal;
}
.qs_scroll .check_in_month,
.qs_scroll .check_out_month{
    font-size: 20px;
    line-height: normal;
}

.qs_scroll .qs-form_adults,
.qs_scroll .qs-form_children,
.qs_scroll .choose_hotel_tab{
    font-size: 20px;
}


@media (min-width: 1000px) and (max-width: 1300px) {
    .qs_scroll {
        width: 95%;
    }
}
@media (min-width: 1000px) and (max-width: 1199px) {
    .qs_scroll .choose_hotel_tab,
    .qs_scroll .qs-form_checkin,
    .qs_scroll .qs-form_checkout,
    .qs_scroll .guest_count select,
    .choose_hotel_tab,
    .qs-form_checkin,
    .qs-form_checkout,
    .qs-form_adults,
    .qs-form_children,
    .check_in_month,
    .check_out_month {
        font-size: 20px;
    }
    .choose_hotel,
    .check_out,
    .check_in,
    .booking_guests{
        padding-right: 10px;
    }
    .check_in,
    .booking_guests,
    .tab_bk_now_btn{
        padding-left: 10px;
    }
    .check_out_month:after{
        right: -15px;
    }
    .check_in_day,
    .check_out_day{
        font-size: 20px;
    }
    html[lang="zh-hans"] .check_in_day,
    html[lang="zh-hans"] .check_out_day{
        font-size: 14px;
    }
    .choose_hotel{
        width: 210px;
    }
    .qs-form_adults{
        width: 85px;
    }
    .qs-form_children{
        width: 105px;
    }
    .sticky_booking{
        width: 100%;
    }
    .qs_scroll .choose_hotel{
        width: 30%;
    }
    /*.qs_scroll .check_in{*/
    /*    width: 10%;*/
    /*}*/
    /*.qs_scroll .check_out{*/
    /*    width: 12%;*/
    /*}*/
    .qs_scroll .tab_bk_now_btn{
        width: 20%;
    }
    .qs_scroll .check_in_month,
    .qs_scroll .check_out_month{
        font-size: 15px;
    }

    .qs_scroll .choose_hotel,
    .qs_scroll .check_out,
    .qs_scroll .check_in,
    .qs_scroll .booking_guests{
        padding-right: 20px;
    }
    .qs_scroll .check_in,
    .qs_scroll .booking_guests,
    .qs_scroll .tab_bk_now_btn{
        padding-left: 20px;
    }

}
@media (min-width: 1200px) and (max-width: 1380px){
    .qs_container{
        padding: 14px;
    }
    .booking_tab{
        margin: 0 auto;
    }
    .qs_scroll .choose_hotel_tab,
    .qs_scroll .qs-form_checkin,
    .qs_scroll .qs-form_checkout,
    .qs_scroll .guest_count select,
    .choose_hotel_tab,
    .qs-form_checkin,
    .qs-form_checkout,
    .qs-form_adults,
    .qs-form_children,
    .check_in_month,
    .check_out_month {
        font-size: 20px;
    }

    /*.choose_hotel{*/
    /*    width: 33%;*/
    /*}*/
    .check_in_month,
    .check_out_month {
        line-height: 33px;

    }
    .check_in_day,
    .check_out_day{
        font-size: 22px;
    }
    html[lang="zh-hans"] .check_in_day,
    html[lang="zh-hans"] .check_out_day{
        font-size: 14px;
    }
    .qs-form_adults{
        width: 105px;
    }
    .qs-form_children{
        /*width: auto;*/
        width: 100px;
    }
    .choose_hotel, .choose_destination {
        width: 20%;
    }
}

@media(min-width: 1500px){
    .check_out,
    .qs_scroll .check_out {
        width: 8%;
    }
    /*.check_in,*/
    /*.qs_scroll .check_in{*/
    /*    width: 6%;*/
    /*}*/
    /*.tab_bk_now_btn,*/
    /*.qs_scroll .tab_bk_now_btn{*/
    /*    width: 27%;*/
    /*}*/
    /*.choose_hotel,*/
    .check_out,
    .booking_guests {
        padding-right: 25px;
    }
    .choose_hotel,
    .choose_destination {
        padding-right: 0;
        /*margin: 0 20px;*/
    }
    body.single-property .choose_hotel{
        padding-right: 25px;
        width: 33.3%;
    }

    body.single-property .booking_guests{
        padding: 0 25px;
    }

     body:not(.single-property) .choose_hotel label ,
     body:not(.single-property) .choose_destination label {
        margin: 0 20px;
    }
    .check_in,
    .booking_guests,
    .tab_bk_now_btn {
        padding-left: 25px;
        padding-right: 20px;
    }
    .check_in {
        padding-right: 25px;
    }
}
.book_now_txt{
    padding-left: 5px;
}
.book_now_txt:before{
    content:"\f073";
    font-family: "Font Awesome 5 Free";
    position: relative;
    left: -5px;
}
.qs_container_mobile{
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
}
@media(max-width:999px) {
    .qs_booking_tab_check_in,
    .qs_booking_tab_check_out{
        justify-content: flex-start;
    }

    #mobile_booking_menu.visible{
        opacity: 1;
        display: block;
        z-index: 9999;
    }
    #mobile_booking_menu .close{
        position: absolute;
        right: 10px;
        top: 10px;
        width: 32px;
        height: 32px;
    }

    #mobile_booking_menu .close:hover {
        opacity: 1;
    }
    #mobile_booking_menu .close:before, .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #333;
    }
    #mobile_booking_menu .close:before {
        transform: rotate(45deg);
    }
    #mobile_booking_menu .close:after {
        transform: rotate(-45deg);
    }

    /*#mobile_booking_menu .mfp-close{*/
    /*    position: absolute;*/
    /*    background-color: #fff;*/
    /*}*/

    label {
        font-size: 12px;
        margin-bottom: 12px;
        color: #776100;
    }

    .choose_hotel_tab,
    .choose_destination_tab {
        border: 1px solid #dfdfdf;
        width: 100%;
        margin: 10px 0;
        padding: 0 20px;
        border-radius: 0;
        font-size: 16px;
    }

    .mobile_booking_row{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        width: 80%;
        margin: 10px auto;
    }
    .check_in input,
    .check_out input {
        border: 1px solid #222222;
        width: 100%;
        font-size: 16px;
    }
    .check_out{
        margin-left: 15px;
    }
    .qs-form_checkin,
    .qs-form_checkout {
        width: auto;
        margin: 10px 0;
        background: #fff url(../images/budicon-events.svg) no-repeat;
        background-size: 20px;
        background-position: right 10px center;
    }

    .qs-form_children {
        font-size: 22px;
        line-height: 38px;
        letter-spacing: 0.5px;
        -webkit-appearance: none;
        border: none;
        background: #fff url('https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png') no-repeat;
        background-size: 20px;
        background-position: right 10px center;
        padding-left: 10px;
        margin-left: 15px;
    }
    /*.qs-form_adults,*/
    /*.qs-form_children{*/
    /*    border: 1px solid black;*/
    /*    border-radius: 0;*/
    /*    width: 100%;*/
    /*    margin-top: 10px;*/
    /*    margin-bottom: 10px;*/
    /*    padding: 0 20px;*/
    /*    font-size: 16px;*/
    /*}*/
    .mobile_qs_form_submit{
        background: #f4293f;
        font-size: 12px;
        text-align: center;
        letter-spacing: 0.5px;
        color: #fff;
        padding: 15px 30px;
        width: 100%;
        /*border: 1px solid #f4293f;*/
    }
    .promo_code{
        border: 1px solid black;
        width: 100%;
        margin: 15px 0;
        padding: 10px 0px;
        font-size: 15px;
    }
}

/*datepicker*/

.ui-widget-header{
    background: #B2BB1E !important;
}
.ui-widget {
    font-size: 100%;
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
}
.ui-datepicker.ui-datepicker-multi {
    width: auto !important;
}
@media (min-width: 1200px) {
    .ui-datepicker.ui-datepicker-multi {
        margin-left: -55px;
        margin-top: 2px; }
}
.ui-datepicker {
    padding: 0;
    font-family: 'Raleway', sans-serif;
    z-index: 9999 !important;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.ui-datepicker-header {
    border: none;
    background: #999;
    font-weight: normal;
    font-size: 15px;
    text-align: center;
    padding: 5px 15px;
}
.ui-datepicker-header .ui-state-hover {
    background: transparent;
    border-color: transparent;
    cursor: pointer;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;}

.ui-datepicker .ui-datepicker-title {
    font-size: 1.125rem;
    text-transform: uppercase;
    font-weight: 600;
    padding: 5px 10px;
    color: #fff; }

.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    top: .3em;
    border: none;
    margin-top: 5px; }

.ui-datepicker .ui-datepicker-prev-hover {
    left: 2px; }

.ui-datepicker .ui-datepicker-next-hover {
    right: 2px;
    background-image: none !important;}

.ui-datepicker .ui-datepicker-next span,
.ui-datepicker .ui-datepicker-prev span {
    font-size: 0;
    background-image: none !important;
    position: relative !important;}

.ui-datepicker .ui-datepicker-next:after,
.ui-datepicker .ui-datepicker-prev:after {
    color: white;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
}

.ui-datepicker .ui-datepicker-prev:after,
.ui-datepicker .ui-datepicker-next:after{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ui-datepicker .ui-datepicker-prev:after {
    content: '\f30a';
}

.ui-datepicker .ui-datepicker-next:after,
.ui-datepicker .ui-datepicker-next-hover:after{
    content: '\f30b';
    float: left; }

.ui-datepicker .ui-datepicker-prev span {
    background-position: -96px 0; }

.ui-datepicker table {
    margin: 0; }

.ui-datepicker th {
    padding: 0.5rem 0.625rem;
    font-size: 13px;
    font-weight: normal;
    border: none;
    text-transform: uppercase; }

.ui-datepicker td {
    border: none;
    padding: 1px;
    background: #fff;
    height: 40px;
    width: 40px;
    line-height: 40px; }

.ui-widget td .ui-state-default {
    background: transparent;
    border: none;
    text-align: center;
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: 16px;
    display: block;
    width: 100%;
    height: 100%; }
.ui-widget td .ui-state-default:hover, .ui-widget td .ui-state-default:focus {
    text-decoration: none; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 1; }

.ui-widget td .ui-state-default {
    color: #f8a770; }

.ui-widget {
    background: #fff; }

.ui-widget .ui-state-disabled .ui-state-default {
    color: rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.1); }

.ui-widget td .ui-state-active,
.ui-widget td .ui-state-hover {
    color: white;
    background: #999; }

.ui-widget td .ui-state-active,
.ui-widget td .ui-state-hover {
    background: #999; }

.ui-widget .date-range-selected .ui-state-active,
.ui-widget .date-range-selected .ui-state-hover {
    background: #999; }

.ui-datepicker-group {
    margin: 0;
    padding: 0; }
.ui-datepicker-group:first-child {
    border-right: 1px solid #cccccc;
    overflow: hidden; }

.ui-datepicker-prev {
    float: left; }

.ui-datepicker-next {
    float: right; }

.ui-datepicker-week-end,
.ui-datepicker th {
    color: #999;
    font-weight: 600;
    font-size: 18px; }

.ui-datepicker-calendar td.date-range-selected {
    background: #999; }

.ui-datepicker-calendar td.date-range-begin,
.ui-datepicker-calendar td.date-range-end {
    background: #1D5598; }
.ui-datepicker {
    width: auto !important; }
.ui-datepicker td {
    padding: 0 !important; }

.ui-datepicker-group {
    width: 50%;
    float: left; }

.ui-selectmenu-menu, .ui-autocomplete {
    z-index: 9999; }

.ui-widget td .ui-state-active,
.ui-widget td .ui-state-hover,
.ui-datepicker-header {
    background: white; }

.ui-widget td .ui-state-active,
.ui-widget td .ui-state-hover {
    border-radius: 0; }

.ui-datepicker-week-end,
.ui-datepicker th {
    color: black;
    background: white; }

.ui-selectmenu-button span.ui-icon {
    border: 0 none; }

.ui-icon-triangle-1-s:before {
    color: rgba(0, 0, 0, 0.4); }

.ui-selectmenu-menu .ui-menu-item:hover,
.ui-selectmenu-menu .ui-menu-item:focus,
.ui-state-active,
.ui-widget-content .ui-state-active {
    background: #B2BB1E !important;
    cursor: pointer;
    color: black !important; }

.date-range-end .ui-state-default {
    background: #726869 !important;
    color: black !important; }

.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
    height: 0; }

.ui-datepicker.ui-datepicker-multi {
    background: #fff; }

.ui-state-disabled {
    cursor: default !important;
    pointer-events: none;
    height: 0; }

.ui-datepicker.ui-datepicker-multi {
    background: #fff; }

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0;
    background-image: none; }

.ui-datepicker .ui-state-disabled,
.ui-datepicker .ui-widget-content .ui-state-disabled,
.ui-datepicker .ui-widget-header .ui-state-disabled {
    opacity: 1; }

.ui-datepicker-calendar td.date-range-selected {
    background: #999999; }

.ui-widget .date-range-selected .ui-state-active,
.ui-widget .date-range-selected .ui-state-hover {
    background: #726869; }

.ui-datepicker .ui-state-hover{
    background: #B2BB1E !important;
    border: #B2BB1E !important;
}
.ui-datepicker .ui-datepicker-next-hover:after{
    font-family: "Font Awesome 5 Free";
    content: '\f30b';
    font-weight: 600;
}
.ui-datepicker .ui-datepicker-prev-hover:after{
    font-family: "Font Awesome 5 Free";
    content: '\f30a';
    font-weight: 600;
}
.ui-datepicker-calendar td.date-range-begin .ui-state-default,
.ui-datepicker-calendar td.date-range-end .ui-state-default {
    border-radius: 0;
    background: white;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto; }

.ui-datepicker td {
    border: none;
    padding: 1px;
    background: white;
    height: 40px;
    width: 14.286%;
    line-height: 40px; }

.ui-datepicker td.date-range-begin a,
.ui-datepicker td.date-range-end a {
    background: #726869 !important;
    color: black !important; }

.ui-widget td .ui-state-default {
    color: black; }

.ui-widget .ui-state-disabled .ui-state-default {
    color: black;
    opacity: 0.5; }

.ui-datepicker .ui-datepicker-next:after,
.ui-datepicker .ui-datepicker-prev:after {
    color: black; }

.ui-datepicker .ui-datepicker-title {
    color: black;
}
html[lang="zh-hans"] .ui-datepicker .ui-datepicker-title {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    visibility: hidden;
}
html[lang="zh-hans"] .ui-datepicker .ui-datepicker-title span {
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .ui-datepicker.ui-datepicker-multi {
        background: none;
        left: 0 !important;
        right: 0;
        margin: auto;
        width: 90% !important; }
    .ui-datepicker-group {
        width: 100%;
        float: none;
        position: relative;
        margin-bottom: 15px;
        background-color: white; } }

.qs-form{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
}
.dark{
    color: #000 !important;
    text-shadow: none;
}
.dark-bg{
    background-color: #000;
}
.dark-border{
    border-color: #000 !important;
}

/*rooms*/
.rooms_item_photo:after{
    content: url('/wp-content/themes/parkavenue-V2/images/magnifying-glass.svg');
    position: relative;
    left: 80%;
    top: 85%;
    display: block;
    width: 45px;
    height: 45px;
}
.rooms_item_occupancy{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 15px;
    margin: 0 15px;
    min-height: 65px;
}
.single_room .flex-box_item_desc{
    min-height: 50px;
    padding: 0 25px 0 15px;
}
.single_room .flex-box_item_title{
    font-size: 25px;
    min-height: 30px;
    padding: 20px 25px 0 15px;
}
.single_room .flex-box_item_buttons{
    margin-left: -20px;
    padding: 10px;
}
@media (min-width: 1000px) and (max-width: 1199px){
    .rooms_item_occupancy{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: 11px;
    }
    .max_occupancy::after{
        display: none;
    }
    .rooms_item_photo:after{
        left: 75%;
    }
    .room_item_content .flex-box_item_title{
        padding: 20px 25px 0 10px;
    }
    .rooms-item_occupancy{
        margin: 0 12px;
    }
    .single_room .flex-box_item_desc{
        padding: 0 25px 0 12px;
    }
    .single_room .flex-box_item_buttons{
        margin-left: -23px;
    }

}

.max_occupancy:after{
    content: "|";
    padding: 0 10px;
}
.rooms_item_buttons{
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;
}

.rooms_item_book_now_button,
.rooms_select_hotel_item_book_now_button{
    padding: 15px 40px;
    font-size: 12px;
    letter-spacing: 0.5px;
    background-color: #f4293f;
    border: 1px solid #f4293f;
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;

}
.rooms_item_view_more_button{
    padding: 15px 26px;
    font-size: 12px;
    letter-spacing: 0.5px;
    border: 1px solid #978a7f;
    color: #978a7f;
    margin: 10px;
    text-decoration: none;
    background: #fff;
    font-family: 'Raleway', sans-serif;
}
.modal_popup{
    background-color: #f8f8f8;
    padding: 20px;
    width: 70%;
    margin: auto;
    text-align: center;
}
.modal_popup-title{
    font-size: 25px;
    text-align: center;
    padding-bottom: 10px;
    text-transform: capitalize;
    font-weight: 300;
}
.modal_popup-title::after {
    background-color: #b2bb1e;
    top: 20px;
    content: '';
    display: block;
    height: 3px;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    width: 70px;
}
.rooms_view_more_box_hotels{
    list-style: none;
    color: #776100;
    padding: 0;
    text-transform: uppercase;
}
.rooms_view_more_box_hotels li{
    text-align: center;
    font-size: 12px;
}
.modal_popup-box_container{
    width: 80%;
    margin: 40px auto;
    text-align: center;
}
.modal_popup-caption{
    font-size: 25px;
    line-height: 1.52;
    letter-spacing: 0.5px;
    font-family: 'Palatino', serif;
    font-style: italic;
    color: #b2bb1e;
    text-align: left;
    font-weight: 300;
    margin-bottom: 0;
}
.modal_popup-desc{
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
    text-align: left;
    padding: 15px 0;
}
.modal_popup .hotel_feat{
    margin: 30px 0 40px 0;
}
.rooms_view_more_floor{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px;
}
.rooms_view_more_floor strong{
    color: #d5701a;
}
.rooms_view_more_floor .floor_area:after{
    content: "|";
    padding: 0 20px;
}
.rooms_view_more_details{
    display: block;
    width: 100%;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: left;
    cursor: pointer;
}
.rooms_view_more_details::after{
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    float: right;
}
.minus-offer::after{
    content: "\f068" !important;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}
.rooms_view_more_menu_details{
    display: none;
    text-align: left;
    padding: 10px 0;
}
.rooms_view_more_menu{
    list-style-type: none;
    padding: 0;
    -webkit-column-count: 2;
    column-count: 2;
    margin-bottom: 50px;
}
.single_amenities{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.amenities_icon{
    border-radius: 50%;
    font-size: 24px;
    padding: 5px;
}
.amenities_icon.icon-dishwasher,
.amenities_icon.icon-sofa {
    color: white;
    font-size: 18px;
    line-height: 1.25;
    width: 24px;
    height: 24px;
    padding: 5px 5px;
    text-align: center;
}
.amenities_name{
    padding-left: 10px;
    line-height: 35px;
}
.back_to_promo_details{
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #B2BB1E;
    text-transform: uppercase;
    font-weight: 600;
}
.rooms_bk{
    width: 200px;
}
@media (max-width: 999px){
    .room_item_content .flex-box_item_title{
        padding-left: 15px;
        margin-bottom: 15px;
    }
    .bed,
    .max_occupancy{
        margin-bottom: 10px;
        margin-top: 0;
    }
    .rooms_item_occupancy{
        margin: 0 15px;
    }
    .rooms_item_buttons{
        margin-bottom: 40px;
    }
    .rooms_item_view_more_button{
        padding: 15px 35px;
    }
    .rooms_item_book_now_button{
        padding: 15px 35px;
    }
    .modal_popup{
        overflow: scroll;
        width: auto;
    }
    .modal_popup-caption{
        font-size: 20px;
        line-height: 30px;
        letter-spacing: 0.5px;
        margin-bottom: 50px;
    }
    .modal_popup-desc{
        margin-bottom: 50px;
    }
    .rooms_view_more_menu_details{
        font-size: 14px;
        line-height: 25px;
    }
    .rooms_item_photo:after{
        left: 80%;
    }
    .rooms_item_occupancy,
    .rooms_view_more_floor{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .max_occupancy:after,
    .rooms_view_more_floor .floor_area:after{
        display: none;
    }
    .rooms_view_more_floor,
    .floor_area,
    .occupancy{
        text-align: left;
        margin-bottom: 16px;
    }
    .rooms_view_more_menu{
        -webkit-column-count: 1;
        column-count: 1;
    }

}
.modal_popup .mfp-close{
    display: none !important;
}
.mfp-image-holder .mfp-content{
    width: 80%;
}
img.mfp-img{
    height: 90vh !important;
}
@media(max-width: 999px){
    img.mfp-img{
        height: auto !important;
    }
}
.mfp-figure figure{
    background: white;
}
button.mfp-close{
    background: #d5701a;
    position: static;
    opacity: 1;
    padding-right: 20px !important;
}
figcaption {
    color: #000;
}
.mfp-title{
    text-align: center !important;
    font-size: 21px;
}
.mfp-bottom-bar{
    background: #fff;
    padding-top: 20px;
}
.mfp-title .credit{
    font-size: 16px;
    font-style: italic;
    line-height: 25px;
    color: #000;
}
.mfp-counter{
    display:none;
}

/*meetings*/
.meeting_item_content .flex-box_item_desc{
    padding-top: 0;
    margin-bottom: 20px;

}
.meeting_item_content .flex-box_item_title{
    min-height: 30px;
    margin-bottom: 20px;
}

.meeting_item_photo:after{
    content: url('/wp-content/themes/parkavenue-V2/images/magnifying-glass.svg');
    position: relative;
    left: 80%;
    top: 90%;
    display: block;
    width: 45px;
    height: 45px;
}
.meeting_promo{
    background: #d5d1c5;
    height: auto;
    width: auto;
    margin: 100px 0;
    padding: 60px;
}
.meeting_promo_section_title{
    font-size: 45px;
    letter-spacing: 1.5px;
    text-align: center;
    color: #fff;
    font-weight: 600;
}
.meeting_promo_row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.meeting_promo_mobile{
    display: none;
}
.single_meeting_promo{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    height: 450px;
    text-align: center;
    background-size: cover;
    background-position: center center;
    margin: 15px;
}
.meeting_overlay{
    background: rgb(213, 111, 26);
    opacity: 0.9;
    position: relative;
    padding: 20px;
    top: 60%;
    height: 140px;
}
.single_meeting_promo_horizontal,
.single_surrounding_horizontal {
    display: none;
}

@media (min-width: 1000px) and (max-width: 1399px){
    .meeting_overlay{
        top: 54%;
        height:167px;
    }
    .meeting_item_photo:after{
        left: 75%;
    }
}
.meeting_promo_title{
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0px;
}
.meeting_promo_desc{
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}
.meeting_promo_button{
    color: #978a7f;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-align: center;
    padding: 10px 45px;
    background: #fff;
    border-color: #fff;
    cursor: pointer;
}
.capacity_chart{
    margin: 100px auto;
    text-align: center;
}
.capacity_title{
    font-weight: 600;
    font-size: 35px;
    letter-spacing: 2.5px;
    color: #978a7f;
}
.capacity_location{
    font-family: 'Palatino', serif;
    font-style: italic;
    font-size: 25px;
    line-height: 38px;
    letter-spacing: 0.5px;
    color: #d5701a;
}
.capacity_address{
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
}
.capacity_table{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin: 40px;
    font-size: 14px;
    letter-spacing: 0.2px;
}
.capacity_table:not(.capacity_table--custom) th:first-child,
.capacity_table:not(.capacity_table--custom) td:first-child,
.capacity_table--custom th.ct-custom__td,
.capacity_table--custom td.ct-custom__td {
    width: 200px;
    height: 100px;
    border: #fff;
    font-weight: 600;
    color: #fff;
    background: #d5701a;
}
.capacity_table--custom th:first-child,
.capacity_table--custom td:first-child{
    background: #d5d1c5;
}
.capacity_table th:nth-child(2),
.capacity_table td:nth-child(2),
.capacity_table th:nth-child(3),
.capacity_table td:nth-child(3),
.capacity_table th:nth-child(4),
.capacity_table td:nth-child(4){
    width: 100px;
    height: 80px;
    border: #fff;
    background: #d5d1c5;
    color: #000;
}
.capacity_table th:nth-child(n+5),
.capacity_table td:nth-child(n+5){
    width: 100px;
    height: 80px;
    border: #fff;
    background-color: rgba(213, 209, 197, 0.45);
    color: #000;
}
.capacity_table td:nth-child(n+2){
    font-size: 16px;
    font-weight: normal;
    line-height: 25px;
}
.capacity_table th:nth-child(n+2){
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.meeting_reservation_info{
    letter-spacing: 0.5px;
    font-weight: 300;
    margin-bottom: 50px;
}
.meeting_reservation_info a{
    text-decoration: none;
    font-weight: 500;
    color: #000;
}
.meeting_misc_section{
    text-align: center;
    letter-spacing: 0.5px;
}
.meeting_misc_small{
    font-size: 12px;
    font-weight: 200;
}
.download_section{
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    margin-bottom: 50px;
}
.download_icon{
    font-size: 36px;
    margin-right: 20px;
}
.download_brochure{
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #d5701a;
}
.single_meeting_horizontal_img,
.single_surrounding_horizontal_img{
    text-align: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: auto;
    width: 50%;
}
.single_meeting_horizontal_overlay,
.single_surrounding_horizontal_overlay{
    width: 50%;
    background: #fff;
    color: #000;
    text-align: center;
    padding: 10px;
}
.single_surrounding_horizontal_overlay{
    background: #EDECE8;
    margin-left: -40px;
}
.single_meeting_promo_horizontal_title,
.single_surrounding_horizontal_title {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0.5px;
    margin: 10px 0 0 0;
}
.single_meeting_promo_horizontal_desc,
.single_surrounding_horizontal_desc{
    font-size: 18px;
    line-height: 25px;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 999px){
    .meeting_caption{
        width: 80%;
    }
    .meeting_promo_section_title{
        font-size: 24px;
    }
    .meeting_row,
    .meeting_promo_row{
        /*-webkit-box-orient: vertical;*/
        /*-webkit-box-direction: normal;*/
        /*-ms-flex-direction: column;*/
        /*flex-direction: column;*/
    }
    .meeting_promo_mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: auto;

    }
    .meeting_promo{
        padding: 60px 20px;
        height: auto;
    }
    .meeting_overlay{
        height: 150px;
        top: 58%;
    }
    .single_meeting_promo:nth-child(n+2),
    .single_surrounding:nth-child(n+2){
        /*display: none;*/
    }
    .capacity_title,
    .capacity_table,
    .capacity_location {
        display: none;
    }
    .capacity_chart{
        padding: 0 20px;
    }
    .single_meeting_promo{
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: 0 0 100%;
        margin: 10px 0;
    }
    .single_surrounding_horizontal,
    .single_meeting_promo_horizontal {
        display: -webkit-box;
        display: -ms-flexbox;
        display: none;
        height: auto;
        width: 100%;
        margin-top: 30px;
    }
    .single_surrounding_horizontal{
        min-height: 200px;
        background-color: #EDECE8;
    }
    .meeting_promo_title{
        margin:0;
        font-size: 19px;
    }
}

/*gallery*/
.gallery_flex{
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.gallery_flex_item_div{
    text-align: center;
    background-size: cover;
    background-position: center center;
    height: 300px;
}
.gallery_flex_item{
    -webkit-box-flex: 1;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    height: auto;
    text-decoration: none;
    margin: 10px;
}
.gallery_flex_item img{
    width: 400px;
    height: 400px;
}
.gallery_image_title{
    font-size: 21px;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #d5701a;
    text-decoration: none;
    text-align: center;
}
.gallery_flex_item_div:before{
    content: url('/wp-content/themes/parkavenue-V2/images/magnifying-glass.svg');
    position: relative;
    left: 80%;
    top: 2%;
    display: block;
    width: 45px;
    height: 45px;
}

@media(min-width: 768px) and (max-width: 999px){
    .gallery_flex_item_div:before {
        left: 90%;
    }
}

.mfp-arrow{
    width: 60px !important;
    height: 60px !important;
    background: #000 !important;
}
button.mfp-arrow{
    font-size: 16px;
    color: white;
    font-family: "Font Awesome 5 Free";
    font-style: normal !important;
    font-weight: 600 !important;
    font-variant: normal !important;
    text-transform: none !important;
}
.mfp-arrow::before{
    display: none !important;
}
.mfp-arrow::after{
    border: transparent !important;
}
.mfp-arrow-left::after,
.mfp-arrow-right::after{
    left: -10px !important;
    top: -10px !important;
}
.mfp-arrow.mfp-arrow-right::after {
    content: "\f054" !important;

}
.mfp-arrow.mfp-arrow-left::after {
    content: "\f053" !important;

}
.mfp-arrow-left{
    left: 12% !important;
}
.mfp-arrow-right{
    right: 12% !important;
}
.mfp-title{
    padding-right: 0px !important;
}
.mfp-title .credit{
    visibility: hidden;
}
@media (max-width: 999px) {
    .gallery_flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    body.property-template-tpl-single-property-gallery .mfp-arrow-left {
        top: 50% !important;
        margin-top: 0;
        left: 0 !important;
    }
    body.property-template-tpl-single-property-gallery .mfp-arrow-right {
        top: 50% !important;
        margin-top: 0;
    }

    .gallery_flex_item{
        width: 100%;
    }
    .mfp-image-holder .mfp-content{
        width: 100%;
    }
    .mfp-arrow{
        top: 75% !important;
    }
    .mfp-arrow-right{
        right: 0% !important;
    }
    .mfp-arrow-left{
        left: 75% !important;
    }
}
@media (min-width: 767px) and (max-width: 999px){
    .mfp-arrow{
        top: 80% !important;
    }
    .mfp-arrow-right{
        right: 0% !important;
    }
    .mfp-arrow-left{
        left: 88% !important;
    }
}
.filter-hide{
    display:none;
}
.category_filter{
    margin-bottom: 80px;
}
.category_filter a{
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 20px;
    color: #999;
}
.category_filter_list_item .selected{
    color: #000;
    font-weight: 600;
}
.category_filter_list{
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.category_filter_list_item:not(:last-child){
    border-right: solid 1px;
}
.category_filter_mobile{
    display: none;
}
@media only screen and (max-width: 1075px) {
/*@media(max-width: 999px){*/
    .category_filter_mobile{
        display: block;
        width: 90%;
        margin: 30px auto;
    }
    .category_filter{
        display: none;
    }
    .category_filter_mobile select{
        background: #d5d1c5 url('https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png') no-repeat;
        background-size: 20px;
        background-position: right 10px center;
        color: #000;
        width: 100%;
        padding: 15px 10px;
        border: none;
        font-size: 16px;
        outline: none;
        -webkit-border-radius: 0px;
        -webkit-appearance: none;
    }

}

/*location*/
.map{
    position: relative;
    top: 0;
    z-index: 1;
    height: calc(100vh - 40px);
}
.routes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin: 0 auto;
    background: #f8f8f8;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.find_a_route{
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #978a7f;
    padding: 0 20px;
    font-weight: 600;
}
.routes p{
    font-size: 16px;
    font-style: italic;
    line-height: 25px;
    color: #978a7f;
    padding: 0 20px;
}
.routes input{
    width: 250px;
    height: 30px;
    border: none;
    border-bottom: 1px solid #978a7f;
    background: transparent;
	padding: 0 10px;
}
.routes input::-webkit-input-placeholder{
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
}
.routes input:-ms-input-placeholder{
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
}
.routes input::-ms-input-placeholder{
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
}
.routes input::placeholder{
    text-align: center;
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
}
.calculate_route{
    height: 100%;
    width: 180px;
    background: #978a7f;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 500;
    cursor: pointer;
}
.location_container{
    width: 60%;
    margin: 0 auto 150px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.hotel_address{
    margin-right: auto;
    padding: 0 30px;
}
.location_container_right{
    width: 70%;
    margin-left: auto;
    padding: 0 30px;
    border-left: 1px solid #d5d1c5;
}

@media (max-width: 999px) {
    .routes {
        display: none;
    }

    .explore_container_title {
        font-size: 33px;
    }

    .hotel_location {
        position: unset;
        width: 90%;
        margin: 30px auto;
    }
    .map{
        height: 600px;
    }
    .breadcrumb{
        display: none;
    }
    .location_container{
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;

    }
    .hotel_address{
        margin: 0;
    }
    .location_container_left{
        margin-bottom: 40px;
    }
    .location_container_right{
        text-align: left;
        width: 89%;
        margin: 0 auto;
        padding-top: 40px;
        border-top: 1px solid #d5d1c5;
        border-left: none;
    }
}
.hotel_name{
    font-weight: 600;
    font-size: 21px;
    letter-spacing: 0.5px;
    color: #d5701a;
    margin: 15px 0;
}
.address{
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
    color: #363636;
    margin-bottom: 20px;
}

.hotel_address a{
    color: #d5701a;
}
.hotel_contact{
    font-size: 16px;
    font-style: italic;
    line-height: 25px;
}
.hotel_contact strong{
    font-weight: 600;
    font-style: normal;
}
.location_container_left,
.location_container_right{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.how_to_title{
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #363636;
    margin: 15px 0;
}
.how_to_desc{
    font-size: 16px;
    line-height: 25px;
    color: #978a7f;
}
/*contact us*/

.contact_us{
    width: 90%;
    margin: 0 auto;
}
.gform_wrapper.two-column_wrapper {
    max-width: 100%;
}
.gform_wrapper.two-column_wrapper ul.gform_fields,
.gform_wrapper.two-column_wrapper ul.gform_column li.gsection:first-child {
    display: none;
}
.gform_wrapper.two-column_wrapper ul.gform_fields.gform_column {
    display: block;
}
.gform_wrapper.two-column_wrapper ul.one-half {
    margin-left: 6% !important;
    width: 47%;
    float: left;
}
.gform_wrapper.two-column_wrapper ul.one-half.first {
    margin-left: 0 !important;
}
#input_3_2,
#input_3_3,
#input_3_4 {
    width: 100%;
}
.gform_wrapper .gsection {
    border-bottom: none !important;
}
.gform_wrapper .top_label li.gfield.gf_right_half+li.gsection {
    padding: 0 !important;
}
.news_and_social_container .gform_wrapper ul.gfield_checkbox li {
    text-align: left;
}

@media only screen and (max-width: 1075px) {

    .gform_wrapper.two-column_wrapper ul.one-half {
        width: 100%;
    }
    .gform_wrapper.two-column_wrapper ul.one-half {
        margin-left: 0 !important;
    }
    .gform_wrapper .gsection {
        display: none !important;
    }
    .contact_us .gform_wrapper1 li {
        margin-bottom: 10px;
    }

}
@media only screen and (min-width: 1076px){

    body .contact_us .gform_wrapper {
        position: relative;
    }
     body .contact_us_gform .gform_wrapper .gform_footer {
        width: auto;
        right: 0px;
        padding: 0;
        margin: 0;
        text-align: right;
    }
    body .meeting_events .gform_wrapper .gform_footer {
        width: auto;
        right: 0px;
        padding: 20px 0 0;
        margin: 0;
        text-align: right;
    }
}

.gfield_label{
    font-size: 12px !important;
    color: #776100;
    font-weight: 400 !important;
}

.ginput_container_select select,
.ginput_container_text input,
.ginput_container_email input,
.ginput_container_phone input,
.ginput_container_number input,
.ginput_container_date input,
.ginput_container_textarea textarea{
    background: #e9e8e3;
    color: #000;
    padding: 15px 10px !important;
    border: none;
    font-size: 20px;
    outline: none;
    -webkit-border-radius: 0px;
    -webkit-appearance: none;
}
.ginput_container_select select option {
    padding: 30px;
}
.gform_footer input[type=submit]{
    color: #fff;
    background: #978a7f;
    padding: 20px 100px;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    font-size: 16px !important;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 0 none;
}
.ginput_container_select select{
    background: #e9e8e3 url('https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png') no-repeat;
    background-size: 20px;
    background-position: right 10px center;
}

.contact_info{
    border-top: solid 1px #d5d1c5;
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 50px 0;
    text-align: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}
.contact_info_title{
    font-size: 25px;
    font-weight: normal;
}
.contact_info_detail{
    display: inline-block;
    padding: 5px 0;
	min-height: 30px;
}
.contact_info_detail a{
    color: #B2BB1E;
}

.main_lines{
    background: #d5d1c5;
    height: auto;
    text-align: center;
    padding: 50px;

}
.main_lines_title{
    font-size: 45px;
    letter-spacing: 1.5px;
    color: #fff;
}
.main_lines_slider{
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}
.main_lines_slider_single{
    display: block;
    width: 300px;
    height: auto;
    margin: 10px;
    background: #fff;
}
.main_lines_slider .slick-dots button {
    background-color: transparent;
}
.hotel_location_photo{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 200px;
}
.hotel_location_contact_title{
    text-align: center;
    font-size: 21px;
    line-height: 25px;
    color: #363636;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 15px;
}
.hotel_location_contact_address,
.hotel_location_contact_phone,
.hotel_location_contact_email{
    text-align: center;
    font-size: 16px;
    line-height: 25px;
}
.hotel_location_contact_address{
    margin-bottom: 30px;
    padding: 0 20px;
    min-height: 50px;
}
.hotel_location_contact strong{
    font-weight: 600;
}
.hotel_location_contact a{
    color: #B2BB1E;
}
.hotel_location_contact_email,
.hotel_location_contact_phone{
    margin: 10px 0;
}
.hotel_location_contact{
    /*margin-bottom: 30px;*/
}
.hotel_location_contact_btn{
    background: #dd9058;
    text-align: center;
    height: 60px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px 45px;
}
.hotel_location_contact_btn .fas{
    padding: 0 10px;
    font-size: 15px;
}

.main_lines .slick-prev{
    left: -80px;
}
.main_lines .slick-next{
    right: -80px;
}
@media (max-width: 999px){
    .contact_info{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .main_lines{
        padding: 50px 0;
    }
}

/*explore*/
.surrounding_container{
    width: 90%;
    margin: 50px auto 100px auto;

}
.surrounding_row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.single_surrounding{
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    height: auto;
    text-decoration: none;
    margin: 20px;
    background-color: #EDECE8;
}
.surrounding_item_photo{
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 220px;
}
.surrounding_item_content{
    height: auto;
    /*min-height: 220px;*/
    opacity: 0.9;
    padding: 20px;
    text-align: center;
}
.hotel_discount{
    position: relative;
    left: 80%;
    top: 5%;
    height: 65px;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}
.hotel_discount_mobile{
    position: relative;
    top:2%;
    right: 46%;
    height: 65px;
    width: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.discount_speech{
    position: absolute;
    background: #f4293f;
    border-radius: 7px;
    padding: 5px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #fff;
    width: 22%;
    margin-top: -25px;
    margin-left: 5%;

}
.discount_speech:after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 13px solid transparent;
    border-top-color: #f4293f;
    border-width: 10px 10px 0;
    margin-left: 30%;
    margin-bottom: -10px;
}
.hotel_discount:hover + .discount_speech{
    display: block !important;
}
.surrounding_item_title{
    font-size: 23px;
    letter-spacing: 0.5px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}
.surrounding_item_desc{
    font-size: 21px;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #fff;
}
.surrounding_item_date{
    font-style: italic;
    font-size: 16px;
    line-height: 25px;
    color: #fff;
}
.surrounding_info {
    background-color: #EDECE8;
    height: auto;
    /*min-height: 630px;*/
    text-align: center;
    padding: 10px;
    min-width:400px;
}
.surrounding_info_extra{
    line-height: 25px;
    margin: 0;
    padding: 20px;
    min-height: 85px;
    font-weight: 300;
}
.surrounding_outlets{
    color: #363636;
    margin-bottom: 30px;
    min-height: 150px;
}
.participating_outlets{
    font-weight: 500;
    margin: 0 0 10px 0;
}
.surrounding_outlets .address{
    font-style: normal;
}
.surrounding_outlets span{
    display: inline-block;
    margin-bottom: 5px;
}
.terms_conditions{
    min-height: 100px;
}
.terms{
    font-weight: 400;
    font-size: 12px;
    color: #978a7f;
}
.terms-star{
    font-size: 16px;
}
.star{
    font-size: 26px;
}

/*@media (max-width:1695px) {*/
/*    .surrounding_info {*/
/*        min-height: 680px;*/
/*    }*/
/*}*/

/*@media (max-width:1533px) {*/
/*    .surrounding_info {*/
/*        min-height: 700px;*/
/*    }*/
/*}*/

@media(max-width: 999px){
    .surrounding_row{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .single_surrounding{
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 15px auto;
    }
    .surrounding_info{
        min-height: unset;
        min-width: unset;
    }
    .surrounding-info-mobile{
        width: 100%;
    }
    .single_surrounding_horizontal_title{
        word-break: break-word;
    }
}
.dyncal_box{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.dyncal_wrapper .mfp-close{
    display: none;
}
.dyncal_header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #d56f1a;
    color: #fff;
    width: 100%;
    height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.main_subtitle{
    font-size: 24px;
    font-weight: 300;
    width: 95%;
    text-align: center;

}
.close_button-dyncal {
    font-size: 24px;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5%;
    margin-left: auto;
}
#fb_calendar .fbw-calendar--config .fbw-calendar--dates span{
    border: 1px solid #eeede8;
    text-indent: 5px;
    background-color: #eeede8;
    height: 40px;
    padding: 8px;
    font-size: 14px;
    line-height: 25px;
    margin-left: -5px;
}
.fbw-calendar--main{
    max-width: 100% !important;
}
.fbw-calendar--container{
    padding: 0 !important;
}
.fbw-calendar--container .fbw-calendar--title.fbw-calendar--title {
    width: 97%;

}
.fbw-calendar--title h1{
    font-family: 'Raleway', sans-serif !important;
    letter-spacing: 0.5px;
    text-align: center;
    font-weight: 400 !important;
    font-size: 25px !important;
}
.fbw-calendar--action .next{
    background-color: #f4293f !important;
}
.fbw-calendar--action .next .next--button{
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px !important;
    font-weight: bold;
    font-size: 12px !important;
}
.fbw-calendar--theme-2 .fbw-calendar--action.layout2-version .next--button:after {
    content: 'NOW' !important;
}

html[lang="zh-hans"] .fbw-calendar--theme-2 .fbw-calendar--action.layout2-version .next--button:after {
    content: unset !important;
}
#fb-widget .fbw-calendar--month .fbw-calendar--weekdays:before {
    display: inline-block;
    font-size: 14px;
    color: #333;
    padding: 10px 0;
}
.fbw-calendar--weekdays,
.fbw-calendar--month,
.fbw-calendar--label,
.best-price{
    font-family: 'Raleway', sans-serif !important;
    text-transform: uppercase !important;
}
.fbw-calendar--label,
.fbw-calendar--weekdays{
    color: #855d2a !important;
    font-weight: 300 !important;
}
.fbw-calendar--day.valid_day{
    background: #fff;
}
#fb-widget .fbw-calendar--month .fbw-calendar--weekdays{
    font-size: 12px !important;
    letter-spacing: 0;
    font-weight: normal;
    color: #776100;
}
.fbw-calendar--weekdays{
    border: none !important;
}
#fb-widget .fbw-calendar--label,
#fb-widget .fbw-calendar--label{
    font-size: 12px;
    letter-spacing: 0;
    font-weight: normal;
    color: #776100 !important;
}

.fbw-calendar--theme-2 .fbw-calendar--action.layout2-version a.cancel-link{
    font-family: 'Raleway', sans-serif;
    font-size: 12px !important;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #B2BB1E !important;
    font-weight: bold !important;
}
.fbw-calendar--theme-2 .fbw-calendar--config fieldset input,
.fbw-calendar--theme-2 .fbw-calendar--config fieldset select{
    background-color: #eeede8;
    border-color: #eeede8;
    height: 40px;
    padding: 8px;
    font-size: 14px;
    line-height: 25px;
}
.fbw-calendar--dates .date--arrival .value,
.fbw-calendar--dates .date--departure .value {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
}
.fbw-calendar--theme-2 .fbw-calendar--config fieldset select{
    background: #eeede8 url(https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png) no-repeat;
    background-size: 20px;
    background-position: right 8px center;
    -webkit-appearance: none;
    border-radius: 0;
}
.fbw-calendar--config{
    background: #fff !important;
    padding: 40px 25px  0 5px!important;
}
.fwb-cal-bottom--group{
    padding: 50px 20px 0  20px;
    background-color:  #f8f8f8;
}
.fbw-calendar--month-name{
    font-weight: 300 !important;
    font-size: 25px !important;
    color: #000 !important;
    text-transform: capitalize !important;
}
.day--in,
.day--out{
    display: none !important;

}
.fbw-calendar--day.chosen_day{
    background: #575756 !important;
    color: #fff !important;
}
.fbw-calendar button{
    top: 5px !important;
    color: #000 !important;
}
.fbw-calendar--day{
    padding: 6px 6px 0;
    height: 53px;
    width: 53px;
}
.fbw-calendar--month{
    min-height: 400px;
}
@media(max-width: 767px){
    .dyncal_box{
        width: 100%;
    }
    .close_button-dyncal{
        width: auto;
        margin-right: 10px;
    }
    .fwb-cal-bottom--group{
        margin-right: 0 !important;
    }
    .fbw-calendar--config{
        margin-right: 0 !important;
        padding-right: 10px !important;
        padding-left: 10px !important;
    }
    #fb_calendar .fbw-calendar--config .fbw-calendar--dates span{
        border: none;
        background: none;
        height: auto;
    }
    .fbw-calendar--theme-2 .fbw-calendar--config fieldset input,
    .fbw-calendar--theme-2 .fbw-calendar--config fieldset select{
        max-width: 100% !important;
    }
    .fbw-calendar--theme-2 .fbw-calendar--config{
        margin-bottom: 50px !important;
    }
    .mfp-container{
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html[lang="zh-hans"] .socials{
        flex-direction: column;
        padding-left: 0;
    }
    html[lang="zh-hans"] .socials .wechat-account{
        margin-right: 0;
        margin-bottom: 25px;
    }

    html[lang="zh-hans"] .socials .weibo-account{
        margin-right: 0;
    }
}
.offer_no_show{
    display:none;
}
.banner-map{
    position: relative;
    height: 700px;
    top: 0px;
}
.g-map{
    position: absolute;
    width: 100%;
    height: 620px;
}
.g-map-control{
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.g-map-box-content{
    width: 250px;
    background: #fff;
}
.g-map-img {
    width: 250px;
    height: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.g-map-title {
    text-transform: uppercase;
    color: #B2BB1E;
    padding: 10px 0 5px;
}
.g-map-content {
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #5d5d5d;
}
.g-map-context {
    padding: 4px 12px 10px;
}
.popup-tip-anchor{
    height: 0;
    position: absolute;
    width: 200px;
}
.g-map-result {
    background: #fff;
    min-height: 200px;
    z-index: 99;
    border-bottom: solid 0.6px rgba(151, 151, 151, 0.75);
    padding: 30px 0;
    display: none;
}
.g-map-result.is-showing {
    display: block;
    height: 200px;
}
.g-map-result .container {
    position: relative;
    width: 35%;
    margin: 0 auto;
}
.g-map-result .icon-close {
    position: absolute;
    top: 0;
    right: 1%;
    width: 25px;
    height: 25px;
    text-align: center;
}
.adp{
    text-align: left;
}
.adp-directions{
    width: 100%;
}
.map-container{
    margin-top: 80px;
}

@media(max-width: 999px){
    .map-container{
        margin-top: 70px;
    }
    .banner-map{
        height: 600px;
    }
    .g-map-result .container {
        position: relative;
        width: 35%;
        margin: 0 auto;
    }
}
/
START // SOCIAL CONNECT STYLING***/
#guestaccount {
    font-size: 14px;
    display: block !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    padding: 0 !important;
    position: static !important; }
#guestaccount a {
    color: #fff;
    text-decoration: none;}
#guestaccount .label{
    padding-left: 10px;
}

.social-connect-on-desktop {
    float: right; }

#login {
    margin-top: 0; }

#fbga-logo {
    width: 200px !important;
    background-size: 100%;
    margin-top: 0 !important;
    height: 100px !important;}

#fbga-signin-social a {
    text-decoration: none; }

.form-control {
    margin: 10px 0; }

#fbga-popin .fbga-btn-form {
    background-color: #f4293f !important;}

#fbga-forgot-password > a,
#fbga-forgot-password > p > a {
    color: #B2BB1E !important; }

#fbga-signin-social .fbga-btn-social {
    text-indent: -99999px;
    width: 50px !important;
    height: 50px !important;
    padding: 0 !important;
    margin: 5px 5px 15px; }

#fbga-customtext{
    position: relative !important;
}
#social-text-connect {
    position: absolute;
    left: 0px;
    bottom: 100px;
    z-index: 10; }

#social-text-connect #fbga-customtext h2 {
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 10px 0 !important;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

#social-text-connect #fbga-customtext #connected-ga-offer {
    padding: 30px 50px !important;
    text-align: center !important; }

#social-text-connect #fbga-customtext p {
    text-align: center; }

#social-text-connect #fbga-customtext a {
    background: transparent !important;
    border-radius: 25px;
    border: 1px solid #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    padding: 5px 0!important;
    line-height: 30px;
    text-align: center;
    width: 150px;
    margin: 10px auto auto auto;
    font-weight: 500;
}

.fbga-text-overlay ul li {
    font-size: 14px; }



#fbga-customtext p {
    font-size: 16px;
    line-height: 25px;
}

#fbga-customtext > div{
    padding: 15px !important;
    background: rgba(34, 34, 34, 0.8);
}
#scroll_down {
    z-index: 9999; }

#slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 9999;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    text-shadow: 0 1px 11px #000;
    color: #fff;
    width: 80%; }

#logout {
    text-align: right;
    line-height: 14px;
    color: #fff;}
#logout #logout_header {
    display: block; }
@media (max-width: 991px) {
    #logout .name-account {
        font-size: 0; }

    #logout .name-account .fa-user {
        font-size: 16px;
        position: absolute;
        top: 10px;
        left: 20px; }
    #logout #logout_header {
        font-size: 12px;
        color: #000;
        position: absolute;
        width: 50px;
        height: 50px;
        padding-top: 25px;
        top: 0;
        left: 0;
        z-index: 10; } }

#slider-text h2,
#slider-text h3 {
    text-transform: uppercase;
    color: #fff; }

#slider-text h3 {
    font-size: 20px; }

@media (min-width: 991px) {
    #social-text-connect {
        min-width: 320px;
        max-width: 350px;
    }
}

@media (max-width: 1000px) {
    .mobile_login .label{
        display: none;
    }
    #guestaccount {
        height: auto !important;
        border-radius: 50%;
        border: 1px solid #fff;
        padding: 9px 11px !important;
    }
    #social-text-connect {
        right: auto;
        left: 50%;
        width: 90%;
        max-width: 420px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); } }

@media (max-width: 999px){
    #social-text-connect{
        bottom: 7%;
    }
    #social-text-connect #fbga-customtext a{
        margin-left: 0;
        font-size: 11px;
    }
    #guestaccount{
        margin-right: 30px;
        margin-left: auto;
    }
    #social-text-connect #fbga-customtext h2{
        font-size: 14px;
        text-align: left;
        font-weight: 600;
    }
    #social-text-connect #fbga-customtext p{
        text-align: left;
        font-size: 14px;
        font-weight: 300;
    }
}
@media (max-width: 1200px) {
    #guestaccount {
        margin-top: 0 !important; } }

@media (max-width: 1366px) {
    #fbga-popin {
        height: 700px !important; } }

#fbga-popin .fbga-offer-title,
#fbga-popin .fbga-popin-title,
.fbga-text-overlay ul li,
#fbga-popin .fbga-btn-form {
    color: #fff !important;
    font-weight: 400 !important; }

#fbga-popin hr {
    border-bottom: #fff !important; }

.social_login_sticky .label{
    display: none;
}

/*
END // SOCIAL CONNECT STYLING
/

.weather_container{
    position: absolute;
    color: #fff;
    bottom: 14%;
    left: 390px;
    /*left: calc(50% - 110px);*/
    z-index: 10;
    text-shadow: 2px 2px 2px #222, 0 -5px 35px rgba(255,255,255,0.3), 2px 8px 6px rgba(0,0,0,0.2);
}
.weather_info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
#weather_icon{
    padding-right: 10px;
}
.weather_title h3{
    margin: 0;
    font-size: 21px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 999px) {
    .weather_container{
        display: none;
    }

}
.mobile_login{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.filler_hidden{
    visibility: hidden;
}
.mobile_menu-frontpage.is-scrolled #login a,
.mobile_menu-frontpage.is-scrolled #login a{
    color: #fff !important;
}
.mobile_menu-frontpage.is-scrolled #guestaccount{
    border-color: #fff !important;
}
.mobile_menu-frontpage.is-scrolled .nav-toggle-icon{
    background-color: #fff;
}
.not_home{
    background-color: #B2BB1E;
}

button{
    border-color: inherit;
    border-style: none;
}

@media(min-width: 1001px) and (max-width: 1140px){
    .header_contacts_list{
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .header_contacts_list_single:nth-child(n+2){
        padding-left: 19px;
    }
}
.hero-404{
    margin-top: 200px;
}
.hero-404__content{
    text-align: center;
}

.reviews_container{
    width: 60%;
}
@media(max-width: 999px){
    .reviews_container{
        width: 90%;
    }
}
.single_contact_info {
    min-height:175px;
}
@media all and (-ms-high-contrast:none)
{
.single_contact_info { width:33%; } /* IE10 */
*::-ms-backdrop, .single_contact_info { width:33%; } /* IE11 */
}

.mobile_hotel_info_details a, .mobile_hotel_info_details a:hover {
    color:#ffffff;
}
.homepage-book {
    padding:20px 20px 0px!important;
}
.promo__entry_nonstretch .offer_hotels {
    width:95%;
}



/** SOFIA'S CHANGES **/

.language_selector, .currency_selector {
    position: relative;
    padding-right: 40px;
    display: inline-block;
}
@media(max-width: 999px){
    .language_selector, .currency_selector {
        display: none;
    }
}

.language_selector .dropdown, .currency_selector .dropdown_curr, .currency_selector_mobile .dropdown_curr , .language_selector_mobile .dropdown {
    width: 7px;
    height: 7px;
    display: inline-table;
    position: relative;
    margin-left: 5px;
    margin-top: 5px;
    vertical-align: text-top;
    transition: all .3s ease-in-out;
}
.language_selector:hover .other_languages, .currency_selector:hover .other_currencys {
    display: block;
}
.language_selector:hover .dropdown, .currency_selector:hover .dropdown_curr {
    transform: rotate(180deg);
}
.language_selector .dropdown:before,.language_selector .dropdown:after, .currency_selector .dropdown_curr:before,.currency_selector .dropdown_curr:after, .currency_selector_mobile .dropdown_curr:before,.currency_selector_mobile .dropdown_curr:after, .language_selector_mobile .dropdown:before,.language_selector_mobile .dropdown:after {
     content: '';
     height: 5px;
     width: 1px;
     background: white;
     display: block;
     position: absolute;
     top: 0;
     left: 0;
     transform: rotate(-45deg);
 }
.language_selector .dropdown:after, .currency_selector .dropdown_curr:after , .currency_selector_mobile .dropdown_curr:after, .language_selector_mobile .dropdown:after {
    transform: rotate(45deg);
    right: 2px;
    left: inherit;
}
.language_selector .current_language, .currency_selector .current_currency {
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    font-size: 0.8em;
    line-height: 2.067em;
}

.language_selector .current_language:focus + .other_languages, .currency_selector .current_currency:focus + .other_currencys {
    display: block;
}
.language_selector .other_languages, .currency_selector .other_currencys {
    display: none;
    background: white;
    border-radius: 2px;
    position: absolute;
    right: 10%;
    margin-top: 10px;
    top: 16px;
    padding: 10px 20px;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.18);
    z-index: 200;
}
.language_selector .other_languages li, .currency_selector .other_currencys li {
    text-align: left;
    padding: 10px;
    display: block;
    white-space: nowrap;
}
.language_selector .other_languages li:not(:last-child):after , .currency_selector .other_currencys li:not(:last-child):after {
    content: "";
    display: block;
    margin: 15px auto 0;
    width: 100%;
    height: 1px;
    background: #3a3a3a;
}
.language_selector .other_languages li a, .currency_selector .other_currencys li a {
    display: block;
    line-height: 1em;
    font-weight: 500;
    font-size: 0.8em;
    color: #3a3a3a;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.language_selector .other_languages li a:hover, .language_selector .other_languages li a:focus , .currency_selector .other_currencys li a:hover, .currency_selector .other_currencys li a:focus, .currency_selector .other_currencys li a.current {
  color: #B2BB1E;
}

.other_currencys span[class^="icon-"] {
    margin-right: 10px;
}
.icon-globe {
    font-size: 13px;
    vertical-align: baseline;
    margin-right: 5px;
}


.offer_details .sgd_currency, .offer_details .usd_currency, .offer_details .eur_currency, .offer_details .cny_currency, .offer_details .gbp_currency {
    display: none;
}
.offers_item_price.sgd_currency, .offers_item_price.usd_currency, .offers_item_price.eur_currency, .offers_item_price.cny_currency, .offers_item_price.gbp_currency {
    display: none;
}
.offers_item_price .sgd_currency, .offers_item_price .usd_currency, .offers_item_price .eur_currency, .offers_item_price .cny_currency, .offers_item_price .gbp_currency {
    display: none;
}

.language_selector_mobile {
    padding: 100px 15px 0 15px;
}
.language_selector_mobile:after {
    background-color: #fff;
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 50%;
    position: relative;
    -webkit-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    transform: translate(-50%,0);
    width: 100%;
}

.currency_selector_mobile, .language_selector_mobile {
    display: none;
}


.currency_selector_mobile .current_currency {
    display: inline-block;
    margin: 0 15px;
    color: #fff;
}
.currency_selector_mobile a, .language_selector_mobile a {
    display: block;
    padding: 15px 0;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
}
.currency_selector_mobile .other_currencys, .language_selector_mobile .other_languages {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.language_selector_mobile .other_languages {
    margin: 0 15px;
}
.currency_selector_mobile .other_currencys li {
    padding: 0px 15px;
    text-transform: uppercase;
}
.currency_selector_mobile .other_currencys li a, .language_selector_mobile .other_languages li a {
    padding: 7px 0;
    font-weight: 100;
}
.currency_selector_mobile .dropdown_curr.rotate_arrow, .language_selector_mobile .dropdown.rotate_arrow {
    transform: rotate(180deg);
}
.currency_selector_mobile .other_currencys li a.current , .language_selector_mobile .other_languages li a.current {
    color: #B2BB1E;
}


@media(max-width: 999px){
    .currency_selector_mobile, .language_selector_mobile {
        display: block;
    }
    .currency_selector_mobile .other_currencys li a.current, .language_selector_mobile .other_languages li a.current {
        display: none;
    }
    .currency_selector_mobile a, .language_selector_mobile a {
        display: block;
        padding: 15px 0;
        margin: 5px 50px 5px 0;
        color: #fff !important;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 500;
    }
    .other_language {
        font-weight: 100;
    }
}

/** megamenu for properties **/
.hidden_mobile .add_big_menu .sub-menu {
    width: 50vw;
    position: absolute;
    /*display: block;*/
    top: 88px;
    margin-top: -20px;
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
.hidden_mobile .add_big_menu .sub-menu:before {
    content: "";
    width: 200vw;
    display: block;
    z-index: -1;
    position: absolute;
    background-color: #fff;
    height: 100%;
    top: 0;
    left: -100vw;
}
.megamenu_title {
    display: block;
    color: #B2BB1E;
}
.megamenu_title input {
    display: block;
    margin: 12px 0 26px 0;
    border: 1px solid #B2BB1E;
    background: #fff;
    width: 100%;
    height: 34px;
    text-indent: 10px;
    font-size: 16px;
    font-weight: 100;
    font-family: 'Raleway', sans-serif;
}

.menu-primary-container .menu li:not(.add_big_menu) .sub-menu {
    width: 50vw;
    position: absolute;
    top: 68px;
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease-in-out;
    left: 27px;
}
.menu-primary-container .menu li:not(.add_big_menu) .sub-menu:before {
    content: "";
    width: 200vw;
    display: block;
    z-index: -1;
    position: absolute;
    background-color: #fff;
    height: 100%;
    top: 0;
    left: -100vw;
}
.menu-primary-container .menu li:not(.add_big_menu) .sub-menu a {
    color: #000;
    padding: 10px 0;
    font-weight: 600;
}

.list_of_countries {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.big_title_country {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
}
.property_name {
    padding: 10px 0 !important;
    font-weight: 500;
    color: #3a3a3a !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 12px !important;
}
.select2-container--default .select2-selection--single {
    border-color: transparent !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0 35px 0 20px !important;
    color: #000 !important;
    font-size: 18px;
    line-height: 26px !important;
    font-family: 'Palatino', serif !important;
    font-style: italic !important;
}
.select2-container--default .select2-selection--single {
    background-color: transparent !important;
}
.select2-selection__arrow b {
    background: transparent url(https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png) no-repeat;
    background-size: 20px;
    background-position: center center;
    cursor: pointer;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    left: unset !important;
    border-width: unset !important;
    border-style: unset !important;
    border-color: unset !important;
    top: unset !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: #fff !important;
    color: #776100 !important;
    font-weight: bold;
}
.select2-dropdown.select2-dropdown--below {
    padding: 5px !important;
    color: #727272 !important;
    font-size: 16px ;
    line-height: 26px !important;
    font-family: 'Palatino', serif !important;
    font-style: italic !important;
    -webkit-box-shadow: 2px 2px 14px 0 rgb(0 0 0 / 10%);
    box-shadow: 2px 9px 11px 0 rgb(0 0 0 / 10%);
    border-color: #fff !important;
    border-radius: 0px !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #727272 !important;
    background: #fff !important;
}
/*.select2-results__option {*/
/*    display: none;*/
/*}*/
/*.select2-results__option.showOption {*/
/*    display: block;*/
/*}*/
.select2-container--default .select2-results__option--disabled {
    display: none;
}
.select2-search--dropdown {
    display: block;
    padding: 0 0 5px 0 !important;
}
.select2-container--default .select2-search--dropdown .select2-search__field, .select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border: 2px solid #a99436 !important;
    color: #ddd !important;
    font-size: 20px !important;
    line-height: 26px !important;
    font-family: 'Palatino', serif !important;
    font-style: italic !important;
    padding: 4px 10px !important;
}
.select2-results {
    display: block;
    /*padding: 0 10px;*/
}

.select2-results__option {
    display: none;
}
.select2-results__option.showOption , .select2-results__option--highlighted , .return_to_default {
    display: block;
}

body:not(.single-property) .choose_hotel label ,
body:not(.single-property) .choose_destination label:not(:first-of-type) {
    margin: 0 20px;
}
.choose_destination .select2-container--default .select2-selection--single .select2-selection__rendered {
     padding: 0 35px 0 0 !important
}
.select2-container {
    width: auto !important;
}
@media (max-width: 1380px) {

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        font-size: 19px !important;
    }
    .choose_hotel, .choose_destination {
        padding-right: 5px !important;
    }
}
 body:not(.single-property) .booking_tab.check_out {
    padding-right: 30px;
}
@media(max-width:999px) {
    .select2-container--open {
        z-index: 9999;
    }

    label {
        text-transform: uppercase;
    }
    .centered_label {
        display: block;
        width: 80%;
        margin: 30px auto 0;
        text-align: left;
    }
    .qs-form_adults, .qs-form_children {
        border-radius: 0;
        width: auto;
        padding: 0 20px 0 0;
        font-size: 20px;
    }
    .check_in, .booking_guests, .tab_bk_now_btn {
        padding-left: 0;
        margin-top: 0 !important;
    }
    .booking_guests:last-of-type {
        align-items: flex-end !important;
    }
    .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding: 0 !important;
        font-size: 20px !important;
    }
    .check_in_month, .check_out_month {
        font-size: 18px !important;
    }
    .select2-container {
        width: 100% !important;
    }

    .select2-container .select2-selection--single {
        height: 35px !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        right: 10px !important;
    }
    .mobile_booking_row.one_line {
        border-bottom: 1px solid #a99436;
        justify-content: space-between;
    }
    .mobile_booking_row.one_line .mobile_booking_tab {
        border-bottom: 0;
    }

    .qs-form_checkin, .qs-form_checkout{
        top: 30px;
        bottom: auto;
    }
    .check_in_month:after,
    .check_out_month:after{
        display: none;
    }

    /*input[name="mobile_qs_form_checkin"] , input[name="mobile_qs_form_checkout"] {*/
    /*    height: 0;*/
    /*    width: 0;*/
    /*    border: 0;*/
    /*    margin: 0;*/
    /*}*/
    .qs_booking_tab_check_in, .qs_booking_tab_check_out {
        width: 100%;
        position: relative;
    }
    .mobile_booking_tab.check_in, .mobile_booking_tab.check_out {
        margin: 0 !important;
        padding: 0 !important;
        width: 40%;
    }
    .qs_booking_tab_check_in:before, .qs_booking_tab_check_out:before {
        content: "\e923";
        font-family: "icomoon";
        position: relative;
        right: 0;
        font-size: 16px;
        font-style: normal;
    }
    /*.qs_booking_tab_check_in:after, .qs_booking_tab_check_out:after {*/
    /*    background: #fff url(https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png) no-repeat;*/
    /*    background-size: 20px;*/
    /*    background-position: center center;*/
    /*    cursor: pointer;*/
    /*    width: 40px;*/
    /*    height: 35px;*/
    /*    right: -10px;*/
    /*    content: '';*/
    /*    position: relative;*/
    /*}*/
    .check_out_month:after {
        content: unset;
    }
    .check_in_day, .check_out_day {
        padding-right: 10px;
        padding-left: 10px;
        font-style: normal;
    }

     .mobile_booking_tab {
        width: 80%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /*-webkit-box-pack: center;*/
        /*-ms-flex-pack: center;*/
        /*justify-content: center;*/
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        /*margin-top: 10px;*/
        border-right: none;
        border-bottom: 1px solid #a99436;
        margin: 5vh auto 0;
        padding-right: 0;
    }
    .mobile_booking_row.more_space {
        margin: 8vh auto 10px auto;
    }
    .mobile_booking_tab:first-of-type {
        margin-top:0;
    }
    .promo_code {
        font-size: 12px;
    }

    ::placeholder, :-ms-input-placeholder, ::-ms-input-placeholder {
        color: #000;
    }
    .mobile_booking_tab .hasDatepicker {
        display: none;
        position: absolute;
        z-index: 99;
    }

}


@media (min-width: 1000px) and (max-height: 650px) {
    .weather_container {
        bottom: 20%;
    }
    .hero_slider-container {
        top: 35%;
    }
}
@media (min-width: 1000px) and (max-width: 1200px) and (max-height: 800px) {
    .weather_container {
        bottom: 17%;
    }
}


/*BRANDS COLORS*/

/*Orange color*/
.brand_orange .dyncal_header,
.brand_orange .mobile_menu-frontpage.is-scrolled,
.brand_orange .mobile_menu,
.brand_orange .menu_mobile,
.brand_orange .navbar,
.brand_orange .header nav ul li ul,
.brand_orange button.mfp-close,
.brand_orange .modal_popup-title::after,
.brand_orange .amenities_icon,
.brand_orange .offers_item_price,
.brand_orange .hotel_location_contact_btn,
.brand_orange .surrounding_item_content,
.brand_orange .meeting_overlay,
.brand_orange .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_orange .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_orange .capacity_table--custom th.ct-custom__td,
.brand_orange .capacity_table--custom td.ct-custom__td{
    background: #d56f1a;
}

body:not(.home) .mobile_logo_before_scroll.dark-logo{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/PA_Hospitality_Logo_WHITE-LONG.png') !important;
    background-color: transparent !important;
    padding-left: 30px;
    padding-right: 30px;
}

.brand_orange .single_hotel_intro strong,
.brand_orange .modal_popup-caption,
.brand_orange .modal_popup-box_container .floor_area strong,
.brand_orange .modal_popup-box_container .occupancy strong,
.brand_orange .hotel_location_contact .hotel_location_contact_email a,
.brand_orange .location_container_left .hotel_name,
.brand_orange .location_container_left .hotel_email a,
.brand_orange .gallery_image_title,
.brand_orange .mfp-title,
.brand_orange .surrounding_read_more,
.brand_orange .contact_info_detail a,
.brand_orange .capacity_location,
.brand_orange .download_section,
.brand_orange .download_brochure,
.brand_orange .about_us_highlighted,
.brand_orange a {
    color:  #d56f1a;
}

.brand_orange a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/PA_Hospitality_Logo_WHITE-LONG.png') !important;
}

.brand_orange .category_filter_list_item:not(:last-child){
    border-color: #d56f1a;
}
.brand_orange .offers_item_feat {
    background: rgba(213, 111, 26, 0.8);
}

/*brown color*/
.brand_brown .dyncal_header,
.brand_brown .mobile_menu-frontpage.is-scrolled,
.brand_brown .mobile_menu,
.brand_brown .menu_mobile,
.brand_brown .navbar,
.brand_brown .header nav ul li ul,
.brand_brown button.mfp-close,
.brand_brown .modal_popup-title::after,
.brand_brown .amenities_icon,
.brand_brown .offers_item_price,
.brand_brown .hotel_location_contact_btn,
.brand_brown .surrounding_item_content,
.brand_brown .meeting_overlay,
.brand_brown .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_brown .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_brown .capacity_table--custom th.ct-custom__td,
.brand_brown .capacity_table--custom td.ct-custom__td{
    background: #855d2a;
}

.brand_brown .single_hotel_intro strong,
.brand_brown .modal_popup-caption,
.brand_brown .modal_popup-box_container .floor_area strong,
.brand_brown .modal_popup-box_container .occupancy strong,
.brand_brown .hotel_location_contact .hotel_location_contact_email a,
.brand_brown .location_container_left .hotel_name,
.brand_brown .location_container_left .hotel_email a,
.brand_brown .gallery_image_title,
.brand_brown .mfp-title,
.brand_brown .surrounding_read_more,
.brand_brown .contact_info_detail a,
.brand_brown .capacity_location,
.brand_brown .download_section,
.brand_brown .download_brochure,
.brand_brown .about_us_highlighted,
.brand_brown a {
    color:  #855d2a;
}

.brand_brown .category_filter_list_item:not(:last-child){
    border-color: #855d2a;
}
.brand_brown .offers_item_feat {
    background: rgba(113, 93, 42, 0.8);
}
/*brown-viale color*/
.brand_brownviale .dyncal_header,
.brand_brownviale .mobile_menu-frontpage.is-scrolled,
.brand_brownviale .mobile_menu,
.brand_brownviale .menu_mobile,
.brand_brownviale .navbar,
.brand_brownviale .header nav ul li ul,
.brand_brownviale button.mfp-close,
.brand_brownviale .modal_popup-title::after,
.brand_brownviale .amenities_icon,
.brand_brownviale .offers_item_price,
.brand_brownviale .hotel_location_contact_btn,
.brand_brownviale .surrounding_item_content,
.brand_brownviale .meeting_overlay,
.brand_brownviale .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_brownviale .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_brownviale .capacity_table--custom th.ct-custom__td,
.brand_brownviale .capacity_table--custom td.ct-custom__td{
    background: #7c6358;
}

.brand_brownviale .single_hotel_intro strong,
.brand_brownviale .modal_popup-caption,
.brand_brownviale .modal_popup-box_container .floor_area strong,
.brand_brownviale .modal_popup-box_container .occupancy strong,
.brand_brownviale .hotel_location_contact .hotel_location_contact_email a,
.brand_brownviale .location_container_left .hotel_name,
.brand_brownviale .location_container_left .hotel_email a,
.brand_brownviale .gallery_image_title,
.brand_brownviale .mfp-title,
.brand_brownviale .surrounding_read_more,
.brand_brownviale .contact_info_detail a,
.brand_brownviale .capacity_location,
.brand_brownviale .download_section,
.brand_brownviale .download_brochure,
.brand_brownviale .about_us_highlighted,
.brand_brownviale a {
    color:  #7c6358;
}

.brand_brownviale .category_filter_list_item:not(:last-child){
    border-color: #7c6358;
}
.brand_brownviale .offers_item_feat {
    background: rgba(124, 99, 88, 0.8);
}

.brand_brownviale a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/viale-logo-different-versions-20221229-White_画板-1-副本-13-1.png') !important;
    height: 90px;
    margin-top: -10px;
}

/*Green color*/
.brand_green .dyncal_header,
.brand_green .mobile_menu-frontpage.is-scrolled,
.brand_green .mobile_menu,
.brand_green .menu_mobile,
.brand_green .navbar,
.brand_green .header nav ul li ul,
.brand_green button.mfp-close,
.brand_green .modal_popup-title::after,
.brand_green .amenities_icon,
.brand_green .offers_item_price,
.brand_green .hotel_location_contact_btn,
.brand_green .surrounding_item_content,
.brand_green .meeting_overlay,
.brand_green .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_green .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_green .capacity_table--custom th.ct-custom__td,
.brand_green .capacity_table--custom td.ct-custom__td{
    background: #607b2c;
}

.brand_green .single_hotel_intro strong,
.brand_green .modal_popup-caption,
.brand_green .modal_popup-box_container .floor_area strong,
.brand_green .modal_popup-box_container .occupancy strong,
.brand_green .hotel_location_contact .hotel_location_contact_email a,
.brand_green .location_container_left .hotel_name,
.brand_green .location_container_left .hotel_email a,
.brand_green .gallery_image_title,
.brand_green .mfp-title,
.brand_green .surrounding_read_more,
.brand_green .contact_info_detail a,
.brand_green .capacity_location,
.brand_green .download_section,
.brand_green .download_brochure,
.brand_green .about_us_highlighted,
.brand_green a {
    color:  #607b2c;
}

.brand_green a.mobile_logo-isfront.is-scrolled{
    background-image:url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/3.-ParcVue-Only-Brand-Logo-White-Vertical-PNG.png') !important;
    height: 80px;
}

.brand_green .category_filter_list_item:not(:last-child){
    color:  #607b2c;
}
.brand_green .offers_item_feat {
    background: rgba(96, 123, 44, 0.8);
}

/*Blue color*/
.brand_blue .dyncal_header,
.brand_blue .mobile_menu-frontpage.is-scrolled,
.brand_blue .mobile_menu,
.brand_blue .menu_mobile,
.brand_blue .navbar,
.brand_blue .header nav ul li ul,
.brand_blue button.mfp-close,
.brand_blue .modal_popup-title::after,
.brand_blue .amenities_icon,
.brand_blue .offers_item_price,
.brand_blue .hotel_location_contact_btn,
.brand_blue .surrounding_item_content,
.brand_blue .meeting_overlay,
.brand_blue .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_blue .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_blue .capacity_table--custom th.ct-custom__td,
.brand_blue .capacity_table--custom td.ct-custom__td{
    background: #3281d3;
}

.brand_blue .single_hotel_intro strong,
.brand_blue .modal_popup-caption,
.brand_blue .modal_popup-box_container .floor_area strong,
.brand_blue .modal_popup-box_container .occupancy strong,
.brand_blue .hotel_location_contact .hotel_location_contact_email a,
.brand_blue .location_container_left .hotel_name,
.brand_blue .location_container_left .hotel_email a,
.brand_blue .gallery_image_title,
.brand_blue .mfp-title,
.brand_blue .surrounding_read_more,
.brand_blue .contact_info_detail a,
.brand_blue .capacity_location,
.brand_blue .download_section,
.brand_blue .download_brochure,
.brand_blue .about_us_highlighted,
.brand_blue a {
    color:  #3281d3;
}

.brand_blue a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/PA_Hospitality_Logo_WHITE-LONG.png') !important;
}

.brand_blue .category_filter_list_item:not(:last-child){
    color:  #3281d3;
}
.brand_blue .offers_item_feat {
    background: rgba(50, 129, 211, 0.8);
}

/*Yellow color*/
.brand_yellow .dyncal_header,
.brand_yellow .mobile_menu-frontpage.is-scrolled,
.brand_yellow .mobile_menu,
.brand_yellow .menu_mobile,
.brand_yellow .navbar,
.brand_yellow .header nav ul li ul,
.brand_yellow button.mfp-close,
.brand_yellow .modal_popup-title::after,
.brand_yellow .amenities_icon,
.brand_yellow .offers_item_price,
.brand_yellow .hotel_location_contact_btn,
.brand_yellow .surrounding_item_content,
.brand_yellow .meeting_overlay,
.brand_yellow .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_yellow .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_yellow .capacity_table--custom th.ct-custom__td,
.brand_yellow .capacity_table--custom td.ct-custom__td {
    background: #fdb515;
}

.brand_yellow .single_hotel_intro strong,
.brand_yellow .modal_popup-caption,
.brand_yellow .modal_popup-box_container .floor_area strong,
.brand_yellow .modal_popup-box_container .occupancy strong,
.brand_yellow .hotel_location_contact .hotel_location_contact_email a,
.brand_yellow .location_container_left .hotel_name,
.brand_yellow .location_container_left .hotel_email a,
.brand_yellow .gallery_image_title,
.brand_yellow .mfp-title,
.brand_yellow .surrounding_read_more,
.brand_yellow .contact_info_detail a,
.brand_yellow .capacity_location,
.brand_yellow .download_section,
.brand_yellow .download_brochure,
.brand_yellow .about_us_highlighted,
.brand_yellow a {
    color:  #fdb515;
}

.brand_yellow a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/PA_Hospitality_Logo_WHITE-LONG.png') !important;
}

.brand_yellow .category_filter_list_item:not(:last-child){
    color:  #fdb515;
}
.brand_yellow .offers_item_feat {
     background: rgba(253, 181, 21, 0.8);
 }

/*Teal color*/
.brand_teal .dyncal_header,
.brand_teal .mobile_menu-frontpage.is-scrolled,
.brand_teal .mobile_menu,
.brand_teal .menu_mobile,
.brand_teal .navbar,
.brand_teal .header nav ul li ul,
.brand_teal button.mfp-close,
.brand_teal .modal_popup-title::after,
.brand_teal .amenities_icon,
.brand_teal .offers_item_price,
.brand_teal .hotel_location_contact_btn,
.brand_teal .surrounding_item_content,
.brand_teal .meeting_overlay,
.brand_teal .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_teal .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_teal .capacity_table--custom th.ct-custom__td,
.brand_teal .capacity_table--custom td.ct-custom__td{
    background: #22bcb9;
}

.brand_teal .single_hotel_intro strong,
.brand_teal .modal_popup-caption,
.brand_teal .modal_popup-box_container .floor_area strong,
.brand_teal .modal_popup-box_container .occupancy strong,
.brand_teal .hotel_location_contact .hotel_location_contact_email a,
.brand_teal .location_container_left .hotel_name,
.brand_teal .location_container_left .hotel_email a,
.brand_teal .gallery_image_title,
.brand_teal .mfp-title,
.brand_teal .surrounding_read_more,
.brand_teal .contact_info_detail a,
.brand_teal .capacity_location,
.brand_teal .download_section,
.brand_teal .download_brochure,
.brand_teal a,
.brand_teal .about_us_highlighted{
    color:  #22bcb9;
}

.brand_teal a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/PA_Hospitality_Logo_WHITE-LONG.png') !important;
}

.brand_teal .category_filter_list_item:not(:last-child){
    color:  #22bcb9;
}
.brand_teal .offers_item_feat {
     background: rgba(34, 188, 185, 0.8);
 }

/*GreenYellow color*/
.brand_greenyellow .dyncal_header,
.brand_greenyellow .mobile_menu-frontpage.is-scrolled,
.brand_greenyellow .mobile_menu,
.brand_greenyellow .menu_mobile,
.brand_greenyellow .navbar,
.brand_greenyellow .header nav ul li ul,
.brand_greenyellow button.mfp-close,
.brand_greenyellow .modal_popup-title::after,
.brand_greenyellow .amenities_icon,
.brand_greenyellow .offers_item_price,
.brand_greenyellow .hotel_location_contact_btn,
.brand_greenyellow .surrounding_item_content,
.brand_greenyellow .meeting_overlay,
.brand_greenyellow .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_greenyellow .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_greenyellow .capacity_table--custom th.ct-custom__td,
.brand_greenyellow .capacity_table--custom td.ct-custom__td{
    background: #B2BB1E;
}

.brand_greenyellow .single_hotel_intro strong,
.brand_greenyellow .modal_popup-caption,
.brand_greenyellow .modal_popup-box_container .floor_area strong,
.brand_greenyellow .modal_popup-box_container .occupancy strong,
.brand_greenyellow .hotel_location_contact .hotel_location_contact_email a,
.brand_greenyellow .location_container_left .hotel_name,
.brand_greenyellow .location_container_left .hotel_email a,
.brand_greenyellow .gallery_image_title,
.brand_greenyellow .mfp-title,
.brand_greenyellow .surrounding_read_more,
.brand_greenyellow .contact_info_detail a,
.brand_greenyellow .capacity_location,
.brand_greenyellow .download_section,
.brand_greenyellow .download_brochure,
.brand_greenyellow a,
.brand_greenyellow .about_us_highlighted{
    color:  #B2BB1E;
}

.brand_greenyellow a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/11/PA_Hospitality_Logo_WHITE-LONG.png') !important;
}

.brand_greenyellow .category_filter_list_item:not(:last-child){
    color:  #B2BB1E;
}
.brand_greenyellow .offers_item_feat {
     background: rgba(178, 187, 30, 0.8);
 }

/*Magenta color*/
.brand_magenta .dyncal_header,
.brand_magenta .mobile_menu-frontpage.is-scrolled,
.brand_magenta .mobile_menu,
.brand_magenta .menu_mobile,
.brand_magenta .navbar,
.brand_magenta .header nav ul li ul,
.brand_magenta button.mfp-close,
.brand_magenta .modal_popup-title::after,
.brand_magenta .amenities_icon,
.brand_magenta .offers_item_price,
.brand_magenta .hotel_location_contact_btn,
.brand_magenta .surrounding_item_content,
.brand_magenta .meeting_overlay,
.brand_magenta .capacity_table:not(.capacity_table--custom) th:first-child,
.brand_magenta .capacity_table:not(.capacity_table--custom) td:first-child,
.brand_magenta .capacity_table--custom th.ct-custom__td,
.brand_magenta .capacity_table--custom td.ct-custom__td{
    background: #702e4f;
}

.brand_magenta .single_hotel_intro strong,
.brand_magenta .modal_popup-caption,
.brand_magenta .modal_popup-box_container .floor_area strong,
.brand_magenta .modal_popup-box_container .occupancy strong,
.brand_magenta .hotel_location_contact .hotel_location_contact_email a,
.brand_magenta .location_container_left .hotel_name,
.brand_magenta .location_container_left .hotel_email a,
.brand_magenta .gallery_image_title,
.brand_magenta .mfp-title,
.brand_magenta .surrounding_read_more,
.brand_magenta .contact_info_detail a,
.brand_magenta .capacity_location,
.brand_magenta .download_section,
.brand_magenta .download_brochure,
.brand_magenta .about_us_highlighted,
.brand_magenta a {
    color:  #702e4f;
}

.brand_magenta .category_filter_list_item:not(:last-child){
    color:  #702e4f;
}
.brand_magenta .offers_item_feat {
    background: rgba(127, 17, 224, 0.8);
}

a.mobile_logo-isfront.is-scrolled{
    background-color: transparent;
    padding-right: 30px;
    padding-left: 30px;
}

body.property-template-tpl-single-property-rooms .trigger_room_box, body.property-template-tpl-meeting .meeting_promo_button {
    text-transform: uppercase;
}
html[lang="zh-hans"] .select2-container--open .select2-dropdown--above {
    padding: 5px;
    min-width: 300px !important;
}
html[lang="zh-hans"] .select2-container--default .select2-search--dropdown .select2-search__field {
    padding: 4px !important;
    font-style: initial !important;
}
html[lang="zh-hans"] .select2-dropdown.select2-dropdown--below {
    line-height: 20px !important;
    min-width: 300px !important;
    font-style: initial !important;
}
html[lang="zh-hans"] .select2-container--default .select2-results>.select2-results__options {
    color: #888888;
    font-family: 'Palatino', serif !important;
    font-size: 14px;
}
html[lang="zh-hans"] .qs-form_adults,
html[lang="zh-hans"] .qs-form_children,
html[lang="zh-hans"] .select2-container--default .select2-selection--single .select2-selection__rendered,
html[lang="zh-hans"] .qs_booking_tab_check_in,
html[lang="zh-hans"] .qs_booking_tab_check_out{
    font-style: initial !important;
    font-size: 14px;
}
html[lang="zh-hans"] .qs_booking_tab_check_in,
html[lang="zh-hans"] .qs_booking_tab_check_out,
html[lang="zh-hans"] .check_in_month,
html[lang="zh-hans"] .check_out_month,
html[lang="zh-hans"] .qs-form_adults,
html[lang="zh-hans"] .qs-form_children,
html[lang="zh-hans"] .qs-form_adults option,
html[lang="zh-hans"] .check_in_month:after,
html[lang="zh-hans"] .check_out_month:after,
html[lang="zh-hans"] .qs-form_children option{
    font-size: 14px;
}
html[lang="en-US"] .select2-results__options {
    font-style: italic;
    font-family: 'Palatino', serif !important;
    color: #727272 !important;
}

.weather_container{
    display: none;
}

.property-template-tpl-single-property .single_hotel_intro_container:lang(zh-hans){
    font-style: normal;
}

/*.postid-4357 a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/07/viale-logo-different-versions-20221229_画板-1-副本-13.png') !important;
}

.postid-4171 a.mobile_logo-isfront.is-scrolled{
    background-image: url('https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/07/viale-logo-different-versions-20221229_画板-1-副本-13.png') !important;
}*/

.brand_brownviale .header .logo img{
    content: url(https://parkavenuegroup.com/wp-content/uploads/sites/171/2023/07/viale-logo-different-versions-20221229-White_画板-1-副本-13-e1690343084520.png) !important;
}

.brand_brownviale .custom-hotel-logo img {
    margin-left: 0px;
    margin-top: -15px;
}

.g-map-result .container {
    position: relative;
    width: 80%;
    margin: 0 auto;
    background: #f8f8f8;
    z-index: 9999;
    padding: 25px;
}
