:root {
    --main-color: #5191FA;
    --grey-color: #5E6D77;
    --light-grey-color: #EAEEF3;
    --orange-color: #FA5636;
    --link-color: #1A2B48;
}

@media (min-width: 768px) {
    .container-md,
    .container-sm,
    .container,
    .container-fluid {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (min-width: 1290px) {
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1290px;
    }
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    overflow: hidden;
    background-color: #e5e5e5;
}

.st-border-radius {
    border-radius: 8px;
}

.grey {
    color: var(--grey-color, #5E6D77);
}

.btn {
    border: none;
    box-shadow: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background 0.2s, color 0.2s;
}

body {
    color: var(--link-color, #1a2b48);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[data-show-all] {
    position: relative;
    overflow: hidden;
}

ul.st-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

@media (min-width: 991px) {
    .col-md-9 {
        flex: 0 0 auto;
        width: 75%;
    }
}

@media (max-width: 990px) {
    .col-md-9 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
}

@media (max-width: 767px) {
    .col-sm-4 {
        flex: 0 0 auto;
        width: 100%;
    }
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.h-100 {
    height: 100%;
}

h1 {
    font-size: 34px;
}

@media (max-width: 767px) {
    h1 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }
}

img {
    max-width: 100%;
    height: auto;
}

h2 {
    font-size: 28px;
}

@media (max-width: 767px) {
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 20px;
    }
}

h3 {
    font-size: 24px;
}

@media (max-width: 767px) {
    h3 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 22px;
}

@media (max-width: 767px) {
    h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    h4 {
        font-size: 18px;
    }
}

.c-main {
    color: var(--main-color, #1a2b48) !important;
}

.c-grey {
    color: var(--grey-color, #5e6d77) !important;
}

.c-orange {
    color: var(--orange-color, #fa5636) !important;
}

.mt50 {
    margin-top: 50px;
}

.mt30 {
    margin-top: 30px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.mt5 {
    margin-top: 5px;
}

.mt10 {
    margin-top: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.ml5 {
    margin-left: 5px;
}

.mb0 {
    margin-bottom: 0;
}

.mg0 {
    margin: 0 !important;
}

.mr5 {
    margin-right: 5px;
}

.mr15 {
    margin-right: 15px !important;
}

.mr30 {
    margin-right: 30px;
}

.ml3 {
    margin-left: 3px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pr30 {
    padding-right: 30px;
}

@media (max-width: 480px) {
    .pr30 {
        padding-top: 20px;
    }
}

.pt150 {
    padding-top: 150px;
}

@media (max-width: 767px) {
    .pt150 {
        padding-top: 80px;
    }
}

@media (max-width: 480px) {
    .pt150 {
        padding-top: 40px;
    }
}

.pb150 {
    padding-bottom: 150px;
}

@media (max-width: 767px) {
    .pb150 {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .pb150 {
        padding-bottom: 40px;
    }
}

.font-normal {
    font-weight: 400 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-bold {
    font-weight: 600 !important;
}

.f14 {
    font-size: 14px !important;
}

.f16 {
    font-size: 16px !important;
}

.f18 {
    font-size: 18px !important;
}

.lh18 {
    line-height: 18px !important;
}

.f22 {
    font-size: 22px !important;
}

.f24 {
    font-size: 24px !important;
}

.f28 {
    font-size: 28px !important;
}

.f36 {
    font-size: 36px !important;
}

.f48 {
    font-size: 48px !important;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-center {
    justify-content: center;
}

.upper {
    text-transform: uppercase;
}

.st-flex {
    display: flex;
    align-items: center;
    justify-content: center;
}

.st-flex.space-between {
    justify-content: space-between;
}

.st-flex.justify-left {
    justify-content: left;
}

.st-link {
    color: var(--lnik-color, #5191fa);
    text-decoration: none;
}

.st-link:hover {
    color: var(--main-color, #5191fa) !important;
    text-decoration: underline;
}

.relative {
    position: relative;
}

.btn {
    border: none;
    box-shadow: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background 0.2s, color 0.2s;
}

.btn.btn-default {
    border-radius: 8px;
    color: var(--link-color, #5191fa);
    border: 1px solid #d7dce3;
}

.btn.btn-default:hover {
    background: #497bdb;
    color: #fff;
}

.btn.btn-primary {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    margin-left: auto;
    background: var(--main-color, #5191FA);
    padding: 15px 35px;
}

.btn.btn-primary:hover {
    background: var(--main-color, #5191FA);
    color: #fff;
}

.btn.btn-primary.st-btn-second {
    background: var(--orange-color, #FA5636);
}

.btn.btn-primary.st-btn-second:hover {
    background: #e65335;
}

.btn.btn-primary.st-button-main {
    background: var(--main-color, #1a2b48);
}

.btn.btn-green {
    background: var(--main-color, #5191fa);
    color: #fff;
}

.btn.btn-green:hover {
    background: var(--main-color, #5191fa);
    color: #fff;
    opacity: 0.9;
}

.btn.btn-transparent {
    background: rgba(26, 43, 72, 0.5);
    font-size: 14px;
    color: #fff;
    padding: 10px 15px;
}

.btn.btn-transparent:hover {
    background: rgba(26, 43, 72, 0.7);
}

.btn.has-icon {
    display: flex;
    align-items: center;
}

.btn.has-icon .fa {
    margin-right: 10px;
}

.btn.radius {
    border-radius: 8px !important;
}

.btn.btn-large {
    font-size: 16px;
    padding: 12px 25px;
}

.btn.btn-full {
    width: 100%;
}

.btn.btn-orange {
    background: var(--orange-color, #fa5636);
    color: #fff;
}

.btn.btn-orange:hover {
    background: #e65335;
    color: #fff;
}

.st-sticky {
    position: fixed !important;
    top: -43px;
    width: 100%;
    background: #fff;
    z-index: 9999 !important;
    height: 100vh;
}

.st-contact-form .form-group {
    margin-bottom: 20px;
}

.st-contact-form .form-group input {
    border: 1px solid #dae1e7;
    border-radius: 8px;
    box-shadow: none;
    color: var(--grey-color, #5E6D77);
    padding: 10px;
}

.st-contact-form .form-group textarea {
    height: 210px;
    border: 1px solid #dae1e7;
    border-radius: 8px;
    box-shadow: none;
    color: var(--grey-color, #5E6D77);
    padding: 10px;
}

.st-contact-form.st-border-new {
    background: #FFFFFF;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.st-contact-form.st-border-new h3 {
    margin: 0px;
}

.st-contact-form.st-border-new .form-group {
    padding-bottom: calc(var(--bs-gutter-x));
    margin-bottom: 0px;
}

.st-contact-form.st-border-new .form-group input {
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
    border-radius: 10px;
}

.st-contact-form.st-border-new .form-group textarea {
    height: 160px;
    border: 1px solid #DEDEDE;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: none;
    color: var(--grey-color, #5E6D77);
    padding: 10px;
    margin-bottom: 24px;
}

.st-contact-form.st-border-new .st-button-subbmit {
    position: relative;
    display: inline-block;
    height: 50px;
}

.st-contact-form.st-border-new .st-button-subbmit::after {
    content: "\e967";
    font-family: traveler-icon;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    color: #FFF;
}

.st-contact-form.st-border-new input[type=submit] {
    margin-right: auto;
    margin-left: 0px;
    padding: 15px 45px 15px 20px;
}

.st-contact-form.st-border-new .wpcf7-spinner {
    display: none;
}

.form-select:focus {
    box-shadow: none;
    border-color: none;
}

select:focus {
    box-shadow: none;
    border-color: none;
}

.form-group .select2 {
    width: 100% !important;
}

.form-group .select2 .select2-selection {
    height: 40px;
    border-color: #dae1e7;
}

.form-group .select2 .select2-selection .select2-selection__rendered {
    padding-left: 15px;
    line-height: 40px;
    color: var(--main-color, #1a2b48);
}

.form-group .select2 .select2-selection .select2-selection__arrow {
    width: 15px;
    height: 40px;
}

.form-group .select2 .select2-selection .select2-selection__arrow b {
    border: none;
    position: relative;
}

.form-group .select2 .select2-selection .select2-selection__arrow b:after {
    position: absolute;
    content: "\f078";
    top: -10px;
    left: -15px;
    font-family: "Font Awesome 5 Free", sans-serif;
    font-size: 14px;
    color: var(--main-color, #1a2b48);
}

.nicescroll-rails .nicescroll-cursors {
    border: none !important;
    background: #EEE !important;
}

.form-control {
    background: #fff;
}

.form-control.error {
    border: 1px solid #f24623;
}

.img-full {
    display: block;
    width: 100%;
}

.hr {
    width: 100%;
    height: 1px;
    background: var(--light-grey-color, #eaeef3);
}

[data-show-all] {
    position: relative;
    overflow: hidden;
}

.price-wrapper {
    font-size: 14px;
    color: var(--grey-color, #5e6d77);
}

.price-wrapper .price {
    font-size: 18px;
    color: var(--link-color, #1a2b48);
}

@media (max-width: 480px) {
    .st-flex {
        display: block;
    }
}

a {
    text-decoration: none;
    outline: none;
}

button {
    text-decoration: none;
    outline: none;
}

.fs-normal h2 {
    /*font-weight: 400 !important;*/
}

.st-height2 {
    height: 2px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.st-header-2 header#header {
    z-index: 999;
    position: relative;
    height: 92px;
    width: 100%;
}

@media screen and (min-width: 992px) {
    .st-header-2 header#header {
        position: absolute;
    }
}

.st-header-2 header#header .header {
    border-bottom: none;
}

.st-header-2 header#header .header #main-menu>li.menu-item>a {
    color: #fff;
}

.st-header-2 header#header .header #main-menu>li.menu-item>.fa {
    color: #fff;
}

.st-header-2 header#header .header #main-menu li.current-menu-item>a,
.st-header-2 header#header .header #main-menu li.current-menu-ancestor>a {
    color: var(--main-color);
}

.st-header-2 header#header .header .header-right .header-search .form-control {
    background: url(../../v2/images/svg/ico_search_white.svg) no-repeat 8px center;
}

.st-header-2 header#header .header .header-right .st-list li.dropdown>a,
.st-header-2 header#header .header .header-right .st-list li.topbar-item>a {
    color: #fff;
}

.st-header-2.home #st-content-wrapper.search-result-page .search-form-wrapper {
    padding-top: 110px;
}

.st-header-2 .search-result-page .banner {
    padding-top: 200px;
}

.st-header-2.single header#header,
.st-header-2.error404 header#header,
.st-header-2.page-template-template-checkout header#header,
.st-header-2.page-template-template-payment-success header#header,
.st-header-2.woocommerce-page header#header {
    margin-bottom: 0px;
    background-color: #333;
    height: unset;
}

.st-header-2.single header#header .header,
.st-header-2.error404 header#header .header,
.st-header-2.page-template-template-checkout header#header .header,
.st-header-2.page-template-template-payment-success header#header .header,
.st-header-2.woocommerce-page header#header .header {
    border-bottom: 1px solid var(--light-grey-color, #eaeef3);
}

.st-header-2.single.single-post header#header,
.st-header-2.error404.single-post header#header,
.st-header-2.page-template-template-checkout.single-post header#header,
.st-header-2.page-template-template-payment-success.single-post header#header,
.st-header-2.woocommerce-page.single-post header#header {
    margin-bottom: -92px;
}

.st-header-2.single.single-post header#header .header,
.st-header-2.error404.single-post header#header .header,
.st-header-2.page-template-template-checkout.single-post header#header .header,
.st-header-2.page-template-template-payment-success.single-post header#header .header,
.st-header-2.woocommerce-page.single-post header#header .header {
    border-bottom: none;
}

.st-header-2.single.single-post header#header .header #main-menu>li.menu-item>a,
.st-header-2.error404.single-post header#header .header #main-menu>li.menu-item>a,
.st-header-2.page-template-template-checkout.single-post header#header .header #main-menu>li.menu-item>a,
.st-header-2.page-template-template-payment-success.single-post header#header .header #main-menu>li.menu-item>a,
.st-header-2.woocommerce-page.single-post header#header .header #main-menu>li.menu-item>a {
    color: #fff;
}

.st-header-2.single.single-post header#header .header #main-menu>li.menu-item>.fa,
.st-header-2.error404.single-post header#header .header #main-menu>li.menu-item>.fa,
.st-header-2.page-template-template-checkout.single-post header#header .header #main-menu>li.menu-item>.fa,
.st-header-2.page-template-template-payment-success.single-post header#header .header #main-menu>li.menu-item>.fa,
.st-header-2.woocommerce-page.single-post header#header .header #main-menu>li.menu-item>.fa {
    color: #fff;
}

.st-header-2.single.single-post header#header .header .header-right .header-search .form-control,
.st-header-2.error404.single-post header#header .header .header-right .header-search .form-control,
.st-header-2.page-template-template-checkout.single-post header#header .header .header-right .header-search .form-control,
.st-header-2.page-template-template-payment-success.single-post header#header .header .header-right .header-search .form-control,
.st-header-2.woocommerce-page.single-post header#header .header .header-right .header-search .form-control {
    background: url(../../v2/images/svg/ico_search_white.svg) no-repeat 8px center;
}

.st-header-2.single.single-post header#header .header .header-right .st-list li.dropdown-user-dashboard>a,
.st-header-2.error404.single-post header#header .header .header-right .st-list li.dropdown-user-dashboard>a,
.st-header-2.page-template-template-checkout.single-post header#header .header .header-right .st-list li.dropdown-user-dashboard>a,
.st-header-2.page-template-template-payment-success.single-post header#header .header .header-right .st-list li.dropdown-user-dashboard>a,
.st-header-2.woocommerce-page.single-post header#header .header .header-right .st-list li.dropdown-user-dashboard>a {
    color: #fff;
}

.st-header-2.single.single-post header#header .header .header-right .st-list li.dropdown-currency>a,
.st-header-2.error404.single-post header#header .header .header-right .st-list li.dropdown-currency>a,
.st-header-2.page-template-template-checkout.single-post header#header .header .header-right .st-list li.dropdown-currency>a,
.st-header-2.page-template-template-payment-success.single-post header#header .header .header-right .st-list li.dropdown-currency>a,
.st-header-2.woocommerce-page.single-post header#header .header .header-right .st-list li.dropdown-currency>a {
    color: #fff;
}

.st-header-2.single.single-post header#header .header .header-right .st-list li.dropdown-language>a,
.st-header-2.error404.single-post header#header .header .header-right .st-list li.dropdown-language>a,
.st-header-2.page-template-template-checkout.single-post header#header .header .header-right .st-list li.dropdown-language>a,
.st-header-2.page-template-template-payment-success.single-post header#header .header .header-right .st-list li.dropdown-language>a,
.st-header-2.woocommerce-page.single-post header#header .header .header-right .st-list li.dropdown-language>a {
    color: #fff;
}

.st-header-2.single.single-post .blog-header,
.st-header-2.error404.single-post .blog-header,
.st-header-2.page-template-template-checkout.single-post .blog-header,
.st-header-2.page-template-template-payment-success.single-post .blog-header,
.st-header-2.woocommerce-page.single-post .blog-header {
    padding-top: 195px;
    height: auto;
}

.st-header-2.single.single-post .blog-header .blog-header-title,
.st-header-2.error404.single-post .blog-header .blog-header-title,
.st-header-2.page-template-template-checkout.single-post .blog-header .blog-header-title,
.st-header-2.page-template-template-payment-success.single-post .blog-header .blog-header-title,
.st-header-2.woocommerce-page.single-post .blog-header .blog-header-title {
    transform: none;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.single-st_hotel.st-header-2 header#header,
.single-hotel_room.st-header-2 header#header,
.error404.st-header-2 header#header,
.page-template-template-checkout.st-header-2 header#header,
.single-st_tours.st-header-2 header#header,
.single-st_rental.st-header-2 header#header,
.single-st_cars.st-header-2 header#header,
.single-st_activity.st-header-2 header#header,
.single-location.st-header-2 header#header,
.page-template-template-payment-success.st-header-2 header#header,
.woocommerce-page.st-header-2 header#header {
    position: relative;
    height: auto;
}

.single-st_hotel.st-header-2 header#header .header,
.single-hotel_room.st-header-2 header#header .header,
.error404.st-header-2 header#header .header,
.page-template-template-checkout.st-header-2 header#header .header,
.single-st_tours.st-header-2 header#header .header,
.single-st_rental.st-header-2 header#header .header,
.single-st_cars.st-header-2 header#header .header,
.single-st_activity.st-header-2 header#header .header,
.single-location.st-header-2 header#header .header,
.page-template-template-payment-success.st-header-2 header#header .header,
.woocommerce-page.st-header-2 header#header .header {
    border-bottom: none;
}

.single-st_hotel #st-content-wrapper.st-style-elementor .st-map-box {
    height: 100%;
}

.single-st_hotel #st-content-wrapper.st-style-elementor .st-map-box .google-map-mapbox {
    height: 100%;
}

.single-st_hotel #st-content-wrapper.st-style-elementor .st-map-box .google-map-mapbox #st-map {
    height: 100%;
}

.st-map-box .mapboxgl-popup-content h4.service-title {
    font-size: 16px;
}

@media screen and (min-width: 992px) {
    .single-location.st-header-2 header#header {
        position: absolute;
        height: 90px;
        background: transparent;
    }
}

.header {
    border-bottom: 1px solid var(--light-grey-color, #EAEEF3);
}

.st_sale_class {
    position: absolute;
    width: 80px;
    height: 48px;
    transform: rotate(45deg);
    right: -30px;
    top: -13px;
    line-height: 65px;
    text-align: center;
    color: #fff;
    font-size: 15px;
    z-index: 8;
}

@media (max-width: 991px) {
    .st-header-2 header#header {
        margin-bottom: -100px;
    }
    .st-header-2 header#header .header {
        border-bottom: none;
    }
    .st-header-2 header#header .header #main-menu>li.menu-item>a {
        color: var(--main-color, #1a2b48);
    }
    .st-header-2 header#header .header #main-menu>li.menu-item>.fa {
        color: var(--main-color, #1a2b48);
    }
    .st-header-2.single.single-post header#header {
        margin-bottom: -100px;
    }
    .st-header-2.single.single-post header#header .header {
        border-bottom: none;
    }
    .st-header-2.single.single-post header#header .header #main-menu>li.menu-item>a {
        color: var(--main-color, #1a2b48);
    }
    .st-header-2.single.single-post header#header .header #main-menu>li.menu-item>.fa {
        color: var(--main-color, #1a2b48);
    }
    .st-header-2 .st-author-page .banner {
        padding: 100px 0 60px 0;
    }
}

@media (max-width: 767px) {
    .st-header-2 header#header {
        margin-bottom: -80px;
    }
    .st-header-2 .search-form-wrapper .search-form-text .st-heading {
        margin-top: 50px !important;
    }
}

#header.header-style-4 {
    position: absolute;
    width: 100%;
    background: transparent;
    z-index: 999;
}

#header.header-style-4 #topbar {
    padding: 15px 15px 0 15px;
    background: transparent;
}

@media (max-width: 767px) {
    #header.header-style-4 #topbar {
        display: none;
    }
}

#header.header-style-4 #topbar .st-list li a {
    font-size: 14px !important;
}

#header.header-style-4 #topbar .topbar-right .topbar-items li {
    border-right: none;
}

#header.header-style-4 #topbar .topbar-right .topbar-items li a {
    opacity: 0.8;
}

#header.header-style-4 #topbar .topbar-right .topbar-items li .dropdown-menu {
    background: #ffffff;
}

#header.header-style-4 #topbar .topbar-right .topbar-items li .dropdown-menu li a {
    color: var(--main-color, #1a2b48);
}

#header.header-style-4 #topbar .topbar-right .topbar-items li .dropdown-menu li a:hover {
    background: #f5f5f5;
}

#header.header-style-4 #topbar .topbar-right .topbar-items li .dropdown-menu .divider {
    background: #c4c4c4;
}

#header.header-style-4 .header {
    padding: 0 15px;
    border-bottom: none;
}

@media (max-width: 991px) {
    #header.header-style-4 .header {
        padding: 25px 25px;
    }
}

#header.header-style-4 .header .toggle-menu .field-icon.fa svg g g {
    stroke: #fff;
}

#header.header-style-4 .header .header-right {
    display: flex;
    align-items: center;
}

#header.header-style-4 .header .header-right #st-main-menu {
    position: relative;
}

#header.header-style-4 .header .header-right #st-main-menu .advance-menu {
    display: none;
}

@media (max-width: 767px) {
    #header.header-style-4 .header .header-right #st-main-menu .advance-menu {
        display: block;
        position: fixed;
        top: 15px;
        right: 90px;
    }
}

#header.header-style-4 .header .header-right #st-main-menu .advance-menu a {
    color: var(--main-color, #1a2b48);
    font-weight: 500;
    cursor: pointer;
}

#header.header-style-4 .header .header-right #st-main-menu .advance-menu a:not(:last-child) {
    margin-right: 10px;
}

#header.header-style-4 .header .header-right #st-main-menu .back-menu {
    display: none;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu a {
    text-decoration: none;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li {
    display: inline-block;
    padding-top: 25px;
    padding-bottom: 25px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li>.fa {
    color: #fff;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li>a {
    display: block;
    margin-left: 25px;
    margin-right: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    color: #ffffff;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li>a:hover:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: white;
    bottom: 0;
    left: 0;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.active>a,
#header.header-style-4 .header .header-right #st-main-menu .main-menu>li:hover>a,
#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.current-menu-item>a {
    color: #fff;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.active>.fa,
#header.header-style-4 .header .header-right #st-main-menu .main-menu>li:hover>.fa,
#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.current-menu-item>.fa {
    color: #fff;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.has-megamenu {
    position: relative;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.has-megamenu .fa {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 5px;
    font-size: 18px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu>li.has-megamenu .megamenu {
    display: none;
    position: absolute;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li:last-child a {
    margin-right: 0;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children {
    position: relative;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .fa {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 5px;
    font-size: 18px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown {
    list-style: none;
    position: absolute;
    left: 0;
    top: 120%;
    padding-left: 0;
    margin-bottom: 0;
    min-width: 200px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #fff;
    box-shadow: 0 1px 1px #dbdbdb;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown li {
    padding-left: 20px;
    padding-right: 20px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown li a {
    padding: 15px 0;
    display: block;
    font-size: 14px;
    color: var(--main-color, #1a2b48);
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown li:not(:last-child) a {
    border-bottom: 1px solid #eeeeee;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown li:hover>a,
#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown li:hover>.fa {
    color: var(--link-color, #5191fa);
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown li.menu-item-has-children .fa {
    right: 20px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown .menu-dropdown {
    top: 0;
    left: 100%;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown .menu-dropdown li a {
    border-bottom: 1px solid #eeeeee;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.menu-item-has-children .menu-dropdown .menu-dropdown li:last-child a {
    border: none;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li:hover>.menu-dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.current-menu-item>a,
#header.header-style-4 .header .header-right #st-main-menu .main-menu li.current-menu-ancestor>a {
    color: #fff;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.current-menu-item>a:after,
#header.header-style-4 .header .header-right #st-main-menu .main-menu li.current-menu-ancestor>a:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: white;
    bottom: 0;
    left: 0;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.current-menu-item>.fa,
#header.header-style-4 .header .header-right #st-main-menu .main-menu li.current-menu-ancestor>.fa {
    color: #fff;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu {
    position: static;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu a {
    position: relative;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu a .fa {
    right: -20px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu {
    position: absolute;
    left: unset !important;
    font-size: 14px;
    text-align: left;
    z-index: 999;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 0;
    margin-top: 40px;
    opacity: 0;
    visibility: hidden;
    right: 0 !important;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner {
    padding: 1px 10px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner .container {
    max-width: 100%;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner .column_container.st-mega {
    padding: 20px 25px 25px 25px;
    background: #fff;
    -webkit-box-shadow: 0 1px 1px #dbdbdb;
    box-shadow: 0 1px 1px #dbdbdb;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner .wpb_content_element {
    margin-bottom: 0;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner ul.menu {
    padding-left: 0;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner ul.menu li {
    position: relative;
    display: block;
    top: auto;
    right: auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    margin-top: 15px;
    border-top: 1px solid #eeeeee;
    padding-top: 15px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner ul.menu li a {
    font-family: "Poppins", sans-serif !important;
    font-weight: 400;
    color: var(--main-color, #1a2b48);
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner ul.menu li:before {
    margin-right: 7px;
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu>ul.sub-menu.mega-menu .dropdown-menu-inner ul.menu li:hover a {
    color: var(--link-color, #5191fa);
}

#header.header-style-4 .header .header-right #st-main-menu .main-menu li.has-mega-menu:hover>ul.sub-menu.mega-menu {
    margin-top: 24px;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    #header.header-style-4 .header .header-right #st-main-menu {
        display: none;
    }
    #header.header-style-4 .header .header-right #st-main-menu.open {
        z-index: 9999999;
        display: block;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li {
        padding-top: 0;
        padding-bottom: 0;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li a {
        color: var(--main-color, #1a2b48);
        margin-right: 0;
        margin-left: 0;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li .fa {
        color: var(--main-color, #1a2b48);
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li .menu-dropdown {
        margin-top: 0;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li.has-mega-menu .mega-menu {
        margin-top: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li.has-mega-menu .mega-menu .dropdown-menu-inner .st-mega .widget_nav_menu {
        margin-bottom: 20px;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li.has-mega-menu .mega-menu .dropdown-menu-inner .st-mega .widget_nav_menu ul li {
        padding-top: 15px;
        padding-left: 0;
    }
    #header.header-style-4 .header .header-right #st-main-menu #main-menu li.has-mega-menu .mega-menu .dropdown-menu-inner .st-mega .widget_nav_menu ul li a {
        border-bottom: none;
        padding-left: 0 !important;
    }
}

.form-group .form-control:focus {
    border-color: var(--main-color, #5191FA);
    box-shadow: none;
}

input {
    box-shadow: none;
    border: 1px solid #dae1e7;
    border-radius: 3px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

input:focus-visible {
    outline: none;
    box-shadow: none;
}

input:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn-check:focus+.btn,
.btn:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-toggle {
    background: transparent;
}

.dropdown-toggle:after {
    display: none;
}

.st-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px;
    height: 6px;
    background: var(--main-color, #5191FA);
    border-radius: 5px;
    margin-left: -25px;
    animation: load 1.8s ease-in-out infinite;
}

.st-loader:before,
.st-loader:after {
    position: absolute;
    display: block;
    content: "";
    animation: load 1.8s ease-in-out infinite;
    height: 6px;
    border-radius: 5px;
}

.st-loader:before {
    top: -20px;
    left: 10px;
    width: 40px;
    background: var(--orange-color, #FA5636);
    margin-left: -20px;
}

.st-loader:after {
    bottom: -20px;
    width: 35px;
    background: #ffab53;
    margin-left: -17px;
}

.message-wrapper {
    margin-top: 15px;
    width: 100%;
    margin-left: 0px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px;
}

.message-wrapper .alert.alert-danger {
    background-color: white;
    border: none !important;
    padding: 0px !important;
    margin: 0px !important;
    border-radius: 0px !important;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
}

.message-wrapper .alert .close {
    top: 0px;
    left: auto;
    right: -10px;
    opacity: 1;
}

.alert {
    position: relative;
}

.alert [type=button]:not(:disabled),
.alert [type=reset]:not(:disabled),
.alert [type=submit]:not(:disabled),
.alert button:not(:disabled),
.alert button {
    background: none;
    background-color: none;
    border: none;
}

.alert .close {
    position: absolute;
    right: 4px;
    top: 4px;
}

.map-content-loading {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background: rgba(255, 255, 255, 0.6);
}

.modern-search-result.loading .map-content-loading {
    display: block;
}

.loader-wrapper {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(255, 255, 255, 0.7);
}

.loader-wrapper .lds-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 64px;
    height: 64px;
}

.loader-wrapper .lds-ripple div {
    position: absolute;
    border: 4px solid var(--link-color, #5191FA);
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-wrapper .lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes load {
    0% {
        transform: translateX(40px);
    }
    50% {
        transform: translateX(-30px);
    }
    100% {
        transform: translateX(40px);
    }
}

@keyframes lds-ripple {
    0% {
        top: 28px;
        left: 28px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: -1px;
        left: -1px;
        width: 58px;
        height: 58px;
        opacity: 0;
    }
}

.field-password.viewing .stt-icon-eye {
    color: var(--main-color, #1A2B48) !important;
}

.field-password.viewing svg g g {
    stroke: var(--main-color, #1A2B48) !important;
}

.comment-form.review-form .st-stars i:hover,
.comment-form.review-form .st-stars i.selected,
.comment-form.review-form .st-stars i.hovered,
.comment-form.review-form .rates i:hover,
.comment-form.review-form .rates i.selected,
.comment-form.review-form .rates i.hovered {
    color: #ffdc00;
}

.comment-form.review-form .st-stars i.grey:hover,
.comment-form.review-form .st-stars i.grey.selected,
.comment-form.review-form .st-stars i.grey.hovered,
.comment-form.review-form .rates i.grey:hover,
.comment-form.review-form .rates i.grey.selected,
.comment-form.review-form .rates i.grey.hovered {
    color: #ffdc00;
}

.modal-content {
    border-radius: 5px;
    padding: 20px 30px 30px;
}

.modal-content button {
    background: transparent;
    border: none;
}

.modal-content .form-group {
    position: relative;
    margin-top: 20px;
    margin-bottom: 0;
}

.modal-content .form-group .input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 20px;
    transform: translateY(-50%);
    color: #acb5be;
    line-height: 0;
}

.modal-content .form-group .form-control {
    height: 45px;
    box-shadow: none;
    border: 1px solid #dae1e7;
    border-radius: 3px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.modal-content .modal-header,
.modal-content .modal-body {
    padding: 0px;
}

.modal-content .modal-header {
    border-bottom: none;
}

.modal-content .form-submit {
    height: 45px;
    width: 100%;
    background: var(--main-color, #5191FA);
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
}

.st-list-dropdown {
    display: inline-block;
    position: relative;
}

.st-list-dropdown .header {
    color: var(--main-color, #5191FA);
    font-size: 28px;
    cursor: pointer;
    border: none;
}

.st-list-dropdown .header h2 {
    margin: 0px;
}

.st-list-dropdown ul.list {
    display: none;
    margin-top: 10px;
    position: absolute;
    padding: 0;
    min-width: 150px;
    border-radius: 3px;
    margin-bottom: 0;
    overflow: hidden;
    z-index: 999;
    background: #fff;
    border: 1px solid #dbdbdb;
}

.st-list-dropdown ul.list li {
    font-size: 14px;
    list-style: none;
    padding: 12px 25px;
    border-bottom: 1px solid #dbdbdb;
    color: #333;
    cursor: pointer;
}

.st-list-dropdown ul.list li:last-child {
    border-bottom: none;
}

.hide {
    display: none;
}

.st-padding-col {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
}

#st-content-wrapper {
    padding-bottom: 100px;
}

@media (max-width: 767) {
    #st-content-wrapper {
        padding-bottom: 50px;
    }
}

#st-content-wrapper .st-header-transparent-elementor .st-breadcrumb {
    border: none;
}

#st-content-wrapper .st-breadcrumb {
    padding: 20px 0;
    border-bottom: 1px solid var(--light-grey-color, #EAEEF3);
}

#st-content-wrapper .st-breadcrumb ul {
    list-style: none;
    display: block;
    width: 100%;
    margin-bottom: 0;
    padding-left: 0;
    background: #fff;
}

#st-content-wrapper .st-breadcrumb ul li {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 0;
}

#st-content-wrapper .st-breadcrumb ul li:first-child {
    padding-left: 0;
}

#st-content-wrapper .st-breadcrumb ul li:not(:last-child):after {
    position: absolute;
    content: "";
    top: 50%;
    right: -2px;
    margin-top: -2px;
    width: 4px;
    height: 4px;
    background: var(--light-grey-color, #EAEEF3);
    z-index: 1;
}

#st-content-wrapper .st-breadcrumb ul li a {
    display: block;
    font-weight: 500;
    color: var(--link-color, #1A2B48);
    text-decoration: none;
    line-height: 21px;
}

#st-content-wrapper .st-breadcrumb ul li.active {
    color: var(--grey-color, #5E6D77);
}

#st-content-wrapper .st-link {
    color: var(--main-color, #5191FA);
    text-decoration: none;
}

#st-content-wrapper .st-service-header h1.st-heading {
    margin-top: 10px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    font-size: 30px;
    line-height: 1.3;
}

#st-content-wrapper .st-service-header .sub-heading {
    color: var(--grey-color, #5E6D77);
    font-size: 14px;
}

#st-content-wrapper .st-service-header .sub-heading .fa {
    font-size: 16px;
    margin-right: 3px;
}

#st-content-wrapper .st-hr {
    width: 100%;
    height: 1px;
    background: var(--light-grey-color, #EAEEF3);
    margin-top: 30px;
    margin-bottom: 30px;
}

#st-content-wrapper .st-gallery {
    position: relative;
}

#st-content-wrapper .st-gallery.style-masonry {
    margin-top: 40px;
    clear: both;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

#st-content-wrapper .st-gallery.style-masonry img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#st-content-wrapper .st-gallery.style-masonry .item-gallery {
    width: 33.3333%;
    float: left;
    height: 315px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-top: 5px;
}

@media screen and (max-width: 767px) {
    #st-content-wrapper .st-gallery.style-masonry .item-gallery {
        padding: 0px;
        width: 100%;
        height: auto !important;
    }
    #st-content-wrapper .st-gallery.style-masonry .item-gallery:not(:nth-child(1)) {
        display: none;
    }
}

#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(1) {
    height: 630px;
    padding-left: 0px;
    padding-bottom: 0px;
}

#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(3),
#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(5) {
    padding-right: 0px;
}

#st-content-wrapper .st-gallery.style-masonry .item-gallery.item-hide {
    display: none;
}

#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(1),
#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(2),
#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(3) {
    padding-top: 0px;
}

#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(4),
#st-content-wrapper .st-gallery.style-masonry .item-gallery:nth-child(5) {
    padding-bottom: 0px;
}

#st-content-wrapper .st-gallery.style-masonry .shares.dropdown {
    top: auto !important;
    bottom: 30px;
}

@media screen and (max-width: 768px) {
    #st-content-wrapper .st-gallery.style-masonry .shares.dropdown {
        bottom: 20px;
        right: 20px !important;
    }
}

#st-content-wrapper .st-gallery.style-masonry .shares.dropdown .btn-group a {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    border-radius: 40px !important;
    color: #FFF;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
}

#st-content-wrapper .st-gallery.style-masonry .shares.dropdown .btn-group a span {
    color: #FFF;
}

#st-content-wrapper .st-gallery.style-masonry .shares.dropdown .btn-group a.st-video-popup {
    padding: 12px;
    margin-right: 16px;
}

#st-content-wrapper .st-gallery.style-masonry .shares.dropdown .btn-group a.st-video-popup i {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    #st-content-wrapper .st-gallery.style-masonry .shares.dropdown .btn-group a.st-video-popup {
        margin-right: 10px;
    }
}

#st-content-wrapper .st-gallery.style-masonry .shares.dropdown .btn-group a.st-gallery-popup span {
    margin-right: 10px;
}

#st-content-wrapper .st-gallery.style-slider {
    margin-top: 30px;
    position: relative;
}

#st-content-wrapper .st-gallery.style-slider .owl-stage-outer {
    border-radius: 20px;
}

#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-prev,
#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    top: 50%;
    margin-top: -25px;
    left: 30px;
}

#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-prev span,
#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-next span {
    font-family: "traveler-icon" !important;
    color: transparent !important;
}

#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-next {
    left: auto;
    right: 30px;
}

#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-next span:before {
    color: #232323;
    content: "\e968";
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-prev {
    left: 30px;
    right: auto;
}

#st-content-wrapper .st-gallery.style-slider .owl-nav .owl-prev span:before {
    color: #232323;
    content: "\e966";
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#st-content-wrapper .st-gallery.style-slider .count {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

#st-content-wrapper .st-gallery .fotorama__arr {
    border-radius: 3px;
    width: 40px;
    height: 40px;
    background: 0 0;
    background-color: rgba(26, 43, 72, 0.6);
}

#st-content-wrapper .st-gallery .fotorama__arr:after {
    position: absolute;
    left: 50%;
    margin-left: -13px;
    top: 7px;
    width: 24px;
    height: 24px;
}

#st-content-wrapper .st-gallery .fotorama__arr--next {
    right: 30px;
}

@media screen and (max-width: 991px) {
    #st-content-wrapper .st-gallery .fotorama__arr--next {
        right: 0px;
    }
}

#st-content-wrapper .st-gallery .fotorama__arr--next:after {
    content: "";
    background: url(../../v2/images/svg/ico_next.svg);
}

#st-content-wrapper .st-gallery .fotorama__arr--prev {
    left: 30px;
}

@media screen and (max-width: 991px) {
    #st-content-wrapper .st-gallery .fotorama__arr--prev {
        left: 0px;
    }
}

#st-content-wrapper .st-gallery .fotorama__arr--prev:after {
    content: "";
    background: url(../../v2/images/svg/ico_pre.svg);
}

#st-content-wrapper .st-gallery .fotorama__fullscreen-icon {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 30px;
    right: 30px;
    background: 0 0;
}

#st-content-wrapper .st-gallery .fotorama__fullscreen-icon:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    background: url(../../v2/images/svg/ico_full_3.svg);
    left: 50%;
    margin-left: -11px;
    top: 7px;
    z-index: 1;
}

#st-content-wrapper .st-gallery .fotorama__fullscreen-icon:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 43, 72, 0.5);
    border-radius: 3px;
}

#st-content-wrapper .st-gallery .shares {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}

#st-content-wrapper .st-gallery .shares .share-item {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 43, 72, 0.6);
    color: #fff;
    text-align: center;
    line-height: 40px;
}

#st-content-wrapper .st-gallery .shares .share-item i {
    float: left;
    display: block;
    font-size: 18px;
    margin: 0px;
    line-height: 40px;
    width: 100%;
    height: 100%;
}

#st-content-wrapper .st-gallery .shares .share-item:not(:last-child) {
    margin-right: 10px;
}

#st-content-wrapper .st-gallery .shares .share-wrapper {
    display: none;
    padding-left: 0;
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 0;
    z-index: 1;
}

#st-content-wrapper .st-gallery .shares .share-wrapper li {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

#st-content-wrapper .st-gallery .shares .share-wrapper li a {
    color: var(--link-color, #1A2B48);
}

#st-content-wrapper .cut-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0) 1%, white 80%);
}

#st-content-wrapper .st-description {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
    position: relative;
}

#st-content-wrapper .st-description.open .cut-gradient {
    display: none;
}

#st-content-wrapper .accordion-item {
    border: none;
}

#st-content-wrapper .accordion-item .accordion-button {
    background: transparent;
    color: var(--link-color, #1A2B48);
    box-shadow: none;
    padding: 0px;
    margin: 0px;
}

#st-content-wrapper .accordion-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231A2B48'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#st-content-wrapper .accordion-item .accordion-body {
    padding: 0px;
}

#st-content-wrapper .accordion-item #headingFaq .accordion-button:after {
    display: none;
}

#st-content-wrapper .st-heading-section,
#st-content-wrapper .accordion-button {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

#st-content-wrapper .st-attributes .item-attribute .item {
    line-height: 50px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

#st-content-wrapper .st-attributes .item-attribute .item .fa {
    margin-right: 15px;
    font-size: 24px;
}

#st-content-wrapper .st-attributes+.st-attributes {
    margin-top: 30px;
}

#st-content-wrapper .st-properties th,
#st-content-wrapper .st-properties td {
    padding: 10px 0;
    border: none;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

#st-content-wrapper .st-properties th {
    width: 33.3333%;
    font-weight: 400;
}

#st-content-wrapper .st-list-rooms .item {
    margin-bottom: 20px;
    border: 1px solid #d7dce3;
    overflow: hidden;
}

#st-content-wrapper .st-list-rooms .item .heading {
    font-size: 18px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

#st-content-wrapper .st-list-rooms .item .facilities .item {
    border: none;
    margin-top: 20px;
    margin-bottom: 0px;
    padding-right: 10px;
    display: inline-block;
}

#st-content-wrapper .st-list-rooms .item .facilities .item .fa {
    text-align: center;
    border: 1px solid var(--light-grey-color, #EAEEF3);
    padding: 6px 8px;
    font-size: 12px;
    margin-right: 0;
}

#st-content-wrapper .review-box {
    margin-top: 20px;
    padding: 30px;
    border: 1px solid var(--light-grey-color, #EAEEF3);
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

#st-content-wrapper .review-box .heading {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
}

#st-content-wrapper .review-box .review-box-score {
    padding-top: 45px;
    padding-bottom: 45px;
}

#st-content-wrapper .review-box .review-box-score .review-score {
    line-height: 50px;
    font-size: 72px;
    font-weight: 500;
    color: var(--main-color, #5191FA);
}

#st-content-wrapper .review-box .review-box-score .review-score .per-total {
    font-size: 24px;
}

#st-content-wrapper .review-box .review-box-score .review-score-text {
    font-weight: 400;
    font-size: 24px;
    color: var(--link-color, #1A2B48);
}

#st-content-wrapper .review-box .review-box-score .review-score-base {
    margin-top: 10px;
    color: #768090;
    font-size: 14px;
}

#st-content-wrapper .review-box .review-box-score .review-score-base span {
    color: var(--main-color, #5191FA);
}

#st-content-wrapper .review-box .item {
    margin-top: 15px;
}

#st-content-wrapper .review-box .item .progress {
    position: relative;
    height: 8px;
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    background: #eee;
    margin-bottom: 0;
    overflow: inherit;
}

#st-content-wrapper .review-box .item .progress .percent {
    position: absolute;
    top: 0;
    left: 0;
    height: 8px;
    background: var(--main-color, #5191FA);
    border-radius: 10px;
}

#st-content-wrapper .review-box .item .progress .percent.darkgreen {
    background: #27ae61;
}

#st-content-wrapper .review-box .item .progress .percent.green {
    background: #2ecc71;
}

#st-content-wrapper .review-box .item .progress .percent.yellow {
    background: #f1c40f;
}

#st-content-wrapper .review-box .item .progress .percent.orange {
    background: #e67f22;
}

#st-content-wrapper .review-box .item .progress .percent.red {
    background: #e84c3d;
}

#st-content-wrapper .review-box .item .label {
    position: relative;
    margin-top: 8px;
    display: block;
    padding-left: 0;
    color: var(--link-color, #1A2B48);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

#st-content-wrapper .review-box .item .label .number {
    position: absolute;
    top: 0;
    right: 2px;
    color: #768090;
}

#st-content-wrapper .review-pagination .summary {
    margin-top: 30px;
    color: var(--grey-color, #5E6D77);
    font-size: 14px;
}

#st-content-wrapper .review-list {
    margin-top: 30px;
}

#st-content-wrapper .review-list .comment-item {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--light-grey-color, #EAEEF3);
    font-size: 14px;
}

#st-content-wrapper .review-list .comment-item .comment-item-head {
    display: flex;
    justify-content: space-between;
}

#st-content-wrapper .review-list .comment-item .like .st-like-review {
    color: var(--link-color, #1A2B48);
}

#st-content-wrapper .review-list .comment-item .media {
    margin-right: 100px;
}

#st-content-wrapper .review-list .comment-item .media .media-left {
    padding-right: 20px;
}

#st-content-wrapper .review-list .comment-item .media .media-left img {
    border-radius: 50%;
}

#st-content-wrapper .review-list .comment-item .media-body .media-heading {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 600;
}

#st-content-wrapper .review-list .comment-item .media-body .date {
    color: #aeb4c0;
}

#st-content-wrapper .review-list .comment-item-body {
    margin-top: 30px;
}

#st-content-wrapper .review-list .comment-item-body .title {
    position: relative;
    font-size: 16px;
    line-height: 20px;
}

#st-content-wrapper .review-list .comment-item-body .title .comment-rate {
    padding: 5px;
    background: var(--main-color, #5191FA);
    color: #fff;
    border-radius: 3px;
    font-size: 14px;
    line-height: 20px;
    margin-right: 15px;
}

#st-content-wrapper .review-list .comment-item-body .detail {
    color: #74818a;
}

#st-content-wrapper .review-list .comment-item-body .detail .st-description {
    margin-bottom: 0px;
}

#st-content-wrapper #write-review #respond {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid #d7dce3;
    background: #f9f9f9;
}

#st-content-wrapper #write-review #respond .form-control {
    height: 40px;
    margin-top: 15px;
    box-shadow: none;
    border: 1px solid #dae1e7;
}

#st-content-wrapper #write-review #respond .comment-notes {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    margin-top: 10px;
}

#st-content-wrapper #write-review #respond .comment-notes {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    margin-top: 10px;
}

#st-content-wrapper #write-review #respond .form-wrapper .form-group {
    margin-bottom: 15px;
}

#st-content-wrapper #write-review #respond .form-wrapper .form-group .form-control {
    height: 40px;
    font-size: 14px;
    box-shadow: none;
    color: #768090;
    font-weight: 500;
    border-color: #eee;
}

#st-content-wrapper #write-review #respond .form-wrapper .form-group textarea {
    padding-top: 20px;
    min-height: 310px;
    resize: none;
}

#st-content-wrapper #write-review #respond .review-items {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-top: 15px;
}

#st-content-wrapper #write-review #respond .review-items .item {
    margin-bottom: 10px;
}

#st-content-wrapper #write-review #respond .review-items .item label {
    font-size: 14px;
    font-weight: 500;
    color: #768090;
    margin-bottom: 5px;
}

#st-content-wrapper #write-review #respond .review-items .item .rates {
    position: relative;
}

#st-content-wrapper #write-review #respond .review-items .item .rates i {
    cursor: pointer;
    font-size: 18px;
    color: var(--main-color, #5191FA);
}

#st-content-wrapper #write-review #respond .review-items .item .rates i.grey {
    color: var(--grey-color, #5E6D77);
}

#st-content-wrapper #write-review #respond .review-items .item .rates i.selected,
#st-content-wrapper #write-review #respond .review-items .item .rates i.hovered {
    color: var(--main-color, #5191FA);
}

#st-content-wrapper #write-review #respond .review-items .item .rates i:not(:last-child) {
    margin-right: 20px;
}

#st-content-wrapper #write-review #respond .submit {
    border-radius: 5px;
    color: #fff;
    margin-top: 30px;
    border: none;
    box-shadow: none;
    font-size: 14px;
    background: var(--main-color, #5191FA);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 500;
}

#st-content-wrapper #write-review .comment-reply-title {
    margin: 0;
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    text-transform: uppercase;
}

#st-content-wrapper .st-map {
    position: relative;
}

#st-content-wrapper .st-map .google-map {
    height: 450px;
    width: 100%;
}

#st-content-wrapper .modal-map .google-map {
    height: 450px;
    width: 100%;
}

#st-content-wrapper .form-book-wrapper {
    border: 1px solid #d7dce3;
}

#st-content-wrapper .form-book-wrapper .form-head {
    padding: 17px 20px;
    background: var(--main-color, #5191FA);
    border: 1px solid var(--main-color, #5191FA);
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    font-size: 12px;
    color: #fff;
}

#st-content-wrapper .form-book-wrapper .form-head .price {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
}

#st-content-wrapper .form-book-wrapper nav>.nav.nav-tabs {
    border: none;
    color: #fff;
    background: #f9f9f9;
    border-radius: 0;
    padding: 0;
}

#st-content-wrapper .form-book-wrapper nav>.nav.nav-tabs li {
    width: 50%;
    display: block;
    padding: 20px;
    text-align: center;
    position: relative;
    cursor: pointer;
}

#st-content-wrapper .form-book-wrapper nav>.nav.nav-tabs li a {
    position: relative;
    border: none;
    padding: 0;
    background-color: #f9f9f9;
    color: var(--grey-color, #5E6D77);
    border-radius: 0;
    font-size: 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
}

#st-content-wrapper .form-book-wrapper nav>.nav.nav-tabs li a.active {
    border: none;
    color: var(--main-color, #5191FA);
    background: #f9f9f9;
    border-radius: 0;
}

#st-content-wrapper .form-book-wrapper nav>.nav.nav-tabs li a.active:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: var(--main-color, #5191FA);
    width: 100%;
    height: 1px;
    bottom: -3px;
}

#st-content-wrapper .form-book-wrapper form {
    position: relative;
}

#st-content-wrapper .form-book-wrapper .form-group:not(.st-external) {
    margin-bottom: 0;
    border-top: 1px solid #d7dce3;
}

#st-content-wrapper .form-book-wrapper .form-group:not(.st-external) label {
    display: block;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
}

#st-content-wrapper .form-book-wrapper .form-date-field {
    position: relative;
}

#st-content-wrapper .form-book-wrapper .form-date-field.date-enquire {
    padding-left: 0 !important;
}

#st-content-wrapper .form-book-wrapper .form-date-field .check-in-out {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
}

#st-content-wrapper .form-book-wrapper .form-date-field .check-in-wrapper {
    padding: 0;
}

#st-content-wrapper .form-book-wrapper .form-date-field .check-in-wrapper .render {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: var(--main-color, #5191FA);
}

#st-content-wrapper .form-book-wrapper .form-date-field .st_grid_date {
    margin: 0;
    padding: 0;
    display: inline-table;
    position: relative;
    display: flex;
}

#st-content-wrapper .form-book-wrapper .form-date-field .st_grid_date li {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 50%;
    display: block;
    text-align: center;
    position: relative;
}

#st-content-wrapper .form-book-wrapper .form-date-field .st_grid_date li:nth-child(1) {
    border-right: 1px solid #d7dce3;
}

#st-content-wrapper .form-book-wrapper .form-date-field .st_grid_date li .st-item-date {
    padding: 20px;
}

#st-content-wrapper .form-book-wrapper .form-extra-field {
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#st-content-wrapper .form-book-wrapper .form-extra-field .render {
    font-size: 16px;
    color: var(--main-color, #5191FA);
}

#st-content-wrapper .form-book-wrapper .form-extra-field .arrow {
    font-size: 22px;
    color: #a0a9b2;
}

#st-content-wrapper .form-book-wrapper .form-extra-field+.dropdown-menu {
    width: 100%;
    padding: 15px 30px;
    border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    max-height: 332px;
}

#st-content-wrapper .form-book-wrapper .form-extra-field+.dropdown-menu .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#st-content-wrapper .form-book-wrapper .form-extra-field+.dropdown-menu .item:not(:last-child) {
    margin-bottom: 20px;
}

#st-content-wrapper .form-book-wrapper .submit-group {
    border-top: 1px solid #d7dce3;
    padding: 15px 20px 0;
}

#st-content-wrapper .form-book-wrapper .tab-content {
    border-bottom: 5px solid var(--main-color, #5191FA);
    padding: 0 !important;
}

#st-content-wrapper .form-book-wrapper .st-sent-mail-customer {
    padding: 0 20px;
    position: relative;
    border-top: 1px solid #d7dce3;
    background-color: #fff;
}

#st-content-wrapper .form-book-wrapper .st-sent-mail-customer .form-st-send-mail {
    margin-top: 0;
}

#st-content-wrapper .form-book-wrapper .st-sent-mail-customer .form-group {
    border-top: none !important;
    margin-top: 5px;
}

#st-content-wrapper .form-book-wrapper .st-sent-mail-customer .form-group input {
    border: none;
    padding: 10px 5px;
    border-bottom: 1px solid #d7dce3;
    border-radius: 0;
    box-shadow: inset 0 1px 1px transparent;
    font-size: 14px;
    width: 100%;
}

#st-content-wrapper .form-book-wrapper .st-sent-mail-customer textarea {
    height: 80px;
    border: none;
    padding: 10px 5px;
    border-bottom: 1px solid #d7dce3;
    border-radius: 0;
    box-shadow: inset 0 1px 1px transparent;
    width: 100%;
}

#st-content-wrapper .form-book-wrapper .st-sent-mail-customer .btn {
    margin-top: 20px;
}

#st-content-wrapper .widget-box {
    background: #fff;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #d7dce3;
}

#st-content-wrapper .widget-box .infor-heading {
    color: var(--main-color, #1A2B48);
    font-weight: 500;
    font-size: 14px;
    margin-top: 10px;
}

#st-content-wrapper .widget-box .infor-heading+p {
    color: var(--grey-color, #5E6D77);
    font-size: 12px;
    line-break: anywhere;
}

#st-content-wrapper .widget-box .media-body .media-heading {
    font-weight: 500;
    font-size: 14px;
}

#st-content-wrapper .widget-box .media-body .media-heading a {
    color: var(--link-color, #1A2B48);
}

#st-content-wrapper .widget-box .media-body p {
    margin-bottom: 5px;
    color: var(--grey-color, #5E6D77);
    font-size: 12px;
}

#st-content-wrapper .widget-box .heading.heading-border {
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 20px;
    border-bottom: 2px solid #d7dce3;
    position: relative;
    font-size: 20px;
    color: var(--link-color, #1A2B48);
    position: relative;
}

#st-content-wrapper .widget-box .heading.heading-border::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 3px;
    height: 30px;
    background: var(--main-color, #5191FA);
}

#st-content-wrapper .widget-box .related-services.related-hotel .item {
    display: flex;
}

#st-content-wrapper .widget-box .related-services.related-hotel .item .media .media-left {
    width: 40%;
}

#st-content-wrapper .widget-box .related-services.related-hotel .item .price-wrapper,
#st-content-wrapper .widget-box .related-services.related-hotel .item .price {
    font-size: 14px;
}

#st-content-wrapper .widget-box .related-services.related-hotel .hr {
    margin-top: 15px;
    margin-bottom: 15px;
}

#st-content-wrapper .related-services-vertical .item {
    margin-top: 20px;
    margin-bottom: 20px;
}

#st-content-wrapper .related-services-vertical .item .media-left {
    width: 100px;
    padding-right: 15px;
}

#st-content-wrapper .related-services-vertical .item .media-left a {
    display: block;
}

#st-content-wrapper .related-services-vertical .item .media-body {
    width: auto;
}

#st-content-wrapper .related-services-vertical .item .media-body .media-heading {
    margin-top: 5px;
    font-size: 14px;
}

#st-content-wrapper .related-services-vertical .item .price-wrapper {
    margin-top: 8px;
    font-size: 12px;
    color: var(--grey-color, #5E6D77);
}

#st-content-wrapper .related-services-vertical .item .price-wrapper .price {
    font-weight: 500;
    font-size: 16px;
    color: var(--link-color, #1A2B48);
}

#st-content-wrapper .media-body,
#st-content-wrapper .media-left,
#st-content-wrapper .media-right {
    display: table-cell;
    vertical-align: top;
}

@media screen and (max-width: 991px) {
    #st-content-wrapper .hotel-target-book-mobile {
        position: fixed;
        left: 0;
        width: 100%;
        bottom: 0;
        background: #fff;
        padding: 10px 15px;
        border-top: 1px solid var(--light-grey-color, #EAEEF3);
        align-items: center;
        justify-content: space-between;
        z-index: 9;
    }
    #st-content-wrapper .fixed-on-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        bottom: 0;
        background: #fff;
        z-index: 888;
        display: none;
        overflow: scroll;
    }
    #st-content-wrapper .fixed-on-mobile .close-icon {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 22px;
        z-index: 2;
        cursor: pointer;
    }
    #st-content-wrapper .hidden-xs {
        display: none;
    }
}

.st-page-default .banner {
    height: unset;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.st-page-default .banner h1 {
    color: #FFF;
    position: relative;
    z-index: 7;
}

.page-template-template-fullwidth #st-content-wrapper {
    padding-bottom: 0px;
}

.media-left,
.media>.pull-left {
    padding-right: 10px;
}

.daterangepicker {
    min-width: 300px;
    min-height: 100px;
    border-radius: 0 0 3px 3px;
    margin: 0px;
}

.daterangepicker.dropdown-menu {
    z-index: 999999;
}

.daterangepicker:before,
.daterangepicker:after {
    content: "";
    position: static;
    border: none;
    background: none;
    width: 0;
    height: 0;
}

.daterangepicker:not(.single) .calendar.left .next {
    display: none;
}

.daterangepicker .calendar {
    position: relative;
    max-width: 100% !important;
}

.daterangepicker .ranges .btn {
    padding: 10px 20px;
    font-size: 14px;
}

.daterangepicker .calendar-time-wrapper .calendar-time div {
    display: flex;
    align-items: center;
}

.daterangepicker .calendar-time-wrapper .calendar-time div>* {
    margin: 0;
}

.daterangepicker .calendar-time-wrapper .calendar-time div>*:not(:first-child) {
    margin-left: 5px;
}

.daterangepicker .calendar-time-wrapper .calendar-time div>*::after {
    content: unset;
}

.daterangepicker select.hourselect,
.daterangepicker select.minuteselect,
.daterangepicker select.secondselect,
.daterangepicker select.ampmselect {
    width: 50px;
    color: var(--link-color);
    background: var(--light-grey-color, #EAEEF3);
    border: 1px solid var(--light-grey-color, #EAEEF3);
    padding: 2px;
    outline: 0;
    font-size: 12px;
    text-align: center;
    text-align-last: center;
    appearance: auto;
}

.daterangepicker select.hourselect:after,
.daterangepicker select.minuteselect:after,
.daterangepicker select.secondselect:after,
.daterangepicker select.ampmselect:after {
    content: unset;
}

.daterangepicker select.hourselect option,
.daterangepicker select.minuteselect option,
.daterangepicker select.secondselect option,
.daterangepicker select.ampmselect option {
    padding: 2px 5px;
}

.daterangepicker select.hourselect::-webkit-scrollbar,
.daterangepicker select.minuteselect::-webkit-scrollbar,
.daterangepicker select.secondselect::-webkit-scrollbar,
.daterangepicker select.ampmselect::-webkit-scrollbar {
    width: 2px;
}

.daterangepicker select.hourselect::-webkit-scrollbar-thumb,
.daterangepicker select.minuteselect::-webkit-scrollbar-thumb,
.daterangepicker select.secondselect::-webkit-scrollbar-thumb,
.daterangepicker select.ampmselect::-webkit-scrollbar-thumb {
    color: red;
}

.daterangepicker .table-header {
    position: relative;
    padding-bottom: 20px;
}

.daterangepicker .table-header:after {
    content: "";
    display: table;
    clear: both;
}

.daterangepicker .table-header .month {
    text-align: center;
}

.daterangepicker .table-header .prev {
    position: absolute;
    bottom: 0;
    left: 0;
    float: left;
    width: 48px;
    height: 48px;
    background: url("../../v2/images/arow_left.png") no-repeat left center;
    cursor: pointer;
    z-index: 9;
}

.daterangepicker .table-header .next {
    position: absolute;
    bottom: 0;
    right: 0;
    float: right;
    width: 48px;
    height: 48px;
    background: url("../../v2/images/arrow_right.png") no-repeat right center;
    cursor: pointer;
    z-index: 9;
}

.daterangepicker .table-sub-header {
    border-top: 1px solid #D7DCE3;
}

.daterangepicker .table-sub-header:after {
    content: "";
    display: table;
    clear: both;
}

.daterangepicker .table-sub-header .day-off-week {
    width: 14.2857142857%;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #ADB2BD;
    float: left;
    text-align: center;
}

.daterangepicker .month {
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    position: relative;
    font-weight: 500;
    top: 6px;
}

.daterangepicker .table-condensed .td-date {
    width: auto;
    height: auto;
    padding: 0;
    background: none;
    border: 1px solid rgba(81, 145, 250, 0.2);
}

.daterangepicker .table-condensed .td-date.not_available.disabled.off {
    background: #efefef;
}

.daterangepicker .table-condensed .td-date.not_available.off {
    border: 1px solid rgba(81, 145, 250, 0.2);
}

.daterangepicker .table-condensed .td-date.off,
.daterangepicker .table-condensed .td-date.td-no-show.available.disabled.off,
.daterangepicker .table-condensed .td-date.td-no-show.not_available.disabled.off,
.daterangepicker .table-condensed .td-date.not_available.off.not-show {
    border: none;
}

.daterangepicker .table-condensed .td-date .date {
    width: 36px;
    height: 32px;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    color: var(--link-color, #1A2B48);
    display: inline-block;
}

.daterangepicker .table-condensed .td-date.disabled {
    text-decoration: none;
}

.daterangepicker .table-condensed .td-date.disabled .date {
    color: #D7DCE3;
}

.daterangepicker .table-condensed .td-date.not_available.disabled.off,
.daterangepicker .table-condensed .td-date.not_available.off.disabled {
    background: #efefef;
}

.daterangepicker .table-condensed .td-date.today .date {
    color: #FA5535;
}

.daterangepicker .table-condensed .td-date.today:not(.start-date) .date,
.daterangepicker .table-condensed .td-date.today:not(.in-range) .date {
    color: #FA5535;
    border: 1px solid #FA5535;
}

.daterangepicker .table-condensed .td-date.start-group {
    background: #fef5ca;
}

.daterangepicker .table-condensed .td-date.in-group {
    background: #fef5ca;
}

.daterangepicker .table-condensed .td-date.in-group .date {
    color: #767676;
}

.daterangepicker .table-condensed .td-date.end-group {
    background: #fef5ca;
}

.daterangepicker .table-condensed .td-date.end-group .date {
    color: #767676;
}

.daterangepicker .table-condensed .td-date:hover {
    background: rgba(81, 145, 250, 0.2);
}

.daterangepicker .table-condensed .td-date.start-date {
    background: rgba(81, 145, 250, 0.2);
}

.daterangepicker .table-condensed .td-date.start-date:not(.end-date) {
    box-shadow: -3px 0 0 var(--main-color, #5191FA);
}

.daterangepicker .table-condensed .td-date.start-date.today .date {
    border: none;
}

.daterangepicker .table-condensed .td-date.in-range {
    background: rgba(81, 145, 250, 0.2);
}

.daterangepicker .table-condensed .td-date.in-range.today .date {
    border: none;
}

.daterangepicker .table-condensed .td-date.end-date {
    background: rgba(81, 145, 250, 0.2);
}

.daterangepicker .table-condensed .td-date.end-date:not(.start-date) {
    box-shadow: 3px 0 0 var(--main-color, #5191FA);
}

.daterangepicker .table-condensed .td-date.end-date.today .date {
    border: none;
}

.daterangepicker .table-condensed .td-date.td-no-show {
    visibility: hidden;
}

.daterangepicker .table-condensed .td-date.has-tooltip {
    position: relative;
}

.daterangepicker .table-condensed .td-date.has-tooltip .event-tooltip-wrap {
    position: absolute;
    top: 100%;
    margin-top: 5px;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    color: #FFF;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 2px;
    display: none;
}

.daterangepicker .table-condensed .td-date.has-tooltip:hover .event-tooltip-wrap {
    display: block;
}

.daterangepicker.respon-single .calendar.right {
    display: none;
}

.daterangepicker.respon-single .calendar.left .next {
    display: block;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_fist {
    background: linear-gradient(315deg, #efefef 50%, rgba(242, 242, 242, 0) 50%) !important;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FCD29A", endColorstr="#FCD29A", GradientType=1);
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_fist.in-range {
    background: linear-gradient(315deg, #efefef 50%, rgba(81, 145, 250, 0.2) 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_fist.active {
    background: linear-gradient(315deg, #f2f2f2 50%, rgba(81, 145, 250, 0.2) 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_fist.active.end-date.in-range {
    background: linear-gradient(315deg, #f2f2f2 50%, rgba(81, 145, 250, 0.2) 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_last {
    background: linear-gradient(135deg, #efefef 50%, rgba(242, 242, 242, 0) 50%) !important;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FCD29A", endColorstr="#FCD29A", GradientType=1);
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_last.active {
    background: linear-gradient(315deg, rgba(81, 145, 250, 0.2) 50%, #f2f2f2 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_last.active.start-date.in-range {
    background: linear-gradient(315deg, rgba(81, 145, 250, 0.2) 50%, #f2f2f2 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_last.in-range {
    background: linear-gradient(315deg, rgba(81, 145, 250, 0.2) 50%, #efefef 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date.available_allow_last.start-date.in-range {
    background: linear-gradient(315deg, rgba(81, 145, 250, 0.2) 50%, #efefef 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date:not(.available_allow_last):not(.available_allow_fist).active.end-date.in-range {
    background: linear-gradient(315deg, rgba(242, 242, 242, 0) 50%, rgba(81, 145, 250, 0.2) 50%) !important;
}

.st-no-fullday-booking .table-condensed .td-date:not(.available_allow_last):not(.available_allow_fist).active.start-date {
    background: linear-gradient(315deg, rgba(81, 145, 250, 0.2) 50%, rgba(242, 242, 242, 0) 50%) !important;
}

.clearfix:before {
    display: table;
    content: " ";
}

.st-number-wrapper span {
    height: 34px;
    line-height: 34px;
    display: block;
    text-align: center;
    border-radius: 3px;
    float: right;
    user-select: none;
    cursor: pointer;
}

.st-number-wrapper input {
    background-color: transparent !important;
    float: right;
    padding: 0;
    font-size: 16px !important;
    font-weight: 400;
    color: var(--main-color, #5191FA);
    text-align: center;
    border: none;
    box-shadow: none;
    width: 35px !important;
    margin-left: 10px;
    margin-right: 10px;
    user-select: none;
}

.label-highlight {
    position: absolute;
    top: 50%;
    left: 100%;
    padding: 2px 8px;
    font-size: 10px;
    line-height: 1.1;
    text-align: center;
    border-radius: 2px;
    color: #ffffff;
    background-color: #1A2B48;
    transition: all 0.3s ease-in-out;
    transform: translate(0, calc(-50% - 15px));
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    font-style: normal;
    font-weight: normal;
    display: inline-block;
    white-space: nowrap;
    vertical-align: baseline;
    text-transform: capitalize;
}

.label-highlight:after {
    content: "";
    border: 4px solid;
    border-color: inherit;
    position: absolute;
    top: 50%;
    left: 5px;
    border-bottom-color: transparent !important;
    border-right-color: transparent !important;
    transform: translate(0, calc(-50% + 10px));
}

.range-slider .irs-bar {
    background-color: var(--main-color, #5191FA) !important;
    background: var(--main-color, #5191FA) !important;
    border-radius: 100px;
    height: 6px !important;
    border-color: var(--main-color, #5191FA);
    border-top: 1px solid var(--main-color, #5191FA);
    border-bottom: 1px solid var(--main-color, #5191FA);
}

.range-slider .irs--flat .irs-from,
.range-slider .irs--flat .irs-to,
.range-slider .irs--flat .irs-single,
.range-slider .irs--flat .irs-handle>i:first-child {
    background-color: var(--main-color, #5191FA);
}

.range-slider .irs--flat .irs-from:before,
.range-slider .irs--flat .irs-to:before,
.range-slider .irs--flat .irs-single:before {
    border-top-color: var(--main-color, #5191FA);
}

.range-slider .irs-line {
    background: #EEEEEE;
    border-radius: 100px;
    height: 6px !important;
    border: 0;
}

.range-slider .irs-slider {
    height: 12px;
    width: 12px;
    background: var(--main-color, #5191FA);
    border: 0;
}

.range-slider .irs--flat .irs-handle {
    width: 12px;
    height: 12px;
}

.range-slider .irs--flat .irs-handle i:first-child {
    height: 12px;
    width: 12px;
    background: var(--main-color, #5191FA);
    border: 0;
    border-radius: 50%;
    left: 0px;
}

.st-icheck-item {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    line-height: 21px;
    display: flex;
    align-items: center;
}

.st-icheck-item label {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-weight: normal;
    margin-bottom: 0px;
    cursor: pointer;
}

.st-icheck-item label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    margin: 0;
}

.st-icheck-item label input:checked~.checkmark {
    background-color: #fff !important;
}

.st-icheck-item label input:checked~.checkmark:after {
    display: block;
}

.st-icheck-item label .checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #A0A9B2;
}

.st-icheck-item label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 4px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-color, #5191FA);
}

.st-icheck-item label .checkmark.fcheckbox {
    border-radius: 2px;
}

.st-icheck-item label .checkmark.fcheckbox:after {
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid var(--main-color, #5191FA);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.st-icheck-item label:hover input~.checkmark {
    /* background-color: #dfdfdf; */
}

.st-icheck-item label .fa {
    font-size: 12px;
    color: var(--orange-color, #FA5636);
}

.st-scrollbar {
    width: auto;
    overflow-y: scroll;
    overflow-x: hidden;
}

.st-scrollbar::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.st-scrollbar::-webkit-scrollbar-thumb {
    background-color: #dedede;
    border: 2px solid #d3cbcb;
}

.btn-primary {
    border-color: var(--main-color, #5191FA);
}

.service-add-wishlist {
    position: absolute;
    top: 18px;
    right: 10px;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 21px;
    z-index: 8;
    cursor: pointer;
}

.service-add-wishlist.added {
    color: #ff0000eb;
}

.service-add-wishlist.added span {
    color: #ff0000eb;
}

.service-add-wishlist.loading .lds-dual-ring {
    display: inline-block;
}

.service-add-wishlist.loading .fa {
    display: none;
}

.lds-dual-ring {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    right: 10px;
    display: none;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 20px;
    height: 20px;
    margin: 1px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.st-link {
    color: var(--main-color, #5191FA);
    text-decoration: none;
}

.c-main {
    color: var(--link-color, #1A2B48) !important;
}

.service-border {
    border: 1px solid #dfdfdf;
    overflow: hidden;
    padding-bottom: 15px;
    display: block;
}

.service-border .car-type {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    margin-top: 10px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.st-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    z-index: 999999 !important;
    display: none;
}

.st-popup .popup-date {
    overflow: hidden;
}

.st-popup .popup-date.popup-content {
    min-height: 305px;
}

.st-popup .popup-title {
    font-size: 16px;
    padding: 25px 15px;
    border-bottom: 1px solid #dfdfdf;
    text-transform: uppercase;
    margin-top: 0;
}

.st-popup .popup-title:before {
    content: "";
    position: relative;
    height: 20px;
    width: 4px;
    background: #339bff;
    display: block;
    float: left;
    margin-right: 10px;
    top: -2px;
}

.st-popup .popup-content {
    padding: 15px;
}

.st-popup .check-in-out {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.st-popup .popup-close {
    float: right;
    z-index: 9;
    padding: 22px 15px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
}

.st-popup.popup-guest ul {
    padding: 0;
    margin: 0;
}

.st-popup.popup-guest ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.st-popup.popup-guest ul li label {
    width: 50%;
    font-weight: 400;
}

.st-popup.popup-guest ul li .select-wrapper {
    width: 50%;
}

.st-popup.popup-guest ul li .st-number-wrapper {
    display: flex;
    align-items: center;
    float: right;
}

.st-popup .btn {
    text-align: center;
    margin: auto;
    display: block;
    outline: none;
}

.st-form-package {
    background: transparent url(../../v2/images/svg/ico_add-circle.svg) center right 20px no-repeat;
    cursor: pointer;
}

.cart-text-empty {
    font-size: 14px;
    padding: 15px 20px 10px;
}

.sort-menu-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    margin-top: 0;
    width: 100%;
    z-index: 999999;
    height: 100%;
    border: none;
    padding: 15px;
}

.sidebar-search-form .close-filter {
    float: right;
    cursor: pointer;
}

.toolbar .sort-menu .sort-title {
    margin-bottom: 10px;
}

.toolbar .sort-menu .sort-title h3 {
    padding: 10px 0;
}

.toolbar .sort-menu .sort-title h3:before {
    content: "";
    position: relative;
    height: 20px;
    width: 4px;
    background: var(--main-color, #5191FA);
    display: block;
    float: left;
    margin-right: 10px;
    top: -3px;
}

.toolbar .sort-menu .sort-title h3 .close-filter {
    float: right;
    cursor: pointer;
}

.toolbar .sort-menu .sort-item {
    margin-bottom: 10px;
}

.toolbar .sort-menu .sort-item .st-icheck-item:last-child {
    margin-bottom: 0;
}

.toolbar .sort-menu .sort-item .title {
    color: #adb2bd;
    margin-bottom: 7px;
    display: block;
    margin-top: 10px;
}

.btn-clear-filter {
    display: inline-block;
    margin-left: 10px;
    color: var(--main-color, #5191FA);
    font-weight: 400;
    font-size: 14px;
    cursor: pointer;
}

header#main-header,
.btn-primary,
.post .post-header,
.top-user-area .top-user-area-list>li.top-user-area-avatar>a:hover>img,
.booking-item:hover,
.booking-item.active,
.booking-item-dates-change:hover,
.btn-group-select-num>.btn.active,
.btn-group-select-num>.btn.active:hover,
.btn-primary:hover,
.booking-item-features>li:hover>i,
.form-control:active,
.form-control:focus,
.fotorama__thumb-border,
.sticky-wrapper.is-sticky .main_menu_wrap,
.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select,
.btn-primary:focus {
    border-color: var(--main-color, #5191FA) !important;
}

.woocs_auto_switcher {
    display: none !important;
}

.search-form.st-traveler-payout form .field-guest .form-extra-field {
    min-height: 82px;
}

.search-form.st-traveler-payout form .notice {
    font-size: 14px;
    padding-bottom: 4px;
}

.search-form.st-traveler-payout form .field-passenger .form-button {
    width: 100%;
}

.search-form form.bookingdc .field-guest .form-extra-field {
    min-height: 82px;
}

.i-check {
    transition: 0.3s;
    text-align: center;
    vertical-align: middle;
    margin: 0 0 0 -13px;
    padding: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #ccc;
    cursor: pointer;
    top: 1px;
    left: -7px;
    float: left;
    line-height: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.i-check:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: none;
    content: "\f00c";
    transition: 0.3s;
    transform: translate3d(0, -25px, 0);
    display: block;
    opacity: 0;
    -ms-filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
    filter: alpha(opacity=0);
    color: #fff;
    font-size: 14px;
}

.i-check.checked {
    border: 1px solid var(--main-color, #5191FA);
    background: var(--main-color, #5191FA);
}

.i-check.checked::before {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    filter: none;
}

.tp-checkbox-class label {
    margin-left: 20px;
}

.st-traveler-payout select.st-location-id {
    display: none;
}

.st-traveler-payout .field-detination .render {
    width: 100%;
}

.st-traveler-payout .st-form-dropdown-icon {
    width: 100%;
}

.st-option-wrapper.option-wrapper,
.option-wrapper.st-option-wrapper {
    width: 450px !important;
    padding: 10px;
    border-radius: 0 0 4px 4px;
    border-color: #dfdfdf;
    max-height: 332px;
    margin-top: 22px;
    background: #FFF;
    margin-left: -52px;
    overflow-y: scroll;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 3px #ccc;
}

@media (max-width: 767px) {
    .st-option-wrapper.option-wrapper,
    .option-wrapper.st-option-wrapper {
        width: 100% !important;
    }
}

.st-option-wrapper.option-wrapper::-webkit-scrollbar,
.option-wrapper.st-option-wrapper::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.st-option-wrapper.option-wrapper::-webkit-scrollbar-thumb,
.option-wrapper.st-option-wrapper::-webkit-scrollbar-thumb {
    background-color: #dedede;
    border: 2px solid #d3cbcb;
}

.st-option-wrapper.option-wrapper .option,
.st-option-wrapper.option-wrapper .option1,
.option-wrapper.st-option-wrapper .option,
.option-wrapper.st-option-wrapper .option1 {
    padding: 10px 5px;
    font-size: 13px;
    cursor: pointer;
}

.st-option-wrapper.option-wrapper .option .label .fa,
.st-option-wrapper.option-wrapper .option1 .label .fa,
.option-wrapper.st-option-wrapper .option .label .fa,
.option-wrapper.st-option-wrapper .option1 .label .fa {
    margin-left: 10px;
}

.st-search-form-calendar label {
    font-size: 12px;
    display: flex !important;
}

.st-search-form-calendar label svg {
    width: 14px;
    margin-top: 0 !important;
}

.input-icon {
    margin-right: 25px;
}

.input-icon svg>g>g {
    stroke: var(--main-color, #5191fa);
}

.anchorific {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 30px;
}

.anchorific div {
    font-weight: 700;
    font-size: 25px;
    line-height: 46px;
    color: #232323;
}

.anchorific ul {
    list-style-type: none;
    padding: 0;
}

.anchorific li ul {
    list-style-type: none;
}

.anchorific ul li a {
    color: #238b90;
    display: block;
    font-family: "Lato", sans-serif;
    font-style: italic;
    font-weight: 700;
    text-decoration: none;
    padding: 5px;
}

.anchorific li.active>a {
    /* border-right: #e54339 1px solid; */
    background-color: #fff;
}

.anchorific li.active>ul {
    display: block;
}

.st-banner-search-form h2 {
    line-height: 1.3;
}

.st-banner-search-form .st-search-el:not(.st-search-el) .search-form .dropdown-menu {
    transform: unset !important;
    top: 100% !important;
}

@media screen and (min-width: 991px) {
    .st-banner-search-form .st-search-el:not(.st-search-el) .search-form .dropdown-menu {
        width: calc(100% + 15px);
    }
}

.st-banner-search-form .st-search-el:not(.st-search-el) .st-search-form-el {
    background: #FFF;
}

.st-banner-search-form .st-search-el:not(.st-search-el) .st-search-form-el .st-search-el {
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    position: relative;
}

.st-banner-search-form .st-search-el:not(.st-search-el) .st-search-form-el .st-search-el .border-right {
    padding-left: 0px;
}

.st-banner-search-form .st-search-el:not(.st-search-el) .st-search-form-el .st-search-el .border-right .field-detination i {
    padding-left: 10px;
}

.st-banner-search-form.style_1 form {
    padding-left: 15px;
    padding-right: 15px;
}

.destination-search {
    display: inline-block;
    position: relative;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .destination-search {
        display: flex;
    }
}

@media screen and (min-width: 991px) {
    .st-search-form-el {
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    }
}

.search-form {
    background: #FFFFFF;
}

.search-form .dropdown-menu {
    padding: 15px;
    border-radius: 0 0 4px 4px;
    border-color: #dfdfdf;
    min-height: 100px;
    max-height: 332px;
    margin-top: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    width: 100%;
}

@media screen and (max-width: 991px) {
    .search-form .dropdown-menu {
        min-height: 100px;
    }
}

.search-form .dropdown-menu li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0px;
    font-weight: 500;
    margin-bottom: 0 !important;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.search-form .dropdown-menu li:hover,
.search-form .dropdown-menu li:focus,
.search-form .dropdown-menu li:active {
    color: var(--main-color, #5191FA);
    background-color: transparent;
}

.search-form .dropdown-menu li.parent_li {
    padding: 6px 20px;
}

.search-form .dropdown-menu li.parent_li span {
    font-size: 16px;
    width: 100%;
}

.search-form .dropdown-menu li span {
    width: calc(100% - 25px);
    float: right;
    font-weight: 500;
}

.search-form .dropdown-menu li .fa {
    font-size: 18px;
    color: gray;
    position: unset;
    margin-top: 0;
}

@media screen and (max-width: 991px) {
    .search-form form>.row>div {
        border-bottom: 1px solid #d7dce3;
        padding: 0px;
    }
    .search-form form>.row>div>div {
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
}

.search-form form>.row>div:last-child {
    border-bottom: none;
}

.search-form form .field-guest {
    position: relative;
    height: 100%;
}

@media screen and (min-width: 991px) {
    .search-form form .field-guest {
        border-left: 1px solid #d7dce3;
        padding-left: 15px;
    }
    .search-form form .field-guest.field-advance {
        border-left: none;
    }
}

@media screen and (max-width: 991px) {
    .search-form form .field-guest {
        padding: 15px 0px;
    }
}

.search-form form .field-guest .form-extra-field {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    align-items: center;
}

.search-form form .border-right {
    position: relative;
}

@media screen and (min-width: 991px) {
    .search-form form .border-right {
        border-right: 1px solid #d7dce3;
    }
}

@media screen and (max-width: 767px) {
    .search-form form .border-right {
        border-right: none;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
}

.search-form form .border-right.border-none {
    position: unset;
    border: none;
}

.search-form form .border-right .form-extra-field,
.search-form form .border-right .form-date-field {
    position: relative;
    padding: 20px 0px;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .search-form form .border-right .form-extra-field,
    .search-form form .border-right .form-date-field {
        padding: 15px 0px;
        display: flex;
        align-items: center;
    }
}

.search-form form .border-right .field-detination {
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .search-form form .border-right .field-detination {
        display: flex;
        align-items: center;
    }
    .search-form form .border-right .field-detination .dropdown-toggle {
        padding-left: 10px;
    }
}

.search-form form label {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
    margin-bottom: 0;
    display: block;
}

.search-form form .st-form-dropdown-icon {
    padding-left: 15px;
    z-index: 9;
}

@media screen and (max-width: 767px) {
    .search-form form .st-form-dropdown-icon {
        padding-left: 10px;
    }
}

.search-form form .has-icon .dropdown {
    padding-left: 35px;
    z-index: 9;
}

.search-form form .dropdown {
    cursor: pointer;
}

.search-form form .dropdown input {
    border: none;
    width: 100%;
    color: var(--main-color, #5191FA);
    font-size: 14px;
    background: transparent;
    outline: unset;
}

.search-form form .dropdown input::-webkit-input-placeholder {
    /* Edge */
    color: var(--main-color, #5191FA);
}

.search-form form .dropdown input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--main-color, #5191FA);
}

.search-form form .dropdown input::placeholder {
    color: var(--main-color, #5191FA);
}

.search-form form .form-group {
    background: #FFFFFF;
}

.search-form form .form-group .arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    margin-top: -10px;
    font-size: 22px;
    color: #a0a9b2;
}

.search-form form .form-group .render {
    font-size: 14px;
    display: inline-block;
    color: var(--main-color, #5191FA);
}

.search-form form .form-group.form-date-search {
    position: relative;
    padding: 20px 0px;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .search-form form .form-group.form-date-search {
        display: flex;
        align-items: center;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }
}

@media screen and (min-width: 992px) {
    .search-form form .form-group.form-date-search.form-date-car .check-in-wrapper {
        margin-right: 40px;
    }
}

.search-form form .form-group .date-wrapper {
    padding-left: 15px;
}

@media screen and (max-width: 767px) {
    .search-form form .form-group .date-wrapper {
        padding-left: 10px;
    }
}

.search-form form .form-group .date-wrapper .check-in-wrapper {
    float: left;
}

.search-form form .form-group .date-wrapper .check-in-render {
    font-weight: 400;
}

.search-form form .form-group .check-in-out {
    position: absolute;
    left: -15px;
    bottom: 1px;
    z-index: -1;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .search-form form .form-group.form-extra-field .dropdown-toggle {
        background: transparent;
        display: flex;
        align-items: center;
    }
}

.search-form form .form-group.form-extra-field .dropdown-menu li.item:not(:last-child) {
    margin-bottom: 20px;
}

.search-form form .form-group.form-extra-field .dropdown-menu .item .select-wrapper {
    width: 111px;
    background: 0 0;
}

@media screen and (max-width: 767px) {
    .search-form form .form-group.form-extra-field .dropdown-toggle {
        background: transparent;
        display: flex;
        align-items: center;
    }
}

.search-form form .form-button {
    height: 100%;
}

@media screen and (min-width: 992px) {
    .search-form form .form-button {
        border-left: 1px solid #d7dce3;
        padding-left: 15px;
    }
}

.search-form form .form-button .form-group {
    height: auto;
}

@media screen and (max-width: 767px) {
    .search-form form .form-button {
        padding-top: calc(var(--bs-gutter-x) * 0.5);
        padding-bottom: calc(var(--bs-gutter-x) * 0.5);
    }
    .search-form form .form-button button {
        padding: 16px 20px;
        border-radius: 0 0 3px 3px;
        width: 100%;
    }
}

.search-form form .form-button .advance {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .search-form form .form-button .advance {
        display: none;
    }
}

.search-form form .form-button .field-advance {
    position: relative;
    height: 100%;
}

.search-form form .form-button .field-advance .dropdown-toggle {
    background: transparent;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.search-form form .form-button .field-advance .item-title {
    position: relative;
}

.search-form form .form-button .field-advance .item-title h4 {
    color: var(--grey-color, #5E6D77);
    font-size: 14px;
    float: none;
}

.search-form form .form-button .field-advance .item-title .item-content {
    background: #FFF;
}

.search-form form .form-button .field-advance .item-title .item-content .st-icheck-item {
    margin-bottom: 12px;
}

.search-form form .form-button .field-advance .st-icheck-item {
    margin-bottom: 12px;
}

.search-form form .form-button .field-advance .dropdown-menu {
    min-width: 620px;
    width: auto;
    padding: 15px 30px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    border-radius: 0 0 4px 4px;
    border-color: #dfdfdf;
    margin-top: 0;
    z-index: 9;
}

.search-form:not(.sticky) .form-group {
    min-height: 86px;
}

@media screen and (max-width: 767px) {
    .search-form:not(.sticky) .form-group {
        min-height: auto;
    }
}

@media screen and (max-width: 767px) {
    .search-form .col-md-3:last-child {
        padding: 0;
    }
}

.search-form form .field-destination-carstranfer .dropdown {
    padding-left: 0px;
}

.search-form form .destination-dropoff select:focus-visible {
    outline: none;
}

.search-form form .form-button.st-cartransfer-advance {
    border-left: none;
    padding-left: 0px;
}

.st-banner-search-form .field-detination {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.st-banner-search-form .multi-search .nav-item a {
    border-radius: 8px 8px 0 0;
    margin-right: 1px;
    background-color: var(--link-color, #1A2B48);
    color: #fff;
    border-color: var(--link-color, #1A2B48);
    padding: 7px 30px;
    font-size: 14px;
    margin-right: 1px;
}

.st-banner-search-form .multi-search .nav-item a.active {
    background-color: var(--main-color, #5191FA);
    border-color: var(--main-color, #5191FA);
}

.st-button-prev {
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 30px;
    margin-top: -18px;
}

.st-button-prev span {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../../v2/images/svg/ico_pre.svg) center center no-repeat;
    background-size: 100% auto;
    color: transparent;
}

@media screen and (max-width: 767px) {
    .st-button-prev {
        display: none;
    }
}

.st-button-next {
    position: absolute;
    top: 50%;
    margin-top: -18px;
    z-index: 1;
    right: 30px;
}

@media screen and (max-width: 767px) {
    .st-button-next {
        display: none;
    }
}

.st-button-next span {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../../v2/images/svg/ico_next.svg) center center no-repeat;
    background-size: 100% auto;
    color: transparent;
}

.st-list-service.mix_service .title {
    margin-top: 28px;
    margin-bottom: 35px;
}

.st-list-service.mix_service .title h2 {
    margin: 0px;
}

.st-list-service .st-button-prev {
    left: -66px;
    margin-top: -18px;
}

.st-list-service .st-button-prev span {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../../v2/images/test.png) center center no-repeat;
    background-size: 100% auto;
    color: transparent;
}

@media screen and (max-width: 767px) {
    .st-list-service .st-button-prev {
        display: none;
    }
}

.st-list-service .swiper-button-disabled {
    display: none;
}

.st-list-service .st-button-next {
    right: -66px;
    margin-top: -18px;
}

@media screen and (max-width: 767px) {
    .st-list-service .st-button-next {
        display: none;
    }
}

.st-list-service .st-button-next span {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../../v2/images/test2.png) center center no-repeat;
    background-size: 100% auto;
    color: transparent;
}

.st-list-service .list-style .price-wrapper {
    width: 100%;
    margin-bottom: 10px;
}

@media screen and (min-width: 991px) {
    .st-list-service.st-list-vertical .list-style .section-footer {
        display: none;
    }
}

.st-list-service.st-list-vertical .list-style .item-content {
    width: 65%;
}

.st-list-service.st-list-vertical .list-style .item-content .item-content-w::after {
    display: none;
}

.st-list-service.st-list-vertical .list-style .item-content-w ul.facilities {
    display: none !important;
}

@media screen and (min-width: 991px) {
    .st-list-service.st-list-vertical .list-style .feature_class,
    .st-list-service.st-list-vertical .list-style .service-add-wishlist {
        display: none;
    }
}

.st-list-service.st-list-vertical .list-style .item-content-w {
    padding-top: 10px;
    padding-bottom: 10px;
}

.st-list-service.st-list-vertical .list-style .item-content-w .reviews {
    margin-top: 0px;
}

.st-list-service.st-list-vertical .list-style .item-content-w .service-excerpt {
    display: none;
}

.st-list-service.st-list-vertical .list-style .amenities {
    display: none;
}

.st-list-destination .destination-item .image {
    position: relative;
    overflow: hidden;
}

.st-list-destination .destination-item .image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.2;
}

.st-list-destination .destination-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: all 0.3s;
    object-fit: cover;
}

.st-list-destination .destination-item:hover .image img {
    transform: scale(1.1);
}

.st-list-destination a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.st-list-destination .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 10px;
}

.st-list-destination .content .title {
    margin-bottom: 0;
    font-size: 36px;
    font-weight: 400;
}

@media screen and (max-width: 757px) {
    .st-list-destination .content .title {
        font-size: 20px;
    }
}

.st-list-destination .content .desc {
    font-size: 16px;
    font-weight: 400;
    padding-left: 10px;
    padding-right: 10px;
}

@media screen and (max-width: 757px) {
    .st-list-destination .content .desc.multi a {
        font-size: 14px;
    }
}

.st-list-destination .content .desc.multi a:after {
    content: "";
    height: 5px;
    width: 5px;
    display: inline-block;
    background: #fff;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 10px;
    margin-right: 10px;
}

.st-list-destination .content .desc.multi a:last-child:after {
    display: none;
}

.st-list-destination.bottom .content {
    bottom: 20px;
    top: auto;
    transform: translate(-50%, 0);
}

.st-list-destination.top .content {
    top: 20px;
    bottom: auto;
    transform: translate(-50%, 0);
}

.st-list-destination.button .content .desc.multi a:after {
    display: none;
}

.item-personal-infor .thumb {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media screen and (min-width: 991px) {
    .item-personal-infor .thumb {
        max-width: 240px;
        max-height: 240px;
    }
}

.item-personal-infor .thumb img {
    width: 100%;
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

.item-personal-infor .thumb:hover .social {
    opacity: 0.8;
}

.item-personal-infor p {
    text-align: center;
}

.item-personal-infor p.name {
    font-size: 15px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    margin-bottom: 0;
}

.item-personal-infor p.position {
    font-size: 14px;
    color: #768092;
    font-style: italic;
}

.item-personal-infor .social {
    border-radius: 50%;
    position: absolute;
    background: var(--main-color, #5191FA);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    transition: all 0.5s;
    overflow: hidden;
}

.item-personal-infor .social ul {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.item-personal-infor .social ul li {
    display: inline-block;
    list-style: none;
    margin-left: 10px;
    margin-right: 10px;
}

.item-personal-infor .social ul li a {
    color: #fff;
    font-size: 19px;
    font-weight: 400;
}

.count-item-index {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
}

.st-sliders .swiper-slide img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.st-sliders .st-button-prev,
.st-sliders .st-button-next {
    background: rgba(26, 43, 72, 0.6);
    width: 50px;
    height: 50px;
    border-radius: 3px;
    padding: 10px;
    cursor: pointer;
}

.st-sliders .st-button-prev span,
.st-sliders .st-button-next span {
    width: 100%;
    height: 100%;
}

.st-sliders.style-2 .st-button-prev,
.st-sliders.style-2 .st-button-next,
.st-sliders.style-3 .st-button-prev,
.st-sliders.style-3 .st-button-next {
    background: rgba(35, 35, 35, 0.4);
    border-radius: 50%;
    padding: 20px;
    width: unset;
    height: unset;
    display: flex;
}

.st-sliders.style-2 .st-button-prev:hover,
.st-sliders.style-2 .st-button-next:hover,
.st-sliders.style-3 .st-button-prev:hover,
.st-sliders.style-3 .st-button-next:hover {
    background: #FFFFFF;
}

.st-sliders.style-2 .st-button-prev:hover span,
.st-sliders.style-2 .st-button-next:hover span,
.st-sliders.style-3 .st-button-prev:hover span,
.st-sliders.style-3 .st-button-next:hover span {
    color: #232323;
}

.st-sliders.style-2 .st-button-prev span,
.st-sliders.style-2 .st-button-next span,
.st-sliders.style-3 .st-button-prev span,
.st-sliders.style-3 .st-button-next span {
    background: unset;
    color: #FFF;
    width: unset;
    height: unset;
    font-size: 16px;
}

.st-sliders.style-2 .swiper-pagination-clickable .swiper-pagination-bullet,
.st-sliders.style-3 .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
    background: #DEDEDE;
    border-radius: 16px;
    border: none;
    width: 8px;
    height: 8px;
    line-height: 10px;
}

.st-sliders.style-2 .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active,
.st-sliders.style-3 .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-color, #3B71FE);
    width: 10px;
    height: 10px;
}

.st-languages label,
.st-currencies label {
    margin-bottom: 10px;
}

.st-testimonial .testimonial-wrapper .item-testimonial .head-tesimonial {
    margin-bottom: 30px;
}

.st-testimonial .testimonial-wrapper .item-testimonial .st-avatar {
    margin-right: 20px;
    width: 70px;
    height: auto;
    border-radius: 50%;
}

.st-testimonial .testimonial-wrapper .item-testimonial .author-meta h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.st-testimonial .testimonial-wrapper .item-testimonial .author-meta .fa {
    color: #ffdc00;
    font-size: 16px;
    margin-right: 2px;
}

.st-testimonial .testimonial-wrapper .item-testimonial .st-content {
    font-size: 14px;
    color: #768092;
    margin-bottom: 0;
}

.st-testimonial .testimonial-wrapper .item-testimonial.st-style-slider-2 .item {
    margin: 0px;
}

.st-testimonial .testimonial-wrapper .item-testimonial.st-style-slider-2 .author-meta {
    margin-top: 20px;
}

.st-testimonial .testimonial-wrapper .item-testimonial.st-style-slider-2 .author-meta h4 {
    margin-bottom: 0px;
}

.st-testimonial .swiper-button-disabled {
    display: none;
}

.st-testimonial .st-button-prev {
    left: -66px;
    margin-top: -18px;
}

.st-testimonial .st-button-prev span {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../../v2/images/test.png) center center no-repeat;
    background-size: 100% auto;
    color: transparent;
}

.st-testimonial .st-button-next {
    right: -66px;
    margin-top: -18px;
}

.st-testimonial .st-button-next span {
    width: 36px;
    height: 36px;
    display: block;
    background: url(../../v2/images/test2.png) center center no-repeat;
    background-size: 100% auto;
    color: transparent;
}

.swiper-pagination {
    margin-top: 25px;
    width: 100%;
}

.swiper-pagination span {
    width: 10px;
    height: 10px;
    background: #eee;
    border-radius: 50%;
    border: 2px solid transparent;
    margin-right: 5px;
    margin-left: 5px;
    box-sizing: content-box;
    opacity: 1;
}

.swiper-pagination span.swiper-pagination-bullet-active {
    border: 2px solid var(--main-color, #5191FA);
}

.item-member-ship {
    position: relative;
    display: block;
}

.item-member-ship .item-st {
    padding-top: 3.75rem;
    border: 1px solid #DAE1E7;
    border-radius: 5px;
    border-radius: 5px;
    padding-right: 1.88rem;
    padding-left: 1.88rem;
    transition: all 0.2s ease-in-out;
}

.item-member-ship .item-st .icon-table {
    text-align: center;
}

.item-member-ship .item-st .title {
    text-align: center;
    font-family: "Poppins";
    font-weight: 600;
    font-size: 18px;
    color: #7C90A9;
    letter-spacing: 0;
    margin-top: 1.63rem;
    margin-bottom: 1.63rem;
}

.item-member-ship .item-st .price {
    text-align: center;
    line-height: 1;
}

.item-member-ship .item-st .price span {
    text-align: center;
    font-family: "Poppins";
    font-weight: 500;
    font-size: 48px;
    color: var(--link-color, #5191FA);
    letter-spacing: 0;
}

.item-member-ship .item-st .time-packpage p {
    font-family: Poppins;
    font-size: 12px;
    color: #7C90A9;
    letter-spacing: 0;
    text-align: center;
}

.item-member-ship .item-st .pricingContent {
    margin-top: 1.88rem;
}

.item-member-ship .item-st .pricingContent ul li {
    border-bottom: 1px solid #DAE1E7;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.item-member-ship .item-st .pricingContent ul li img {
    margin-right: 0.94rem;
}

.item-member-ship .item-st .pricingContent ulli:first-child {
    border-top: 1px solid #DAE1E7;
}

.item-member-ship .item-st .button-get {
    border: 2px solid var(--link-color, #5191FA);
    border-radius: 3px;
    margin-top: 1.88rem;
    margin-bottom: 1.88rem;
    transition: all 0.2s ease-in-out;
}

.item-member-ship .item-st .button-get .add_cart_package_new {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 14px;
    color: var(--main-color, #1A2B48);
    letter-spacing: 0;
    display: block;
    transition: all 0.2s ease-in-out;
    background-color: transparent;
    background: transparent;
    width: 100%;
}

.item-member-ship:hover .item-st {
    box-shadow: 0 12px 30px 0 rgba(0, 0, 0, 0.1);
}

.item-member-ship:hover .item-st .button-get {
    background-color: var(--link-color, #5191FA);
}

.item-member-ship:hover .item-st .button-get .add_cart_package_new {
    color: #FFFFFF;
}

.stt-button-popup-video button {
    background-color: #FFF;
    border: none;
    outline: none;
    border-radius: 50%;
    padding: 30px;
    height: 80px;
    width: 80px;
    position: relative;
}

.stt-button-popup-video button:after {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 50%;
    background: transparent;
    opacity: 0;
    transition: background 0.5s linear;
}

.stt-button-popup-video button span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    text-indent: 99999px;
}

.stt-button-popup-video button span:after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    border: 10px solid transparent;
    border-left: 18px solid #242424;
    margin-left: -6px;
    margin-top: -9px;
    transition: border-color 0.3s ease;
}

.stt-button-popup-video button:hover:after {
    background: #fff;
    animation: 1s videoCirclePulse linear;
}

.stt-button-popup-video button:hover span:after {
    border-left: 18px solid var(--secondary-f84125, #f84125);
}

@media (max-width: 767px) {
    .stt-button-popup-video button {
        width: 60px;
        height: 60px;
    }
}

.list-wishlist-wrapper.style_2 nav ul,
.list-wishlist-wrapper.mix-multi nav ul,
.list-tab-wrapper.style_2 nav ul,
.list-tab-wrapper.mix-multi nav ul {
    border-bottom: transparent;
    margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
    .list-wishlist-wrapper.style_2 nav ul,
    .list-wishlist-wrapper.mix-multi nav ul,
    .list-tab-wrapper.style_2 nav ul,
    .list-tab-wrapper.mix-multi nav ul {
        margin-bottom: 20px;
    }
}

.list-wishlist-wrapper.style_2 nav li,
.list-wishlist-wrapper.mix-multi nav li,
.list-tab-wrapper.style_2 nav li,
.list-tab-wrapper.mix-multi nav li {
    cursor: pointer;
    display: flex;
}

.list-wishlist-wrapper.style_2 nav li a,
.list-wishlist-wrapper.mix-multi nav li a,
.list-tab-wrapper.style_2 nav li a,
.list-tab-wrapper.mix-multi nav li a {
    padding: 10px 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #232323;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    margin-left: 6px;
    margin-right: 6px;
}

@media screen and (max-width: 767px) {
    .list-wishlist-wrapper.style_2 nav li a,
    .list-wishlist-wrapper.mix-multi nav li a,
    .list-tab-wrapper.style_2 nav li a,
    .list-tab-wrapper.mix-multi nav li a {
        padding: 10px 20px;
        margin-left: 5px;
        margin-right: 5px;
        margin-bottom: 10px;
    }
}

.list-wishlist-wrapper.style_2 nav li a.active,
.list-wishlist-wrapper.mix-multi nav li a.active,
.list-tab-wrapper.style_2 nav li a.active,
.list-tab-wrapper.mix-multi nav li a.active {
    color: #FFF;
    background: var(--main-color, #5191FA);
}

.list-wishlist-wrapper.style_2 .service-list-wrapper .item-service,
.list-wishlist-wrapper.mix-multi .service-list-wrapper .item-service,
.list-tab-wrapper.style_2 .service-list-wrapper .item-service,
.list-tab-wrapper.mix-multi .service-list-wrapper .item-service {
    margin-bottom: 0px;
}

.st-blog-list-el .cate.category-color {
    position: relative;
    top: unset;
    left: unset;
    margin-top: 5px;
    display: block;
    margin-bottom: 15px;
}

.st-blog-list-el .cate.category-color ul li {
    padding: 6px 15px 6px 10px;
}

.st-blog-list-el .cate.category-color ul li a {
    padding: 0px;
    display: flex;
    align-items: center;
}

.st-blog-list-el .cate.category-color ul li a span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 6px;
}

.st-blog-list-el .cate.category-color ul li a:after {
    display: none;
}

.st-blog-list-el .title {
    margin-bottom: 15px;
}

.st-blog-list-el .excerpt-wrapper {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #727272;
}

body.st-header-2 header {
    position: relative;
    z-index: 999;
}

body header .toggle-menu {
    margin-top: 2px;
    line-height: 1;
    display: none;
    float: left;
}

@media (max-width: 767px) {
    body header .toggle-menu {
        margin-top: 3px;
        margin-right: 10px;
    }
}

@media (max-width: 991px) {
    body header .toggle-menu {
        display: block;
        margin-top: 0;
        margin-right: 20px;
    }
}

body header #topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    background: var(--link-color, #1A2B48);
}

@media (max-width: 991px) {
    body header #topbar {
        padding-left: 35px;
        padding-right: 35px;
    }
}

@media (max-width: 767px) {
    body header #topbar {
        padding-left: 15px;
        padding-right: 15px;
    }
}

body header #topbar .topbar-left {
    font-size: 14px;
}

body header #topbar .socials {
    display: inline-block;
    border-right: 1px solid #374969;
}

@media (max-width: 991px) {
    body header #topbar .socials {
        border: none;
    }
}

body header #topbar .socials li a {
    padding-right: 18px;
    color: #d1d4da;
    font-size: 14px;
}

body header #topbar .topbar-items {
    display: inline-block;
}

body header #topbar .topbar-items li {
    padding-left: 18px;
    padding-right: 18px;
    display: inline-block;
}

body header #topbar .topbar-items li:last-child {
    padding-right: 0;
}

body header #topbar .topbar-items li a {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}

body header .dropdown-toggle:after {
    display: none;
}

body header .topbar-right .dropdown-menu {
    transform: unset !important;
    inset: unset !important;
    right: 0 !important;
    left: auto;
}

body header .topbar-items {
    display: inline-block;
}

body header .topbar-items li {
    padding-left: 18px;
    padding-right: 18px;
    display: inline-block;
}

body header .topbar-items li:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

body header .topbar-items li a {
    color: #fff;
    font-weight: 400;
    font-size: 12px;
}

body header #topbar .dropdown .dropdown-menu {
    min-width: 160px;
    background: var(--link-color, #1A2B48);
}

body header #topbar .dropdown .dropdown-menu li {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    border: none;
}

body header #topbar .dropdown .dropdown-menu li a {
    display: block;
    padding: 8px 20px;
    text-align: right;
    color: #fff;
}

body header #topbar .dropdown .dropdown-menu li a:hover {
    background: #233448;
}

body header #topbar .dropdown .dropdown-menu .dropdown-divider {
    margin: 0 0;
    background-color: rgba(255, 255, 255, 0.2);
    height: 2px;
}

@media (max-width: 480px) {
    body header #topbar .dropdown.dropdown-currency {
        display: inline-block !important;
    }
}

body header #topbar .dropdown.dropdown-currency .dropdown-menu {
    min-width: auto;
}

body header #topbar .topbar-right {
    font-size: 12px;
}

body header .header {
    padding: 0px 50px;
    position: relative;
}

@media (max-width: 991px) {
    body header .header {
        padding: 30px 35px;
    }
}

@media (max-width: 767px) {
    body header .header {
        padding: 20px;
    }
}

body header .header .header-left {
    position: static;
    width: auto;
}

body header .header .header-left .tag_h1 {
    display: none;
}

@media (max-width: 991px) {
    body header .header .header-left {
        float: left;
        margin-right: auto;
        width: 100%;
    }
}

body header .header .header-left .logo {
    margin-right: 30px;
    float: left;
}

@media screen and (max-width: 991px) {
    body header .header .header-left .logo {
        float: none;
        margin: 0px;
        text-align: center;
        width: 100%;
    }
}

body header .header .header-left .logo img {
    max-height: 91px;
    max-width: 100%;
}

body header .header .header-left #st-main-menu {
    position: static;
    width: 100%;
    transition: left 0.3s ease, opacity 0.3s ease;
}

body header .header .header-left #st-main-menu .back-menu {
    display: none;
}

body header .header .header-left #st-main-menu .main-menu .topbar-item {
    display: none;
}

@media (max-width: 991px) {
    body header .header .header-left #st-main-menu .main-menu .topbar-item {
        display: block;
    }
    body header .header .header-left #st-main-menu .main-menu .topbar-item.login-item:after {
        content: "";
    }
}

@media (max-width: 991px) {
    body header .header .header-left #st-main-menu {
        position: fixed !important;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        top: 0;
    }
    body header .header .header-left #st-main-menu .back-menu {
        display: none;
        position: fixed;
        top: 0;
        left: -110%;
        background: #f5f5f5;
        width: 300px;
        height: 50px;
        display: flex !important;
        align-items: center;
        font-size: 15px;
        color: grey;
        padding-left: 22px;
        opacity: 0.8;
        border-bottom: 1px solid #EEEEEE;
        text-decoration: none;
        z-index: 9;
    }
    body header .header .header-left #st-main-menu.open {
        opacity: 1;
        visibility: visible;
        z-index: 9999999;
        transition-delay: 0s;
    }
    body header .header .header-left #st-main-menu.open .back-menu {
        font-size: 24px;
        opacity: 1;
        left: 0;
        width: 300px;
        display: block;
    }
    body header .header .header-left #st-main-menu.open #main-menu {
        overflow-y: scroll;
        padding-left: 0;
        max-height: 100%;
        height: 100%;
        margin-bottom: 0;
        list-style: none;
        opacity: 1;
        left: 0;
        position: fixed;
        top: 0;
        background: #fff;
        width: 300px;
        transition-delay: 0.1s;
        transition: left 0.3s ease, opacity 0.3s ease;
    }
}

body header .header .dropdown-user-dashboard img.avatar {
    border-radius: 50%;
    margin-right: 5px;
}

body header .header .dropdown-user-dashboard .dropdown-menu {
    top: 34px !important;
}

body header .header .header-right .header-search input {
    width: 34px;
    font-size: 12px;
    transition: width 0.2s ease-in-out;
    background: url(../../v2/images/svg/ico_search_header.svg) no-repeat 8px center;
    background-size: 24px;
    box-shadow: none;
    border: none;
}

body header .header .header-right .header-search input:focus {
    padding-left: 35px;
    width: 200px;
    box-shadow: none;
    border-bottom: 1px solid var(--grey-color, #5E6D77);
}

body header .header .header-right .st-list li {
    padding-left: 15px;
    padding-right: 15px;
    display: inline-block;
}

@media (max-width: 991px) {
    body header .header .header-right .st-list li.dropdown-user-dashboard,
    body header .header .header-right .st-list li.st-header-link {
        display: none;
    }
}

body header .header .header-right .st-list li:last-child {
    margin-right: 0;
}

body header .header .header-right .st-list li a {
    color: var(--link-color, #1A2B48);
    font-size: 14px;
}

body header .header .header-right .st-list li a.btn {
    color: #FFF;
}

body header .header .header-right .st-list li .dropdown-menu li {
    width: 100%;
    display: block;
    padding: 0px;
}

body header .header .header-right .st-list li .dropdown-menu li a {
    padding: 5px 20px;
    width: 100%;
    display: inline-block;
}

body header .header .header-right .st-list li .dropdown-menu li a:hover {
    background-color: #f5f5f5;
}

body header .header .header-right .st-list li .dropdown-menu li.cart-total a:hover {
    background: #4977fa;
}

@media screen and (max-width: 991px) {
    body header .header .header-right .st-list li.st-header-link,
    body header .header .header-right .st-list li.topbar-item {
        display: none;
    }
}

body header .header .header-right .st-list .st-header-link a {
    color: #FFF;
}

@media screen and (max-width: 992px) {
    body header .header .header-right .st-list .st-header-link {
        display: none;
    }
}

body header .header .header-right .st-list .st-header-link a {
    background: var(--orange-color, #FA5636);
    border-radius: 3px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 450;
    text-decoration: none;
    display: inline-block;
}

body header .header .header-right .st-list .dropdown-minicart .mini-cart {
    cursor: pointer;
}

body header .header .header-right .st-list .dropdown-minicart .mini-cart .cart-caret {
    position: absolute;
    top: -15px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fa5636;
    color: #fff;
    text-align: center;
    line-height: 21px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu {
    width: 270px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu li {
    display: block;
    padding: 20px;
    margin: 0px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu li a {
    font-size: 13px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid var(--light-grey-color, #EAEEF3);
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .heading .st-heading-section {
    margin: 0;
    font-size: 16px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item {
    position: relative;
    display: flex;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item:hover {
    background: #f7f7f7;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-left {
    width: 70px;
    display: inline-block;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-body {
    display: inline-block;
    width: calc(100% - 75px);
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-body .media-heading {
    font-size: 14px;
    line-height: 24px;
    margin-top: -5px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-body .media-heading a {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-body .price-wrapper {
    font-size: 12px;
    color: var(--grey-color, #5E6D77);
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .media-body .price-wrapper .price {
    font-size: 15px;
    color: var(--link-color, #1A2B48);
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-item .cart-delete-item {
    text-align: right;
    padding: 0px;
    width: 30px;
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-total .sub-total {
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-color, #5E6D77);
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-total .sub-total .price {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
}

body header .header .header-right .st-list .dropdown-minicart .dropdown-menu .cart-total .btn {
    margin-top: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-weight: 500;
}

body header .header #main-menu {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

body header .header #main-menu>li {
    display: inline-block;
}

body header .header #main-menu>li a {
    color: var(--link-color, #1A2B48);
    text-decoration: none;
}

body header .header #main-menu>li a:hover {
    color: var(--link-color, #5191FA);
}

body header .header #main-menu>li a .title-menu {
    display: inline-block;
    width: auto;
    position: relative;
}

body header .header #main-menu>li>a {
    display: block;
    padding: 35px 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--link-color, #1A2B48);
    text-decoration: none;
}

body header .header #main-menu>li li a[href="#"] {
    cursor: text;
}

body header .header #main-menu li.current-menu-item>a,
body header .header #main-menu li.current-menu-ancestor>a {
    color: var(--link-color, #5191FA);
}

body header .header #main-menu li.menu-item-has-children {
    position: relative;
}

body header .header #main-menu li.menu-item-has-children>a {
    position: relative;
}

body header .header #main-menu li.menu-item-has-children .fa {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 5px;
    font-size: 18px;
}

body header .header #main-menu li.menu-item-has-children .menu-dropdown {
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding-left: 0;
    margin-bottom: 0;
    width: 200px;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #FFF;
    box-shadow: 0 1px 1px #dbdbdb;
    z-index: 19;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

body header .header #main-menu li.menu-item-has-children .menu-dropdown li {
    padding-left: 20px;
    padding-right: 20px;
}

body header .header #main-menu li.menu-item-has-children .menu-dropdown li a {
    padding: 15px 0;
    display: block;
    font-size: 14px;
}

body header .header #main-menu li.menu-item-has-children .menu-dropdown li:not(:last-child) a {
    border-bottom: 1px solid #EEEEEE;
}

body header .header #main-menu li.menu-item-has-children .menu-dropdown li:last-child a {
    border-bottom: none;
}

body header .header #main-menu li.menu-item-has-children .menu-dropdown .menu-dropdown {
    top: 0;
    left: 100%;
}

body header .header #main-menu li:hover>.menu-dropdown {
    top: 100%;
    opacity: 1;
    visibility: visible;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent .current-menu-parent.menu-item-has-children>a:hover:after {
    display: none;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent .menu-dropdown li a {
    position: relative;
    display: inline-block;
    border-bottom: none !important;
    left: 5px;
    font-size: 14px;
    text-align: left;
    padding: 0;
    margin-top: 20px;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent .menu-dropdown li a i {
    display: none;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li>a:not(.has-image) {
    border-left-width: 2px !important;
    padding-left: 10px !important;
    border-left-color: var(--main-color, #5191FA);
    border-left-style: solid !important;
    font-weight: 500;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li>a:not(.has-image):hover {
    color: var(--link-color, #1A2B48);
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li .has-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent.menu-item-mega-column-3>.sub-menu>li {
    max-width: 33.333333%;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent.menu-item-mega-column-4>.sub-menu>li {
    max-width: 25%;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent.menu-item-mega-column-5>.sub-menu>li {
    max-width: 20%;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown {
    display: flex;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent.no-wrap>.menu-dropdown {
    flex-wrap: nowrap;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li {
    margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
    body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li {
        margin-bottom: 10px;
    }
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown {
    flex-wrap: wrap;
    width: 100%;
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown>li {
    max-width: 20%;
    width: 100%;
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown>li .item-thumb {
    display: block;
    overflow: hidden;
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown>li .item-caption {
    display: none;
}

body header #main-menu>li.menu-item-mega-parent.menu-item-mega-column-3>.menu-dropdown>li {
    max-width: 33.333333%;
}

body header #main-menu>li.menu-item-mega-parent.menu-item-mega-column-4>.menu-dropdown>li {
    max-width: 25%;
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown li {
    width: 100%;
    display: block;
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown li>a {
    margin-top: 0px;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent .menu-dropdown {
    list-style: none;
    position: absolute;
    left: 0;
    top: 100%;
    padding-left: 0;
    margin-bottom: 0;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    background: #FFF;
    box-shadow: 0 1px 1px #dbdbdb;
    z-index: 19;
    opacity: 0;
    visibility: hidden;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li .menu-dropdown {
    border: 0;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li.menu-item-has-children>.menu-dropdown {
    display: block;
    position: static;
    box-shadow: none;
    min-width: 100%;
    background: none;
    animation: none;
    left: auto;
    top: auto;
    opacity: 1;
    padding: 0px;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent .item-thumb img {
    display: block;
    margin-bottom: 10px;
    object-fit: cover;
    max-width: 100%;
    overflow: hidden;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent:hover>.menu-dropdown>li.menu-item-has-children .menu-dropdown {
    opacity: 1;
    visibility: visible;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li.menu-item-has-children .menu-dropdown li {
    padding: 0;
    width: 100%;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li.menu-item-has-children .menu-dropdown li:after {
    display: none;
}

body header #main-menu>li.menu-item-has-children.menu-item-mega-parent>.menu-dropdown>li.menu-item-has-children>.menu-dropdown>li.menu-item-has-children .menu-dropdown {
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    padding-left: 10px;
}

body header .menu-item-mega-parent>.menu-dropdown>li>a {
    text-transform: uppercase;
    margin: 0px 0px 10px 0px;
}

body header #main-menu>li.menu-item-mega-parent:hover>.menu-dropdown {
    display: flex;
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 992px) {
    body header #main-menu>li.menu-item-mega-parent:hover>.menu-dropdown {
        padding-left: 30px;
        padding-right: 30px;
    }
}

body header #main-menu li.menu-item-has-children {
    position: relative;
    align-items: center;
}

body header #main-menu li.menu-item-has-children.menu-item-mega-parent {
    position: static;
}

body header #main-menu>li.menu-item-mega-parent>.menu-dropdown {
    border-top: 1px solid #e0e0e0;
}

@media screen and (max-width: 1400px) {
    body header #main-menu>li.menu-item-mega-parent>.menu-dropdown {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media screen and (max-width: 1200px) {
    body header #main-menu>li.menu-item-mega-parent>.menu-dropdown {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    body header #main-menu>li.menu-item-mega-parent>.menu-dropdown {
        padding-left: 15px;
        padding-right: 15px;
    }
}

body header #main-menu .menu-dropdown li.menu-item-has-children:after,
body header #main-menu .menu-dropdown li.menu-item-has-children .menu-dropdown:after {
    display: none;
}

body header .menu-item-mega-parent>.menu-dropdown>li.menu-item-has-children:after {
    display: none;
}

@media screen and (max-width: 991px) {
    #main-menu>li:first-child {
        margin-top: 50px;
    }
    #main-menu li {
        text-transform: uppercase;
        display: block;
        width: 100%;
        margin: 0;
    }
    #main-menu li:not(:last-child) a {
        border-bottom: 1px solid #EEEEEE;
    }
    #main-menu li.menu-item-has-children {
        position: relative;
    }
    #main-menu li.menu-item-has-children li {
        padding-left: 20px;
        padding-right: 20px;
        text-transform: none;
    }
    #main-menu li.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    #main-menu li.menu-item-has-children .menu-dropdown {
        list-style: none;
        position: absolute;
        left: 0;
        top: 100%;
        padding-left: 0;
        margin-bottom: 0;
        min-width: 100%;
        width: 100%;
        padding-top: 5px;
        padding-bottom: 5px;
        background: #FFF;
        box-shadow: 0 1px 1px #dbdbdb;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease-in-out;
        display: none;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
    }
    body header .header #main-menu>li a {
        display: block;
        padding: 18px 20px;
        font-size: 14px;
        font-weight: 500;
    }
    body header .header #main-menu>li.menu-item-has-children.menu-item-mega-parent a.has-image .item-thumb img {
        margin-bottom: 0px;
    }
    body header .header #main-menu>li.menu-item-has-children.menu-item-mega-parent .menu-dropdown {
        display: none;
        width: 100%;
        padding: 0px;
    }
    body header .header #main-menu>li.menu-item-has-children.menu-item-mega-parent .menu-dropdown li {
        width: 100%;
        max-width: 100%;
    }
    body header .header #main-menu>li .menu-dropdown>li a {
        padding-left: 0px;
        padding-right: 0px;
    }
    body header .header #main-menu li.menu-item-has-children a .fa {
        position: unset;
        top: unset;
        right: unset;
        margin-top: 0px;
    }
    body header .header #main-menu li.menu-item-has-children a .fa.fa-angle-right {
        transform: rotate(90deg);
    }
    body header .header #main-menu li.menu-item-has-children>a {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }
}

.multi-service-wrapper .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s;
    transform: translateZ(0);
    z-index: 10;
}

.multi-service-wrapper .swiper-container-horizontal+.swiper-pagination {
    bottom: 0px;
    left: 0;
    width: 100%;
    margin-bottom: -30px;
}

.multi-service-wrapper .swiper-container-horizontal+.swiper-pagination .swiper-pagination-bullet {
    margin: 0 6px;
}

.swiper-slide .item {
    margin-bottom: 25px;
    display: block;
    width: 100%;
}

.item .content-item {
    padding-left: 15px;
    padding-right: 15px;
}

.item .content-item .service-location {
    margin-bottom: 33px;
    font-size: 13px;
    color: var(--grey-color, #5E6D77);
}

.item .content-item .service-location i {
    margin-right: 4px;
}

.item .content-item .car-equipments+.section-footer {
    margin-top: 15px;
}

.item .content-item .car-equipments+.section-footer .service-price .price {
    font-size: 18px;
    font-weight: 500;
}

.item .content-item .car-equipments+.section-footer .service-price .unit {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.item .section-footer .reviews .rate {
    color: var(--main-color, #5191FA);
    margin-right: 22px;
    position: relative;
}

.item .section-footer .reviews .rate:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 4px;
    top: 9px;
    right: -12px;
    background: #d0d7dd;
}

.item .section-footer .reviews .summary {
    color: #6a7a84;
}

.item .featured-image {
    position: relative;
}

.item .featured-image .featured {
    position: absolute;
    top: 25px;
    left: 0;
    padding: 5px 10px;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    border-radius: 0 3px 3px 0;
    z-index: 1;
}

.item .featured-image .wp-post-image {
    width: 100%;
}

.pagination {
    text-align: center;
    display: block;
    margin-top: 30px;
    margin-bottom: 0;
}

.pagination ul {
    display: inline-block;
    padding: 0;
    margin: 0;
}

.pagination ul li {
    list-style: none;
    font-size: 16px;
    color: #768090;
    float: left;
    margin-right: 10px;
}

.pagination ul li a,
.pagination ul li span {
    display: block;
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-decoration: none;
    color: var(--grey-color, #5E6D77);
}

.pagination ul li a.current,
.pagination ul li span.current {
    border: 1px solid var(--main-color, #1A2B48);
    border-radius: 3px;
    background: var(--main-color, #1A2B48);
    color: #FFF;
}

.pagination span.count-string {
    font-size: 14px;
    color: #768090;
    margin-top: 5px;
    display: block;
}

.panigation-list-new-style ul li a i {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.panigation-list-new-style span.count-string {
    display: none;
}

.toolbar-action {
    padding-left: 0;
    margin: 0;
    margin-top: 4px;
    padding: 0px;
    list-style: none;
}

.toolbar-action li .dropdown {
    margin-right: 15px;
}

.toolbar-action li .dropdown button {
    padding: 0;
    text-decoration: none;
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    outline: none;
}

.toolbar-action .sort-menu {
    padding: 15px;
    left: auto;
    right: 0;
}

.toolbar-action .sort-menu .sort-title {
    margin-bottom: 10px;
}

.toolbar-action .sort-menu .sort-title h3 {
    margin: 0;
    font-size: 14px;
    margin-bottom: 10px;
}

.toolbar-action .sort-menu .st-icheck-item:last-child {
    margin-bottom: 0;
}

.toolbar-action .sort-menu .sort-item span.title {
    color: #adb2bd;
    margin-bottom: 7px;
    display: block;
    margin-top: 10px;
}

.toolbar-action .layout-item {
    cursor: pointer;
    margin-left: 7px;
    float: left;
}

.toolbar-action .layout-item span.icon-normal {
    display: block;
}

.toolbar-action .layout-item span.icon-active {
    display: none;
}

.toolbar-action .layout-item.active span.icon-active {
    display: block;
}

.toolbar-action .layout-item.active span.icon-active g g {
    stroke: var(--main-color, #1A2B48);
}

.toolbar-action .layout-item.active .icon-normal {
    display: none;
}

.search-result-page .full-map {
    position: relative;
}

.search-result-page .full-map .search-form-wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    top: -43px;
    z-index: 9;
}

.search-result-page .full-map .search-form {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}

.search-result-page .full-map .search-form .field-advance .dropdown-menu {
    left: unset !important;
    top: 20px !important;
    right: unset !important;
}

@media screen and (max-width: 991px) {
    .search-result-page .full-map {
        display: none;
    }
    .search-result-page .full-map .search-form {
        display: none;
    }
    .search-result-page .full-map .title-map-mobile {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        padding: 21px 15px;
        z-index: 999999;
    }
    .search-result-page .full-map .title-map-mobile:before {
        content: "";
        width: 3px;
        height: 20px;
        background: var(--link-color, #5191FA);
        margin-right: 15px;
        float: left;
        position: relative;
        top: 1px;
    }
    .search-result-page .full-map .title-map-mobile .close-map {
        float: right;
        cursor: pointer;
        position: relative;
        top: 2px;
    }
    .search-result-page .full-map .full-map-form {
        position: fixed !important;
        top: 64px;
        left: 0;
        width: 100% !important;
        height: calc(100% - 64px) !important;
        z-index: 10;
    }
}

.search-result-page.st-style-elementor .banner h1 {
    color: #FFF;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 0px;
}

#st-content-wrapper.st-page-default .banner {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: auto !important;
}

#st-content-wrapper.st-page-default .banner .banner-content {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 767px) {
    #st-content-wrapper.st-page-default .banner .banner-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

#st-content-wrapper.search-result-page .banner {
    background-color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media (max-width: 767px) {
    #st-content-wrapper.search-result-page .banner {
        min-height: 250px;
        position: relative;
    }
}

#st-content-wrapper.search-result-page .banner .banner-content {
    z-index: 1;
    position: relative;
}

#st-content-wrapper.search-result-page .banner h1 {
    color: #fff;
    margin: 0px;
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 767px) {
    #st-content-wrapper.search-result-page .banner h1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    #st-content-wrapper.search-result-page .banner .banner-content {
        display: inline-block;
        width: 100%;
        position: relative;
        top: auto;
        transform: unset;
        z-index: 9;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        padding: 50px 0px;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile {
        width: auto;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .field-detination+.dropdown-menu {
        width: 100%;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu.show {
        display: block !important;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group {
        display: flex;
        margin-bottom: 0;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group .form-extra-field {
        width: 100%;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group .dropdown {
        width: 100%;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group .icon-field {
        position: absolute;
        left: 18px;
        top: 18px;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group input {
        cursor: pointer;
        border-radius: 3px 0 0 3px;
        font-size: 17px;
        color: var(--main-color, #5191FA);
        padding-left: 45px;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group .form-control {
        height: 57px;
        border: none;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .form-group input:read-only {
        background-color: #fff;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile button {
        border-radius: 0 3px 3px 0;
        font-size: 25px;
        background: var(--main-color, #5191FA);
        padding: 10px 20px;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu {
        padding: 10px;
        min-width: 100%;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu li {
        display: flex;
        justify-content: space-between;
        padding: 7px 0px;
        font-weight: 500;
        margin-bottom: 0 !important;
        overflow: hidden;
        position: relative;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu li.parent_li {
        padding: 6px 20px;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu li.parent_li span {
        font-size: 16px;
        width: 100%;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu li span {
        width: calc(100% - 25px);
        float: right;
        font-weight: 500;
    }
    #st-content-wrapper.search-result-page .banner .search-form-mobile .dropdown-menu li .fa {
        font-size: 18px;
        color: gray;
        position: unset;
        margin-top: 0;
    }
}

.st-results {
    margin-top: 43px;
}

.st-results .search-string {
    margin-bottom: 0px;
    color: var(--link-color, #1A2B48);
    font-weight: 400;
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .st-results .top-filter {
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        z-index: 999999;
        width: 100%;
        padding-top: 0 !important;
        height: 100%;
        overflow-y: auto;
        display: none;
    }
    .st-results .top-filter>ul {
        border: 1px solid #dfdfdf;
        border-radius: 3px;
        margin-bottom: 25px;
        width: 100%;
    }
    .st-results .top-filter>ul>li {
        display: block;
        width: 100%;
        padding: 20px 15px;
        border-bottom: 1px solid #dfdfdf;
        margin-right: 0px;
        position: relative;
    }
    .st-results .top-filter>ul>li span.close-filter {
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -12px;
        cursor: pointer;
        font-size: 16px;
    }
    .st-results .top-filter>ul>li button.dropdown {
        display: block;
    }
    .st-results .top-filter>ul>li button.dropdown .fa {
        display: none;
    }
    .st-results .top-filter>ul>li .dropdown-menu {
        position: relative;
        width: 100%;
        border: none;
        box-shadow: none;
        padding: 0 !important;
        margin-top: 15px !important;
        min-width: 200px !important;
    }
    .st-results .top-filter>ul>li .dropdown-menu {
        display: block !important;
        position: relative;
    }
    .st-results .top-filter>ul>li:last-child {
        border-bottom: none;
    }
    .st-results .top-filter .show-map {
        display: none;
    }
    .st-results .top-filter .show-map.show-map-on-mobile {
        display: block;
    }
}

.st-results .toolbar {
    margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
    .st-results .toolbar {
        text-align: center;
        display: block !important;
        margin-top: 0px;
    }
    .st-results .toolbar .toolbar-action-mobile {
        padding: 0;
        margin: 0;
        display: inline-block;
        flex-wrap: wrap;
    }
}

.st-results .toolbar .toolbar-action .dropdown {
    margin-right: 0px;
}

.st-results .filter-fullwidth .toolbar {
    margin-bottom: 30px;
    margin-top: 30px;
}

.st-results .sidebar-item {
    border: 1px solid #d7dce3;
    margin-bottom: 10px;
}

.st-results .sidebar-item .search-form-wrapper {
    position: relative;
    width: 100%;
    left: 0;
    z-index: 9;
}

.st-results .sidebar-item form .form-group {
    padding: 20px;
    border-bottom: 1px solid #dfdfdf;
}

@media screen and (min-width: 991px) {
    .st-results .sidebar-item form .form-group {
        border-left: none;
    }
}

.st-results .sidebar-item form .form-group.has-icon .field-icon .dropdown {
    padding-left: 35px;
}

.st-results .sidebar-item form .form-group .dropdown-menu {
    width: 100%;
}

.st-results .sidebar-item form .form-button {
    width: 100%;
    padding: 20px;
    display: block !important;
    height: auto;
    border-left: none;
}

.st-results .sidebar-item form .advance {
    height: auto;
    position: relative;
}

.st-results .sidebar-item form .advance .form-group {
    padding: 0px;
    border: none;
}

.st-results .sidebar-item form .advance .field-advance {
    position: unset;
    height: auto;
    text-align: right;
    margin-bottom: 20px;
    min-height: auto;
}

.st-results .sidebar-item form .advance .field-advance .render {
    color: var(--main-color, #5191FA);
    overflow: hidden;
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.st-results .sidebar-item form .advance .advance-item.st-icheck .item-content {
    overflow-y: scroll;
    outline: none;
    height: 200px;
    overflow-x: hidden;
    background: #FFFFFF;
    padding-bottom: 15px;
}

.st-results .sidebar-item form .advance .dropdown-menu {
    position: relative !important;
    width: 100%;
    min-width: auto !important;
    border: none;
    box-shadow: none;
    padding: 0;
}

.st-results .sidebar-item form .advance .dropdown-toggle {
    position: unset;
    transform: unset;
}

.st-results .sidebar-item form .btn-search {
    display: inline-block;
    width: 100%;
}

.st-results .search-form {
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    min-height: 85px;
}

.st-results .search-form .search-title {
    font-size: 20px;
    font-weight: 500;
    padding: 25px 20px;
    border-bottom: 1px solid #dfdfdf;
}

.st-results .search-form .search-title:before {
    content: "";
    width: 4px;
    height: 22px;
    background: var(--main-color, #5191FA);
    display: block;
    float: left;
    margin-right: 10px;
    position: relative;
    top: 4px;
}

.st-results h3.sidebar-title {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .st-results h3.sidebar-title {
        margin-top: 50px;
    }
}

.st-results h3.sidebar-title:before {
    content: "";
    width: 3px;
    height: 20px;
    background: var(--main-color, #5191FA);
    margin-right: 15px;
    float: left;
    position: relative;
    top: -1px;
}

@media (max-width: 767px) {
    .st-results h3.sidebar-title {
        padding: 20px 0px;
    }
    .st-results h3.sidebar-title .close-filter {
        float: right;
        cursor: pointer;
    }
}

@media (min-width: 992px) {
    .st-results .sidebar-filter h3.sidebar-title {
        margin-top: 50px;
    }
}

.st-results .sidebar-item {
    padding: 20px;
    border: 1px solid #d7dce3;
    margin-bottom: 10px;
}

.st-results .sidebar-item.sidebar-search-form {
    padding: 0px;
}

.st-results .sidebar-item.sidebar-search-form form {
    overflow: hidden;
}

.st-results .sidebar-item.sidebar-search-form form .border-right {
    padding-left: 15px;
    padding-right: 15px;
}

.st-results .sidebar-item .item-title h4 {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    float: left;
    line-height: 23px;
    margin: 0;
    font-weight: 500;
}

.st-results .sidebar-item .item-title i {
    font-size: 18px;
    color: var(--link-color, #1A2B48);
    cursor: pointer;
}

.st-results .sidebar-item.open i {
    transform: rotate(180deg);
}

.st-results .sidebar-item .btn-apply-price-range {
    font-size: 14px;
    color: var(--main-color, #5191FA);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
    outline: none;
    margin-top: 10px;
}

.st-results .sidebar-item .item-content {
    margin-top: 20px;
}

.st-results .sidebar-item .item-content .st-icheck-item {
    line-height: 16px;
}

.st-results .sidebar-item .item-content ul {
    list-style: none;
    padding: 0px;
}

.st-results .sidebar-item .item-content ul li:not(:first-child) {
    list-style: none;
    margin-top: 15px;
    display: block;
}

.st-results .sidebar-item .item-content ul ul {
    margin-top: 15px;
}

.st-results .sidebar-item .item-content .btn-more-item {
    font-size: 14px;
    color: var(--main-color, #5191FA);
    padding: 0;
    margin-top: 20px;
    text-decoration: none;
    display: none;
}

@media (max-width: 991px) {
    .st-results .sidebar-filter {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999999;
        overflow-y: auto;
        height: 100%;
    }
}

.st-results.tour-top-search .filter-fullwidth .toolbar {
    margin: 0px;
}

.st-results.tour-top-search .filter-fullwidth .form-extra-field {
    margin-right: 0px;
}

.st-results.tour-top-search .search-string {
    margin-top: 30px;
    padding-top: 30px;
}

@media screen and (max-width: 767px) {
    .st-results.tour-top-search .search-string {
        margin-top: 0px;
        padding-top: 0px;
        margin-bottom: 10px;
        display: inline-block;
        width: 100%;
    }
}

.st-results#sticky-halfmap .toolbar {
    margin-top: 30px;
}

.map-view-wrapper {
    padding: 0 !important;
}

.map-view-wrapper .map-view {
    min-height: 100px;
    width: 100%;
    line-height: 100px;
    color: var(--link-color, #1A2B48);
    background: url(../../v2/images/map-view.png) center center no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
}

.map-view-wrapper .map-view i {
    font-size: 22px;
    margin-right: 3px;
    color: #fa5535;
    position: relative;
    top: 2px;
}

.sidebar-item.pag .st-icheck-item {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    line-height: 21px;
    display: inline-block;
    align-items: center;
    width: 100%;
}

.search-form .field-advance .dropdown-menu {
    right: 0px !important;
}

.popup-date-custom {
    width: 100% !important;
    top: 66px !important;
    display: flex;
    z-index: 999999 !important;
    position: fixed;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.hidden {
    display: none !important;
}

#overlay {
    position: absolute;
    /* Sit on top of the page content */
    width: 100%;
    /* Full width (cover the whole page) */
    height: 100%;
    /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Black background with opacity */
    z-index: 0;
    /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer;
    /* Add a pointer on hover */
}

.toolbar-action-mobile {
    padding: 0;
    margin: 0;
    display: inline-block;
    margin-top: 30px;
}

.toolbar-action-mobile li {
    list-style: none;
    float: left;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.toolbar-action-mobile li a.btn-primary {
    background: transparent;
    color: #333;
    border: 1px solid #dfdfdf;
    padding: 8px 15px;
}

.map-view-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 999999;
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

.map-view-popup .view-map-inner {
    background: #fff;
    height: 100%;
    padding: 0 30px;
}

.map-view-popup .page-half-map {
    padding-bottom: 0;
    height: 100%;
}

.map-view-popup .map-full-height {
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .map-view-popup .top-filter {
        display: none !important;
    }
    .map-view-popup .map-view-popup {
        padding-top: 0;
        padding-bottom: 0;
        overflow-y: auto;
    }
    .map-view-popup .view-map-inner {
        overflow: hidden;
        width: 100%;
        padding: 0 15px;
    }
    .map-view-popup .page-half-map .col-right-map {
        height: 100%;
    }
    .map-view-popup .page-half-map .col-right-map .map-popup-title {
        font-size: 16px;
        padding: 25px 0px;
        border-bottom: 1px solid #dfdfdf;
        text-transform: uppercase;
    }
    .map-view-popup .page-half-map .col-right-map .map-popup-title:before {
        content: "";
        position: relative;
        height: 20px;
        width: 4px;
        background: #339bff;
        display: block;
        float: left;
        margin-right: 10px;
        top: 1px;
    }
    .map-view-popup .page-half-map .col-right-map .close-map-view-popup {
        cursor: pointer;
        float: right;
    }
    .map-view-popup .page-half-map .map-full-height {
        height: calc(100% - 54px) !important;
    }
}

.map-view-popup .page-half-map {
    height: calc(100% - 94px);
    padding-bottom: 10px;
    overflow: hidden;
}

.modern-search-result-popup .list-style {
    height: 70vh;
}

.list-style .item-service-inner {
    border: 1px solid #d7dce3;
    overflow: hidden;
    position: relative;
}

.list-style .item-service-inner .thumb {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.list-style .item-service-inner .thumb a {
    display: block;
    width: 100%;
}

.list-style .item-service-inner .thumb a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.list-style .item-service-inner .item-content {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 50%;
    margin-top: 0px;
}

.list-style .item-service-inner .booking-item-rating-stars {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.list-style .item-service-inner .booking-item-rating-stars span {
    display: none;
}

.list-style .item-service-inner .booking-item-rating-stars li {
    list-style: none;
    float: left;
    color: var(--orange-color, #FA5636);
    margin-right: 3px;
    margin-bottom: 0px;
}

.list-style .item-service-inner .service-title {
    margin-top: 10px;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 8px;
}

.list-style .item-service-inner .service-title a {
    color: #1a2b50;
}

.list-style .item-service-inner .service-tag.bestseller {
    background: #ed0925;
    border-radius: 0 8px 8px 0;
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 13px;
    color: #fff;
    border-radius: 0 3px 3px 0;
    font-weight: 500;
    z-index: 8;
}

.list-style .item-service-inner .service-tag.bestseller .feature_class {
    padding: 6px 10px;
}

.list-style .item-service {
    margin-bottom: 30px;
    margin-top: 0;
}

.list-style .item-service:last-child {
    margin-bottom: 0px;
}

.list-style .item-service img {
    transition: all 0.5s;
    min-width: 100%;
}

.list-style .item-service a:hover img {
    transform: scale(1.1);
}

.page-half-map.map-left .col-right {
    direction: rtl;
}

.page-half-map .service-review {
    margin-top: 19px;
    display: flex;
    align-items: center;
}

.page-half-map .service-review .rating {
    font-size: 14px;
    color: var(--main-color, #5191FA);
    margin-right: 10px;
}

.page-half-map .service-review .st-dot {
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background: #d0d7dd;
    display: block;
}

.page-half-map .service-review .review {
    margin-left: 10px;
    font-size: 14px;
    color: #6a7a84;
}

.page-half-map .service-price {
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.page-half-map .service-price span {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.page-half-map .service-price .price {
    font-size: 18px;
    color: #1a2b50;
    margin-left: 5px;
    margin-right: 5px;
}

.top-filter {
    padding: 30px 0;
    border-bottom: 1px solid #dfdfdf;
}

.top-filter ul {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.top-filter ul li {
    list-style: none;
    float: left;
    margin-right: 40px;
}

.top-filter ul li .title {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    margin: 0;
}

.top-filter ul li .title:before {
    content: "";
    height: 20px;
    width: 3px;
    background: var(--main-color, #5191FA);
    display: inline-block;
    margin-right: 15px;
    position: relative;
    top: 4px;
}

.top-filter ul li .form-extra-field button {
    padding: 0;
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    text-decoration: none;
    padding-top: 4px;
    outline: none;
}

.top-filter ul li .form-extra-field button .fa {
    color: var(--link-color, #1A2B48);
    font-size: 18px;
    position: relative;
    top: 2px;
}

.top-filter ul li .form-extra-field .dropdown-menu {
    min-width: 300px;
    padding: 20px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: scroll;
}

.top-filter ul li .form-extra-field .dropdown-menu::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

.top-filter ul li .form-extra-field .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #dedede;
    border: 2px solid #d3cbcb;
}

.top-filter ul li.filter-review-score ul li {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.top-filter ul li ul {
    display: inline-block;
    width: 100%;
}

.top-filter ul li li {
    margin-right: 0px;
    display: inline-block;
    width: 100%;
}

.top-filter .toolbar-intop .toolbar-action li {
    margin-right: 0px;
}

.map-view-popup .toolbar {
    padding-top: 15px;
    margin-bottom: 30px;
}

.map-view-popup .top-filter .close-map-view-popup {
    float: right;
    font-size: 17px;
    cursor: pointer;
}

.google-control-top-right-area {
    margin-top: 30px;
    margin-right: 10px;
    z-index: 9 !important;
}

.google-control-top-right-area .google-custom-control {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 3px;
    margin-bottom: 5px;
    background: #fff;
    color: var(--grey-color, #5E6D77);
    box-shadow: 0 1px 2px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.google-control-top-right-area .google-control-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    width: 121px;
    padding: 10px 0;
    border-radius: 3px;
    border: 1px solid #d2d2d2;
    background: #fff;
    text-align: right;
}

.google-control-top-right-area .google-control-dropdown .item {
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid var(--light-grey-color, #EAEEF3);
}

.google-control-top-right-area .google-control-dropdown.show {
    display: block;
}

.service-list-wrapper>[class*=col-] {
    margin-bottom: 25px;
}

.service-list-wrapper.list-style .item-tours .service-avatar {
    display: none;
}

.service-list-wrapper .item a.service-avatar {
    position: absolute;
    bottom: -16px;
    right: 20px;
    height: 35px;
    width: 35px;
    border: 1px solid #dfdfdf;
    border-radius: 50%;
}

.service-list-wrapper .item a.service-avatar img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-list-wrapper .item.item-tours .featured-image {
    overflow: initial;
}

.service-list-wrapper .item .featured-image {
    position: relative;
    overflow: hidden;
}

.service-list-wrapper .item .featured-image:hover img {
    transform: scale(1.1);
}

.service-list-wrapper .item .featured-image a {
    display: block;
    overflow: hidden;
}

.service-list-wrapper .item .featured-image a img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    border-radius: 3px;
    transition: all 0.3s;
}

.service-list-wrapper .item .st-stars {
    position: absolute;
    bottom: 15px;
    left: 15px;
}

.service-list-wrapper .item .st-stars i {
    cursor: pointer;
    font-size: 12px;
    color: #fa5636;
}

.service-list-wrapper .item h3.title {
    line-height: 25px;
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    margin-bottom: 2px;
    margin-top: 15px;
}

.service-list-wrapper .item h3.title a {
    color: var(--link-color, #1A2B48);
}

.service-list-wrapper .item .sub-title {
    font-size: 13px;
    color: var(--grey-color, #5E6D77);
}

.service-list-wrapper .item .section-footer .reviews {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
}

.service-list-wrapper .item .section-footer .reviews .rate {
    color: var(--main-color, #5191FA);
    margin-right: 22px;
    position: relative;
}

.service-list-wrapper .item .section-footer .reviews .summary {
    color: #6a7a84;
}

.service-list-wrapper .item .section-footer .price-wrapper {
    margin-top: 2px;
    font-weight: 400;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.service-list-wrapper .item .section-footer .price-wrapper .fa {
    margin-right: 5px;
}

.service-list-wrapper .item .section-footer .price-wrapper .price {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    margin-left: 5px;
}

.service-list-wrapper.list-style .service-tag.bestseller {
    top: 0px;
}

.service-list-wrapper.list-style .item-service-inner .item-content {
    position: unset;
    transform: unset;
    top: unset;
    left: unset;
}

.service-list-wrapper.list-style .item-service-inner .item-content .item-content-w {
    position: relative;
    width: 100%;
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .item-service-inner .item-content .item-content-w {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (min-width: 992px) {
    .service-list-wrapper.list-style .item-service-inner .item-content .item-content-w::after {
        content: "";
        width: 1px;
        height: 150px;
        background: #dfdfdf;
        position: absolute;
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
    }
}

.service-list-wrapper.list-style .item-service-inner .item-content .item-content-w ul.facilities {
    padding: 0px;
    list-style: none;
    position: relative;
    display: inline-block;
}

@media (min-width: 560px) and (max-width: 990px) {
    .service-list-wrapper.list-style .item-service-inner .item-content .item-content-w ul.facilities {
        display: none;
    }
}

.service-list-wrapper.list-style .item-service-inner .item-content .item-content-w ul.facilities li {
    float: left;
    margin-right: 7px;
    color: var(--grey-color, #5E6D77);
}

.service-list-wrapper.list-style .item-service-inner .item-content .item-content-w ul.facilities li:not(:first-child):before {
    content: "";
    height: 2px;
    width: 2px;
    display: inline-block;
    background: gray;
    vertical-align: middle;
    margin-right: 7px;
}

.service-list-wrapper.list-style .item-service-inner .service-location {
    margin-bottom: 0px;
}

.service-list-wrapper.list-style .item-service-inner .footer-flex {
    padding: 80px 15px;
}

@media screen and (max-width: 1200px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex {
        padding: 80px 15px 80px 0px;
    }
}

@media screen and (max-width: 1023px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex {
        padding: 30px 15px;
    }
}

@media screen and (max-width: 990px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex {
        padding: 10px 0px;
    }
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex {
        display: block !important;
    }
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .reviews {
    margin-top: 0px;
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .reviews {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .reviews .count-review {
    margin-right: 15px;
}

@media (min-width: 560px) and (max-width: 990px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .reviews .count-review {
        display: none;
    }
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .reviews .text-rating {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    display: block;
    text-align: right;
    font-weight: 500;
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .reviews .review {
    text-align: right;
    color: var(--main-color, #5191FA);
    display: block;
    margin-left: 0px;
    font-weight: 400;
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .reviews .review {
        display: inline-block !important;
    }
}

@media (min-width: 560px) and (max-width: 990px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .price-wrapper {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .price-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .rating {
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 500;
    background: var(--main-color, #5191FA);
    border-radius: 3px 3px 3px 0px;
    padding: 4px 8px;
    position: relative;
    min-width: 45px;
    text-align: center;
}

@media screen and (max-width: 1200px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .rating {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .item-service-inner .footer-flex .rating {
        background: transparent;
        color: var(--main-color, #5191FA);
    }
    .service-list-wrapper.list-style .item-service-inner .footer-flex .rating::after {
        display: none;
    }
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .rating small {
    font-weight: 400;
    font-size: 14px;
}

.service-list-wrapper.list-style .item-service-inner .footer-flex .rating:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    border-width: 10px 9px 0px 0;
    border-color: transparent var(--main-color, #5191FA) transparent transparent;
    right: 100%;
    bottom: 0;
}

@media (max-width: 767px) {
    .service-list-wrapper.list-style .booking-item-rating-stars {
        padding: 0;
        margin: 0;
        position: absolute;
        bottom: 12px;
        left: 14px;
        font-size: 14px;
    }
}

@media screen and (min-width: 991px) {
    .service-list-wrapper.page-half-map .modern-search-result {
        height: calc(100vh - 80px);
    }
    .service-list-wrapper.page-half-map .modern-search-result .item-content {
        position: absolute;
        transform: translateY(-50%);
        top: 50%;
        left: 50%;
        margin-top: 0px;
    }
}

@media screen and (max-width: 990px) {
    .service-list-wrapper.page-half-map .modern-search-result {
        overflow: hidden;
    }
}

.service-list-wrapper.page-half-map .modern-search-result .col-left {
    overflow: hidden;
    padding-right: 20px;
    height: 100%;
    float: left;
    outline: none;
}

.service-list-wrapper.page-half-map #map-search-form {
    height: 100%;
    width: calc(50vw - 25px);
}

.service-list-wrapper.page-half-map .map-title {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999999;
    padding: 25px 20px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.service-list-wrapper.page-half-map .map-title:before {
    content: "";
    height: 20px;
    width: 3px;
    background: var(--main-color, #5191FA);
    display: inline-block;
    margin-right: 15px;
    position: relative;
    top: 4px;
}

.service-list-wrapper.page-half-map .map-title span {
    float: right;
    cursor: pointer;
    position: relative;
    top: 2px;
}

@media (max-width: 991px) {
    .service-list-wrapper.page-half-map .map-full-height {
        width: 100%;
        position: fixed !important;
        top: 50px;
        left: 0;
        height: calc(100% - 54px);
        z-index: 9;
        background-color: #fff;
    }
    .service-list-wrapper.page-half-map .col-right {
        display: none;
    }
    .service-list-wrapper.page-half-map #map-search-form {
        width: 100%;
        height: 100%;
    }
}

#st-map .mapboxgl-popup {
    width: 240px;
}

#st-map .mapboxgl-popup .item-service-map {
    width: 100%;
}

.item-service-map {
    box-shadow: 5px 6px 13px 0px rgba(224, 220, 220, 0.3);
    border-radius: 3px;
    overflow: hidden;
    font-family: "Poppins", sans-serif;
}

.item-service-map .thumb {
    position: relative;
    overflow: hidden;
}

.item-service-map .thumb .service-tag {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 13px;
    color: #FFFFFF;
    border-radius: 0 3px 3px 0;
    font-weight: 500;
    z-index: 8;
}

.item-service-map .thumb .service-tag .feature_class {
    padding: 6px 10px;
    border-radius: 0 3px 3px 0;
}

.item-service-map .thumb .service-tag.bestseller {
    background: #ED0925 !important;
    border-radius: 0 4px 4px 0;
}

.item-service-map .thumb .service-tag.save {
    background: #9DD565 !important;
}

.item-service-map .thumb .service-star {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: var(--orange-color, #FA5636);
}

.item-service-map .thumb .booking-item-rating-stars {
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 12px;
    left: 14px;
}

.item-service-map .thumb .booking-item-rating-stars span {
    display: none;
}

.item-service-map .thumb .booking-item-rating-stars li {
    list-style: none;
    float: left;
    color: var(--orange-color, #FA5636);
    margin-right: 3px;
}

.item-service-map .thumb a {
    display: block;
    overflow: hidden;
}

.item-service-map .thumb a img {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    min-width: 100%;
    max-width: 100%;
}

.item-service-map .thumb a:hover img {
    transform: scale(1.1);
}

.item-service-map .thumb .close-popup-on-map {
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 8px;
    z-index: 9;
    font-size: 14px;
    color: #333;
}

.item-service-map .content {
    padding: 10px;
}

.item-service-map h4 {
    line-height: 26px;
    margin-bottom: 8px;
    margin-top: 0px;
}

.item-service-map h4.service-title {
    font-size: 16px;
}

.item-service-map h4.service-title a {
    color: #1A2B50;
}

.item-service-map p.service-location {
    font-size: 13px;
    color: var(--grey-color, #5E6D77);
}

.item-service-map .service-review {
    margin-top: 19px;
    display: flex;
    align-items: center;
}

.item-service-map .service-review .rating {
    font-size: 14px;
    color: var(--link-color, #5191FA);
    margin-right: 10px;
}

.item-service-map .service-review .st-dot {
    height: 4px;
    width: 4px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #D0D7DD;
    display: block;
}

.item-service-map .service-review .review {
    margin-left: 10px;
    font-size: 14px;
    color: #6A7A84;
}

.item-service-map .service-location .fa {
    position: relative;
    top: 3px;
    left: -2px;
}

.item-service-map .service-price {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.item-service-map .service-price span {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.item-service-map .service-price span.price {
    font-size: 18px;
    color: #1A2B50;
    margin-left: 5px;
    margin-right: 5px;
}

.item-service-map .service-price .fa {
    top: 3px;
    position: relative;
}

.item-service-map:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    border-width: 10px;
    border-color: transparent #fff #fff transparent;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 1px 1px 0px #dfdfdf;
    background: #fff;
}

.page-template-template-checkout .st-checkout-page {
    margin-top: 60px;
    margin-bottom: 60px;
}

.st-checkout-page h3.title,
.page-template-template-checkout-packages-new h3.title {
    margin: 0;
    color: var(--link-color, #1A2B48);
    font-size: 24px;
    font-weight: 500;
}

.st-checkout-page .check-out-form,
.page-template-template-checkout-packages-new .check-out-form {
    border-top: 2px solid #dae1e7;
    padding-top: 30px;
    margin-top: 20px;
}

.st-checkout-page .check-out-form .form-group label,
.page-template-template-checkout-packages-new .check-out-form .form-group label {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

.st-checkout-page .check-out-form .form-group label .require,
.page-template-template-checkout-packages-new .check-out-form .form-group label .require {
    color: red;
}

.st-checkout-page .check-out-form .form-group .fa,
.page-template-template-checkout-packages-new .check-out-form .form-group .fa {
    display: none;
}

.st-checkout-page .check-out-form .form-group .form-control,
.page-template-template-checkout-packages-new .check-out-form .form-group .form-control {
    border: 1px solid #dae1e7;
    border-radius: 8px;
    box-shadow: none;
    margin-bottom: 30px;
}

.st-checkout-page .check-out-form .form-group input,
.page-template-template-checkout-packages-new .check-out-form .form-group input {
    height: 50px;
}

.st-checkout-page .entry-content,
.page-template-template-checkout-packages-new .entry-content {
    margin-bottom: 20px;
}

.st-checkout-page .payment-form .payment-item,
.page-template-template-checkout-packages-new .payment-form .payment-item {
    margin-bottom: 35px;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.st-checkout-page .payment-form .dropdown,
.page-template-template-checkout-packages-new .payment-form .dropdown {
    width: 100%;
}

.st-checkout-page .payment-form .st-icheck-item,
.page-template-template-checkout-packages-new .payment-form .st-icheck-item {
    padding-left: 0;
}

.st-checkout-page .payment-form .st-icheck-item label,
.page-template-template-checkout-packages-new .payment-form .st-icheck-item label {
    display: flex;
    align-items: center;
}

.st-checkout-page .payment-form .st-icheck-item .check-payment,
.page-template-template-checkout-packages-new .payment-form .st-icheck-item .check-payment {
    position: relative;
    overflow: hidden;
    height: 16px;
    width: 16px;
    float: left;
    margin-right: 15px;
}

.st-checkout-page .payment-form .st-icheck-item .checkmark,
.page-template-template-checkout-packages-new .payment-form .st-icheck-item .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #a0a9b2;
}

.st-checkout-page .payment-form .st-icheck-item .payment-title,
.page-template-template-checkout-packages-new .payment-form .st-icheck-item .payment-title {
    min-width: 140px;
    display: inline-block;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.st-checkout-page .payment-form .st-icheck-item img,
.page-template-template-checkout-packages-new .payment-form .st-icheck-item img {
    max-height: 60px;
    max-width: 50%;
}

.st-checkout-page .payment-form .dropdown-menu,
.page-template-template-checkout-packages-new .payment-form .dropdown-menu {
    width: 100%;
    margin-top: 30px;
    border: 2px solid #d7dce3;
    border-radius: 8px;
    box-shadow: none;
    position: relative;
    padding: 25px 15px;
}

.st-checkout-page .payment-form .dropdown-menu:before,
.page-template-template-checkout-packages-new .payment-form .dropdown-menu:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    border-width: 10px;
    border-color: transparent #fff #fff transparent;
    top: -8px;
    left: 30px;
    right: 0;
    transform: rotate(225deg);
    box-shadow: 2px 2px 0 #dfdfdf;
}

.st-checkout-page .btn-checkout,
.page-template-template-checkout-packages-new .btn-checkout {
    padding-left: 50px;
    padding-right: 50px;
    font-size: 14px;
    color: #fff;
    margin-top: 30px;
}

.st-checkout-page .btn-checkout .fa,
.page-template-template-checkout-packages-new .btn-checkout .fa {
    display: none;
    margin-left: 10px;
}

.st-checkout-page .submit_payment .fa,
.page-template-template-checkout-packages-new .submit_payment .fa {
    display: none;
    margin-left: 10px;
}

.st-checkout-page .cart-info,
.page-template-template-checkout-packages-new .cart-info {
    border: 1px solid #d7dce3;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.st-checkout-page .cart-info .service-section,
.page-template-template-checkout-packages-new .cart-info .service-section {
    padding: 30px;
    border-bottom: 1px solid #eaeef3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.st-checkout-page .cart-info .service-section .service-left .title,
.page-template-template-checkout-packages-new .cart-info .service-section .service-left .title {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    margin-right: 10px;
}

.st-checkout-page .cart-info .service-section .service-left .title a,
.page-template-template-checkout-packages-new .cart-info .service-section .service-left .title a {
    color: var(--link-color, #1A2B48);
}

.st-checkout-page .cart-info .service-section .service-left .address,
.page-template-template-checkout-packages-new .cart-info .service-section .service-left .address {
    color: var(--grey-color, #5E6D77);
    margin-bottom: 0;
}

.st-checkout-page .cart-info .service-section .service-left .address .field-icon,
.page-template-template-checkout-packages-new .cart-info .service-section .service-left .address .field-icon {
    position: relative;
    top: 2px;
    left: -2px;
}

.st-checkout-page .cart-info .coupon-section,
.st-checkout-page .cart-info .info-section,
.st-checkout-page .cart-info .cart-info,
.page-template-template-checkout-packages-new .cart-info .coupon-section,
.page-template-template-checkout-packages-new .cart-info .info-section,
.page-template-template-checkout-packages-new .cart-info .cart-info {
    padding: 30px;
    border-bottom: 1px solid #eaeef3;
}

.st-checkout-page .cart-info .info-section ul,
.page-template-template-checkout-packages-new .cart-info .info-section ul {
    padding: 0;
    margin: 0;
}

.st-checkout-page .cart-info .info-section ul li,
.page-template-template-checkout-packages-new .cart-info .info-section ul li {
    list-style: none;
    font-size: 14px;
    margin-bottom: 13px;
    overflow: hidden;
}

.st-checkout-page .cart-info .info-section ul li .label,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .label {
    color: var(--link-color, #1A2B48);
    font-size: 100%;
    width: 40%;
    display: inline-block;
    text-align: left;
    padding: 0;
    white-space: normal;
    line-height: 18px;
    font-weight: 400;
}

.st-checkout-page .cart-info .info-section ul li .value,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .value {
    justify-items: right;
    font-size: 100%;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
    float: right;
    width: 60%;
}

.st-checkout-page .cart-info .info-section ul li.ad-info,
.page-template-template-checkout-packages-new .cart-info .info-section ul li.ad-info {
    margin-top: 10px;
}

.st-checkout-page .cart-info .info-section ul li.ad-info ul,
.page-template-template-checkout-packages-new .cart-info .info-section ul li.ad-info ul {
    background: #f5f5f5;
    border-radius: 3px;
    padding: 20px;
    width: 100%;
}

.st-checkout-page .cart-info .info-section ul li.ad-info ul li,
.page-template-template-checkout-packages-new .cart-info .info-section ul li.ad-info ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeef3;
}

.st-checkout-page .cart-info .info-section ul li.ad-info ul li .label,
.page-template-template-checkout-packages-new .cart-info .info-section ul li.ad-info ul li .label {
    color: var(--link-color, #1A2B48);
    font-size: 100%;
    padding: 0;
    width: 60%;
    font-weight: 400;
}

.st-checkout-page .cart-info .info-section ul li.ad-info ul li .value,
.page-template-template-checkout-packages-new .cart-info .info-section ul li.ad-info ul li .value {
    justify-items: right;
    font-size: 100%;
    color: var(--grey-color, #5E6D77);
    width: 40%;
    font-weight: 400;
}

.st-checkout-page .cart-info .info-section ul li .detail .btn,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .detail .btn {
    background: 0 0;
    color: var(--main-color, #5191FA);
    margin-left: 35%;
    padding: 0;
    margin-bottom: 10px;
    margin-top: 5px;
    outline: none;
    font-size: 14px;
}

.st-checkout-page .cart-info .info-section ul li .detail .detail-list,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .detail .detail-list {
    display: none;
    margin-bottom: 20px;
}

.st-checkout-page .cart-info .info-section ul li .detail .detail-list span,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .detail .detail-list span {
    padding: 0 5px;
}

.st-checkout-page .cart-info .info-section ul li .detail .detail-list li,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .detail .detail-list li {
    border-bottom: 1px solid #dfdfdf;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-weight: 400;
    padding: 10px 0;
}

.st-checkout-page .cart-info .info-section ul li .detail .detail-list li.head,
.page-template-template-checkout-packages-new .cart-info .info-section ul li .detail .detail-list li.head {
    font-weight: 500;
    padding: 10px 0 7px;
    background-color: #f5f5f5;
    margin-bottom: 0;
}

.st-checkout-page .cart-info .coupon-section h5,
.page-template-template-checkout-packages-new .cart-info .coupon-section h5 {
    color: var(--link-color, #1A2B48);
    margin-bottom: 20px;
    font-weight: 400;
}

.st-checkout-page .cart-info .coupon-section form .form-group,
.page-template-template-checkout-packages-new .cart-info .coupon-section form .form-group {
    margin-bottom: 0;
    display: block;
    width: 100%;
}

.st-checkout-page .cart-info .coupon-section form .form-group input[type=text],
.page-template-template-checkout-packages-new .cart-info .coupon-section form .form-group input[type=text] {
    border: 1px solid #eaeef3;
    border-radius: 3px;
    width: 66%;
    margin-right: 5px;
    padding: 10px;
}

.st-checkout-page .cart-info .coupon-section form .form-group .btn,
.page-template-template-checkout-packages-new .cart-info .coupon-section form .form-group .btn {
    width: 30%;
    background: var(--main-color, #5191FA);
    border-radius: 3px;
    padding: 10px;
    float: right;
    font-size: 14px;
}

.st-checkout-page .cart-info .total-section,
.page-template-template-checkout-packages-new .cart-info .total-section {
    padding: 30px;
}

.st-checkout-page .cart-info .total-section ul,
.page-template-template-checkout-packages-new .cart-info .total-section ul {
    padding: 0;
    margin: 0;
}

.st-checkout-page .cart-info .total-section ul li,
.page-template-template-checkout-packages-new .cart-info .total-section ul li {
    list-style: none;
    display: flex;
    font-size: 14px;
    margin-bottom: 13px;
    justify-content: space-between;
}

.st-checkout-page .cart-info .total-section ul li .label,
.page-template-template-checkout-packages-new .cart-info .total-section ul li .label {
    color: var(--link-color, #1A2B48);
    font-size: 100%;
    padding: 0;
    text-align: left;
    font-weight: 400;
}

.st-checkout-page .cart-info .total-section ul li .value,
.page-template-template-checkout-packages-new .cart-info .total-section ul li .value {
    justify-items: right;
    font-size: 100%;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
}

.st-checkout-page .cart-info .total-section ul li.payment-amount,
.page-template-template-checkout-packages-new .cart-info .total-section ul li.payment-amount {
    font-size: 18px;
}

.st-checkout-page .booking-success-notice,
.page-template-template-checkout-packages-new .booking-success-notice {
    margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
    .st-checkout-page .booking-success-notice,
    .page-template-template-checkout-packages-new .booking-success-notice {
        margin-bottom: 60px;
    }
}

.st-checkout-page .booking-success-notice .col-left,
.page-template-template-checkout-packages-new .booking-success-notice .col-left {
    display: flex;
    align-items: center;
}

.st-checkout-page .booking-success-notice .notice-success,
.page-template-template-checkout-packages-new .booking-success-notice .notice-success {
    margin-left: 20px;
}

.st-checkout-page .booking-success-notice .notice-success .line1,
.page-template-template-checkout-packages-new .booking-success-notice .notice-success .line1 {
    margin-bottom: 0;
    font-size: 24px;
    color: #00001e;
    line-height: 35px;
}

.st-checkout-page .booking-success-notice .notice-success .line1 span,
.page-template-template-checkout-packages-new .booking-success-notice .notice-success .line1 span {
    color: var(--link-color, #1A2B48);
    font-weight: 600;
}

.st-checkout-page .booking-success-notice .notice-success .line2,
.page-template-template-checkout-packages-new .booking-success-notice .notice-success .line2 {
    font-size: 16px;
    color: var(--grey-color, #5E6D77);
    margin-bottom: 0;
}

.st-checkout-page .booking-success-notice .notice-success .line2 span,
.page-template-template-checkout-packages-new .booking-success-notice .notice-success .line2 span {
    font-size: 16px;
    color: #000;
}

.st-checkout-page .booking-success-notice .booking-info-detail,
.page-template-template-checkout-packages-new .booking-success-notice .booking-info-detail {
    padding: 0;
    margin: 0;
    border-left: 3px solid var(--main-color, #5191FA);
    padding-left: 30px;
}

.st-checkout-page .booking-success-notice .booking-info-detail li,
.page-template-template-checkout-packages-new .booking-success-notice .booking-info-detail li {
    list-style: none;
    font-size: 16px;
    color: #818181;
    padding: 5px 0;
}

.st-checkout-page .booking-success-notice .booking-info-detail li span,
.page-template-template-checkout-packages-new .booking-success-notice .booking-info-detail li span {
    font-weight: 500;
    color: #000;
}

.st-checkout-page .info-form,
.page-template-template-checkout-packages-new .info-form {
    border: 1px solid #d7dce3;
    padding: 30px;
    margin-top: 20px;
}

.st-checkout-page .info-form ul,
.page-template-template-checkout-packages-new .info-form ul {
    padding: 0;
    margin: 0;
}

.st-checkout-page .info-form ul li,
.page-template-template-checkout-packages-new .info-form ul li {
    list-style: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #dae1e7;
    display: flex;
}

.st-checkout-page .info-form ul li span,
.page-template-template-checkout-packages-new .info-form ul li span {
    padding: 0;
}

.st-checkout-page .info-form ul li span.label,
.page-template-template-checkout-packages-new .info-form ul li span.label {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    width: 40%;
    display: inline-block;
    text-align: left;
    font-weight: 400;
}

.st-checkout-page .info-form ul li span.value,
.page-template-template-checkout-packages-new .info-form ul li span.value {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    width: 60%;
    display: inline-block;
}

.woocommerce img,
.woocommerce-page img {
    height: auto;
    max-width: 100%;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    width: 100%;
}

.woocommerce .st-woo-cartpage,
.woocommerce .st-coupon-wrapper,
.woocommerce .st-woo-thankyou-page,
.woocommerce-page .st-woo-cartpage,
.woocommerce-page .st-coupon-wrapper,
.woocommerce-page .st-woo-thankyou-page {
    padding: 60px 0 0;
}

.woocommerce .st-woo-heading,
.woocommerce-page .st-woo-heading {
    margin: 0;
    color: var(--link-color, #1A2B48);
    font-size: 24px;
    font-weight: 500;
}

.woocommerce img,
.woocommerce-page img {
    height: auto;
    max-width: 100%;
}

.woocommerce table.cart .product-thumbnail,
.woocommerce-page table.cart .product-thumbnail {
    vertical-align: top;
}

.woocommerce table.cart .product-thumbnail img,
.woocommerce-page table.cart .product-thumbnail img {
    width: 100px;
}

@media screen and (max-width: 768px) {
    .woocommerce table.cart .product-thumbnail,
    .woocommerce-page table.cart .product-thumbnail {
        width: 100%;
        display: block;
    }
    .woocommerce table.cart .product-thumbnail:before,
    .woocommerce-page table.cart .product-thumbnail:before {
        display: none;
    }
    .woocommerce table.cart .product-thumbnail img,
    .woocommerce-page table.cart .product-thumbnail img {
        width: 100%;
    }
}

.woocommerce .booking-list,
.woocommerce-page .booking-list {
    border-top: 2px solid #dae1e7;
    margin-top: 20px !important;
    padding-left: 0;
}

.woocommerce .booking-list .product-remove,
.woocommerce-page .booking-list .product-remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.woocommerce .booking-list .cart_item,
.woocommerce-page .booking-list .cart_item {
    list-style: none;
}

@media screen and (min-width: 768px) {
    .woocommerce .booking-list .cart_item,
    .woocommerce-page .booking-list .cart_item {
        margin-bottom: 25px;
        padding-bottom: 30px;
    }
}

.woocommerce .booking-list .cart_item:last-child,
.woocommerce-page .booking-list .cart_item:last-child {
    border: none;
    padding-bottom: 0;
}

.woocommerce .booking-list .cart_item .booking-item-wishlist-title,
.woocommerce-page .booking-list .cart_item .booking-item-wishlist-title {
    border-bottom: 2px solid var(--main-color, #5191FA);
    display: inline-block;
    text-transform: capitalize;
}

@media screen and (min-width: 768px) {
    .woocommerce .booking-list .cart_item .booking-item-wishlist-title,
    .woocommerce-page .booking-list .cart_item .booking-item-wishlist-title {
        margin-bottom: 10px;
    }
}

.woocommerce .booking-list .cart_item .booking-item-wishlist-remove,
.woocommerce-page .booking-list .cart_item .booking-item-wishlist-remove {
    margin-left: 10px;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    top: 1px;
}

.woocommerce .booking-list .cart_item .booking-item-title,
.woocommerce-page .booking-list .cart_item .booking-item-title {
    margin-top: 0;
    font-size: 16px;
    line-height: 20px;
}

.woocommerce .booking-list .cart_item .booking-item-title a,
.woocommerce-page .booking-list .cart_item .booking-item-title a {
    color: var(--main-color, #5191FA);
}

@media screen and (min-width: 768px) {
    .woocommerce .booking-list .cart_item .booking-item-address,
    .woocommerce-page .booking-list .cart_item .booking-item-address {
        display: flex;
        align-items: center;
    }
}

.woocommerce .booking-list .cart_item .booking-item-address i,
.woocommerce-page .booking-list .cart_item .booking-item-address i {
    margin-right: 4px;
}

.woocommerce .booking-list .cart_item .booking-cart-item-title,
.woocommerce-page .booking-list .cart_item .booking-cart-item-title {
    font-weight: 500;
}

.woocommerce .booking-list .cart_item .booking-item-price,
.woocommerce-page .booking-list .cart_item .booking-item-price {
    color: var(--link-color, #1A2B48);
    font-size: 20px;
}

.woocommerce table.cart td.actions .coupon .input-text,
.woocommerce-page table.cart td.actions .coupon .input-text {
    border: 1px solid #eaeef3;
    border-radius: 8px;
    margin-right: 5px;
    padding: 15px 10px;
    min-width: 180px;
    margin-bottom: 7px;
}

.woocommerce .wc-proceed-to-checkout .checkout-button,
.woocommerce-page .wc-proceed-to-checkout .checkout-button {
    background: var(--main-color, #5191FA) !important;
    border-radius: 8px;
    padding: 15px 10px;
    line-height: 18px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    color: #FFF;
}

.woocommerce .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-page .wc-proceed-to-checkout .checkout-button:hover {
    background: #4977fa !important;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
    border: 1px solid #d7dce3;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    padding: 30px;
}

.woocommerce .cart-collaterals tbody:first-child tr:first-child th,
.woocommerce-page .cart-collaterals tbody:first-child tr:first-child th {
    border-top: 0;
}

.woocommerce .cart-collaterals .shop_table td,
.woocommerce-page .cart-collaterals .shop_table td {
    padding: 0 0 15px;
    border: none;
}

.woocommerce .cart-collaterals .shop_table th,
.woocommerce-page .cart-collaterals .shop_table th {
    color: var(--link-color, #1A2B48);
    font-size: 100%;
    padding: 0;
    text-align: left;
    font-weight: 400;
}

.woocommerce .cart-collaterals .shop_table td,
.woocommerce-page .cart-collaterals .shop_table td {
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
    text-align: right;
}

.woocommerce .cart-collaterals table,
.woocommerce .cart-collaterals .order-total th,
.woocommerce .cart-collaterals .order-total td,
.woocommerce-page .cart-collaterals table,
.woocommerce-page .cart-collaterals .order-total th,
.woocommerce-page .cart-collaterals .order-total td {
    border: none !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row {
    width: 50%;
    float: left;
    clear: none;
    padding: 5px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row#billing_address_1_field {
    clear: both;
}

.woocommerce-checkout .st-woo-heading {
    margin: 0;
    color: var(--link-color, #1A2B48);
    font-size: 24px;
    font-weight: 500;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border: 1px solid #d7dce3;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 20px;
    padding: 30px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header {
    border-bottom: 1px solid #eaeef3;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header .col-left {
    width: 100%;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header .col-left .booking-item-payment-title {
    font-size: 16px;
    line-height: 25px;
    font-weight: 450;
    margin-top: 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header .col-left .booking-item-payment-title a {
    color: var(--link-color, #1A2B48);
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header .col-left .address {
    color: var(--grey-color, #5E6D77);
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header .col-left .address i {
    margin-right: 4px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table header .booking-item-payment-img {
    width: 120px;
    margin-left: 10px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-details {
    padding: 0;
    list-style: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-details li .booking-item-payment-price {
    padding: 0;
    overflow: hidden;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-details li .booking-item-payment-price li {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-details li .booking-item-payment-price li .booking-item-payment-price-title {
    display: block;
    float: left;
    color: var(--link-color, #1A2B48);
    font-size: 100%;
    padding: 0;
    text-align: left;
    font-weight: 400;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-details li .booking-item-payment-price li .booking-item-payment-price-amount {
    display: inline-block;
    font-size: 100%;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-total {
    margin-bottom: 0;
    color: var(--link-color, #1A2B48);
    padding: 0;
    text-align: left;
    font-weight: 400;
    font-size: 18px;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-total span {
    float: right;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table .booking-item-payment-total span strong {
    font-weight: 500;
}

.woocommerce-checkout .woocommerce-input-wrapper input,
.woocommerce-checkout .woocommerce-input-wrapper .select2-container .select2-selection {
    border: 1px solid #dae1e7;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    height: 38px;
}

.woocommerce-checkout .woocommerce-input-wrapper input .select2-selection__rendered,
.woocommerce-checkout .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered {
    line-height: 1;
}

.woocommerce-checkout .woocommerce-input-wrapper .select2-selection__arrow {
    height: 100%;
}

.woocommerce-checkout #place_order {
    background: var(--main-color, #5191FA) !important;
    border-radius: 8px;
    padding: 15px 10px;
    line-height: 18px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}

.woocommerce-checkout #place_order:hover {
    background: #4977fa !important;
}

.woocommerce-checkout .st-woo-checkout-form .woocommerce-billing-fields__field-wrapper {
    border-top: 2px solid #dae1e7;
    padding-top: 30px;
    margin-top: 20px;
}

.woocommerce-checkout h3 {
    margin: 0;
    color: var(--link-color, #1A2B48);
    font-size: 24px;
    font-weight: 500;
}

.st-woo-thankyou-page .box-icon-success {
    height: 65px;
    width: 65px;
    background: #1cd81c !important;
    border-radius: 50%;
    color: #fff;
    line-height: 65px;
    font-size: 40px;
    text-align: center;
    display: block;
    margin: auto;
}

.st-woo-thankyou-page .box-icon-success+h2 {
    margin-top: 20px;
}

.st-woo-thankyou-page .box-icon-success+h2+h5 {
    font-size: 14px;
}

.st-woo-thankyou-page header h2 {
    margin: 0;
    color: var(--link-color, #1A2B48);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.st-woo-thankyou-page .order-payment-list {
    padding: 0;
}

.st-woo-thankyou-page .order-payment-list .order_item {
    list-style: none;
    border-bottom: 1px dashed #dfdfdf;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.st-woo-thankyou-page .order-payment-list .order_item h5 {
    font-size: 16px;
}

.st-woo-thankyou-page .order-payment-list .order_item a {
    color: var(--main-color, #5191FA);
}

.st-woo-thankyou-page .order-payment-list .order_item .order-item-meta-box li {
    font-size: 14px;
}

.st-woo-thankyou-page .text-right .text-lg {
    font-size: 18px;
    font-weight: 450;
}

.st-woo-thankyou-page .woocommerce table.shop_table {
    border-radius: 8px;
}

.btn-st-checkout-submit .fa {
    display: none;
    margin-left: 10px;
}

.btn-st-checkout-submit.loading .fa {
    display: inline-block;
}

.blog-header {
    padding-top: 60px;
    padding-bottom: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.blog-header .blog-header-title {
    margin: 0;
    color: #fff;
    font-size: 36px;
    font-weight: 500;
}

.st-blog {
    padding: 60px 0 0;
}

.st-blog .content .article {
    margin-bottom: 40px;
}

.st-blog .content .article .cate {
    position: absolute;
    top: 30px;
    left: 30px;
    overflow: hidden;
}

.st-blog .content .article .cate ul {
    padding: 0;
    margin: 0;
}

.st-blog .content .article .cate ul a {
    color: #fff;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
}

.st-blog .content .article .media-responsive iframe {
    width: 100%;
    height: 450px;
}

.st-blog .content .header {
    position: relative;
    padding: 0px;
    border: none;
}

.st-blog .content img {
    max-width: 100%;
    height: auto;
}

.st-blog .content .post-header img {
    width: 100%;
}

.st-blog .title,
.st-blog .post-title {
    line-height: 1.3;
    font-weight: 500;
    margin-top: 30px;
    color: var(--link-color, #1A2B48);
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    .st-blog .title,
    .st-blog .post-title {
        font-size: 18px;
    }
}

.st-blog .post-title a {
    color: var(--link-color, #1A2B48);
}

.st-blog .post-inner .meta {
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .st-blog .post-inner .meta {
        margin-bottom: 15px;
    }
}

.st-blog .post-inner .meta ul {
    padding: 0;
    margin: 0;
    display: flex;
}

@media screen and (max-width: 768px) {
    .st-blog .post-inner .meta ul {
        display: block;
    }
}

.st-blog .post-inner .meta ul li {
    list-style: none;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    text-transform: uppercase;
    font-weight: 500;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .st-blog .post-inner .meta ul li {
        font-size: 12px;
    }
}

.st-blog .post-inner .meta ul li img {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    margin-right: 12px;
}

.st-blog .post-inner .meta ul li a {
    text-decoration: none;
    color: var(--link-color, #1A2B48);
}

.st-blog .post-inner .meta ul li:after {
    content: "";
    height: 6px;
    width: 6px;
    background: #eee;
    margin-left: 12px;
    border-radius: 50%;
}

.st-blog .post-inner .btn-readmore {
    font-size: 14px;
    color: var(--main-color, #5191FA);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .st-blog .post-inner .btn-readmore {
        margin-top: 15px;
    }
}

.search-result-page .banner {
    height: unset !important;
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog-content .post-info,
.st-blog .post-info {
    margin-top: 15px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
}

.blog-content .post-info .date,
.st-blog .post-info .date {
    position: relative;
    color: var(--grey-color, #5E6D77);
    margin-right: 30px;
}

.blog-content .post-info .count-comment,
.st-blog .post-info .count-comment {
    color: var(--link-color, #1A2B48);
}

.blog-content .post-content,
.st-blog .post-content {
    margin-top: 30px;
    color: var(--grey-color, #5E6D77);
    font-size: 15px;
}

.blog-content .st-flex,
.st-blog .st-flex {
    margin-top: 30px;
}

.blog-content .author-info,
.st-blog .author-info {
    margin-top: 40px;
    padding: 30px;
    border: 1px solid #d7dce3;
}

.blog-content .author-info .media .media-left,
.st-blog .author-info .media .media-left {
    padding-right: 30px;
    max-width: 100px;
    display: inline-block;
}

.blog-content .author-info .media .media-left .avatar,
.st-blog .author-info .media .media-left .avatar {
    border-radius: 50%;
}

.blog-content .author-info .media .media-left img,
.st-blog .author-info .media .media-left img {
    width: 100%;
    height: auto;
}

.blog-content .author-info .media .media-body .media-heading,
.st-blog .author-info .media .media-body .media-heading {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.blog-content .pagination,
.st-blog .pagination {
    margin-top: 40px !important;
}

.blog-content .pagination .screen-reader-text,
.st-blog .pagination .screen-reader-text {
    display: none;
}

.blog-content .pagination .nav-previous,
.st-blog .pagination .nav-previous {
    float: left;
}

.blog-content .pagination .nav-next,
.st-blog .pagination .nav-next {
    float: right;
}

.blog-content .pagination a,
.st-blog .pagination a {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: var(--link-color, #1A2B48);
}

.blog-content .pagination a .fa-angle-left,
.st-blog .pagination a .fa-angle-left {
    margin-right: 10px;
}

.blog-content .pagination a .fa-angle-right,
.st-blog .pagination a .fa-angle-right {
    margin-left: 10px;
}

.single .tags-share {
    margin-top: 30px;
}

.single .tags .tag-item {
    color: var(--link-color, #1A2B48);
    font-size: 11px;
    padding: 8px 20px;
    background: #f7f6f6;
    margin-right: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 500;
}

.single .share {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
}

.single .share .share-item {
    margin-left: 8px;
    margin-right: 8px;
    color: var(--grey-color, #5E6D77);
}

.single #comment-wrapper {
    margin-top: 10px;
}

.single #comment-wrapper .title {
    padding-bottom: 15px;
    border-bottom: 2px solid #d7dce3;
    font-size: 18px;
    color: var(--grey-color, #5E6D77);
}

.single #comment-wrapper ol {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.single #comment-wrapper ol li {
    padding-top: 30px;
    padding-bottom: 30px;
}

.single #comment-wrapper ol li .comment {
    margin-bottom: 0;
}

.single #comment-wrapper ol li .media {
    display: flex;
    align-items: center;
}

.single #comment-wrapper ol li .media .media-left {
    padding-right: 20px;
}

.single #comment-wrapper ol li .media .media-left .avatar {
    border-radius: 50%;
}

.single #comment-wrapper ol li .media-body .media-heading {
    font-weight: 500;
    color: var(--link-color, #1A2B48);
    font-size: 14px;
}

.single #comment-wrapper ol li .media-body .date {
    font-size: 14px;
    color: #adb5c3;
}

.single #comment-wrapper ol li .comment-content {
    margin-top: 30px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.single #comment-wrapper ol li .comment-reply-link {
    margin-top: 10px;
    font-size: 14px;
    color: var(--main-color, #5191FA);
    text-transform: uppercase;
    font-weight: 500;
}

.single #respond {
    margin-top: 30px;
    padding: 30px;
    border: 1px solid #d7dce3;
    border-radius: 8px;
}

.single #respond .comment-reply-title {
    margin: 0;
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    text-transform: uppercase;
}

.single #respond .comment-notes {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    margin-top: 10px;
}

.single #respond .form-control {
    height: 50px;
    margin-top: 15px;
    box-shadow: none;
    border: 1px solid #dae1e7;
    border-radius: 8px;
}

.single #respond textarea {
    min-height: 140px;
    width: 100%;
    display: block;
    resize: none;
}

.single #respond .submit {
    border-radius: 5px;
    color: #fff;
    margin-top: 35px;
    border: none;
    box-shadow: none;
    font-size: 14px;
    background: var(--main-color, #5191FA);
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.sidebar-widget.widget_block h2 {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    background-color: #fff;
    position: relative;
    display: inline-block;
    z-index: 9;
    padding-right: 25px;
    margin: 0px 0px 20px 0px;
}

.sidebar-widget.widget_block .wp-block-search .wp-block-search__inside-wrapper {
    border-radius: 3px 0 0 3px;
    border: 1px solid #d7dce3;
}

.sidebar-widget.widget_block .wp-block-search input {
    height: 40px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-style: italic;
    border: none;
}

.sidebar-widget.widget_block .wp-block-search button {
    height: 40px;
    background: transparent;
    border: none;
    width: 40px;
    text-align: center;
}

.sidebar-widget.widget_block.widget_media_image img {
    width: 100%;
}

.widget_tag_cloud .wp-block-tag-cloud a {
    font-size: 11px !important;
    color: var(--link-color, #1A2B48) !important;
    font-weight: 500;
    background: #f7f6f6 !important;
    border-radius: 3px;
    padding: 9px 20px;
    display: inline-block;
    margin-bottom: 10px;
    margin-right: 10px;
    text-transform: uppercase;
}

.page-template-template-blank #st-content-wrapper {
    padding-bottom: 0px;
}

.st-404-page {
    padding: 60px 0;
    text-align: center;
}

.st-404-page h1 {
    font-size: 48px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    margin-top: 0;
}

.st-404-page h3 {
    font-size: 16px;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
    margin-bottom: 60px;
    margin-top: 10px;
}

.st-404-page img {
    margin-bottom: 50px;
    max-width: 100%;
}

.st-404-page p {
    font-size: 18px;
    color: var(--grey-color, #5E6D77);
    margin-bottom: 5px;
}

.st-404-page p strong {
    color: var(--link-color, #1A2B48);
    font-weight: 400;
    font-size: 16px;
}

.st-404-page p a {
    font-size: 16px;
    color: var(--main-color, #5191FA);
    text-decoration: none;
}

.st-author-page {
    padding-bottom: 70px;
    font-size: 14px;
    background-size: cover;
}

.st-author-page .author-header {
    background: #f5f5f5;
    border: 1px solid #d7dce3;
    border-bottom: none;
    border-radius: 3px 3px 0 0;
    text-align: center;
    padding: 20px 20px 30px;
}

.st-author-page .author-header .author-avatar img {
    border-radius: 50%;
}

.st-author-page .author-name {
    font-size: 14px;
    color: #1a2b48;
    margin-top: 20px;
    margin-bottom: 10px;
}

.st-author-page .author-review .author-start-rating {
    margin-left: 3px;
    margin-bottom: 5px;
}

.st-author-page .author-review .author-review-label {
    color: #5e6d77;
    font-size: 14px;
}

.st-author-page .author-body {
    border: 1px solid #d7dce3;
    border-top: none;
    border-radius: 0 0 3px 3px;
    padding: 15px 20px;
}

.st-author-page .author-body .author-list-info {
    padding: 0;
    margin: 0;
}

.st-author-page .author-body .author-list-info li {
    list-style: none;
    color: #768092;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.st-author-page .author-body .author-list-info li strong {
    color: #1a2b48;
    font-weight: 440;
}

.st-author-page .author-verify {
    border: 1px solid #d7dce3;
    border-radius: 3px;
    padding: 30px 20px;
    margin-top: 20px;
}

.st-author-page .author-verify .verify-title {
    font-size: 16px;
    color: #1a2b48;
    margin-top: 0;
    margin-bottom: 20px;
}

.st-author-page .author-verify ul {
    padding: 0;
    margin: 0;
}

.st-author-page .author-verify ul li {
    list-style: none;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1a2b48;
}

.st-author-page .author-verify ul .left-icon {
    margin-right: 10px;
    position: relative;
    top: 3px;
}

.st-author-page .author-verify ul .right-icon {
    position: relative;
    top: -1px;
    float: right;
}

.st-author-page ul.nav-tabs {
    border-bottom: 0;
}

.st-author-page ul.nav-tabs li {
    margin-right: 35px;
}

.st-author-page ul.nav-tabs li a {
    padding: 15px 0;
    font-size: 14px;
    font-weight: 500;
    color: #1a2b48;
    text-transform: uppercase;
    background: 0 0;
    border: none;
    display: block;
}

.st-author-page ul.nav-tabs li.active a {
    color: var(--main-color, #5191FA);
    border: none;
    border-bottom: 2px solid var(--main-color, #5191FA);
}

.st-author-page .banner {
    margin-bottom: 60px;
    background-repeat: no-repeat;
    background-size: cover;
}

.st-author-page .banner h1 {
    padding-top: 60px;
    padding-bottom: 60px;
    color: #FFF;
}

.st-author-page .st-review-new {
    border-top: 1px solid #dfdfdf;
    margin-top: 30px;
    padding-top: 30px;
}

.st-author-page .st-review-new h5 {
    font-size: 24px;
    color: #1a2b48;
    margin-bottom: 20px;
}

.st-author-page .st-review-new .author-review-panel {
    margin: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.st-author-page .st-review-new li {
    list-style: none;
    float: left;
    margin-right: 20px;
}

.st-author-page .st-review-new li a {
    background: 0 0;
    border: none;
    font-weight: 450;
    padding: 3px 0;
}

.st-author-page .st-review-new li.active a {
    border-bottom: 2px solid var(--main-color, #5191FA);
}

.st-author-page .author-sv-list {
    opacity: 1;
}

.st-author-page .author-sv-list h5 {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.st-author-page .st-review-new h5 {
    font-size: 24px;
    color: #1a2b48;
    margin-bottom: 20px;
}

.st-author-page .author-list-review .author-review-panel {
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
}

.st-author-page .author-list-review .author-review-panel li {
    list-style: none;
    float: left;
    margin-right: 20px;
}

.st-author-page .author-list-review .author-review-panel li a {
    color: #1a2b48;
}

.st-author-page .author-list-review .author-review-panel li.active a {
    border-bottom: 2px solid var(--main-color, #5191FA);
    color: var(--main-color, #5191FA);
    text-decoration: none;
}

.st-author-page .author-review-panel-list {
    padding: 0;
    border: none;
}

.st-author-page .author-review-panel-list .author-review-detail {
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    padding: 20px 30px;
}

.st-author-page .author-review-panel-list .author-review-detail .stm-dealer-overall-inner {
    border-bottom: none;
    padding-bottom: 0;
}

.st-author-page .author-review-panel-list .author-review-detail .stm-dealer-overall-inner .stm-dealer-rate-part {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.st-author-page .author-review-panel-list .author-review-detail .stm-dealer-overall-inner .stm-dealer-rate-part h4 {
    font-size: 14px;
    font-weight: 450;
    margin-right: 15px;
    float: right;
    margin-top: 10px;
    margin-bottom: 10px;
}

.st-author-page .author-review-panel-list .author-review-detail .stm-dealer-overall-inner .stm-dealer-rate-part .process {
    height: 7px;
    background: #dfdfdf;
    border-radius: 10px;
    position: relative;
    width: 60%;
    overflow: hidden;
    float: right;
}

.st-author-page .author-review-panel-list .author-review-detail .stm-dealer-overall-inner .stm-dealer-rate-part .process .inner {
    top: 0;
    left: 0;
    height: 100%;
    position: absolute;
    background: var(--main-color, #5191FA);
    border-radius: 10px;
}

.st-author-page .author-review-panel-list .author-review-detail .stm-dealer-overall-inner .stm-dealer-rate-part .statistic {
    width: 10%;
    font-size: 14px;
    font-weight: 400;
    float: right;
    margin-left: 15px;
}

.st-author-page .booking-item-reviews.review-list {
    margin-top: 30px;
    padding-top: 0;
    border-top: 2px solid #dfdfdf;
}

.st-author-page .booking-item-reviews.review-list .comment-item:first-child {
    border-top: 0;
}

.st-author-page .booking-item-reviews.review-list .comment-item {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--light-grey-color, #EAEEF3);
    font-size: 14px;
}

.st-author-page .booking-item-reviews.review-list .comment-item .media {
    display: flex;
    align-items: center;
    margin-right: 100px;
}

.st-author-page .booking-item-reviews.review-list .comment-item .media .media-left {
    padding-right: 20px;
}

.st-author-page .booking-item-reviews.review-list .comment-item .media .media-left img {
    border-radius: 50%;
}

.st-author-page .booking-item-reviews.review-list .comment-item .media-heading {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 4px;
}

.st-author-page .booking-item-reviews.review-list .comment-item .date {
    color: #aeb4c0;
}

.st-author-page .booking-item-reviews.review-list .comment-item .like {
    float: right;
    margin-top: -35px;
    color: #aeb4c0;
}

.st-author-page .booking-item-reviews.review-list .comment-item .like i {
    color: var(--main-color, #5191FA);
}

.st-author-page .booking-item-reviews.review-list .comment-item .btn-like {
    color: var(--link-color, #1A2B48);
    margin-left: 5px;
    font-size: 20px;
}

.st-author-page .booking-item-reviews.review-list .comment-item-body {
    margin-top: 30px;
}

.st-author-page .booking-item-reviews.review-list .comment-item-body .title {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    font-weight: 450;
    display: inline-block;
    margin: 10px 0;
    margin-right: 15px;
}

.st-author-page .booking-item-reviews.review-list .review-star {
    display: inline-block;
    padding: 0px;
    width: 100%;
}

.st-author-page .booking-item-reviews.review-list .review-star li {
    margin-right: 5px;
}

.st-author-page .booking-item-reviews.review-list .detail {
    color: #74818a;
}

.st-author-page .pagination {
    margin-bottom: 0;
    margin-top: 0;
    text-align: center;
    display: block;
}

.st-author-page .pagination .page-numbers {
    height: 32px;
    width: 32px;
    line-height: 32px;
    text-decoration: none;
    display: inline-block;
    color: #5e6d77;
    border: none;
    font-size: 16px;
    margin-right: 5px;
}

.st-author-page .pagination .page-numbers.current {
    border: 1px solid var(--main-color, #5191FA) !important;
    border-radius: 3px;
    background: 0 0 !important;
    color: var(--main-color, #5191FA) !important;
}

#mpk-form label {
    margin-bottom: 10px;
}

#mpk-form .form-group {
    position: relative;
    margin-bottom: 15px;
}

#mpk-form .form-group .form-control {
    width: 100%;
    padding-left: 32px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08);
}

#mpk-form .fa.input-icon {
    display: none;
}

#mpk-form #st_submit_member_package {
    margin-top: 30px;
}

.st-package-wrapper {
    margin-top: 60px;
}

.st-package-wrapper .package-cart {
    overflow: hidden;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 2px #ddd;
}

.st-package-wrapper .package-cart .cart-head {
    padding: 20px 15px;
    background: #f7f7f7;
}

.st-package-wrapper .package-cart .cart-head h4 {
    color: var(--main-color, #5191FA);
}

.st-package-wrapper .package-cart .cart-content {
    padding: 20px 15px;
    border-top: 1px solid #ccc;
}

.st-package-wrapper .package-cart .cart-content .item {
    border-bottom: 1px dashed #ddd;
    margin-bottom: 3px;
}

.st-package-wrapper .package-cart .cart-footer {
    padding: 20px 15px;
    border-top: 1px solid #ccc;
}

.payment-form {
    margin-top: 30px;
}

.payment-form .payment-item {
    margin-bottom: 10px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.payment-form .payment-item .dropdown {
    width: 100%;
}

.payment-form .payment-item .st-icheck-item {
    position: relative;
    padding-left: 0;
    cursor: pointer;
    font-size: 22px;
    user-select: none;
    line-height: 21px;
}

.payment-form .payment-item .st-icheck-item label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #5e6d77;
    font-weight: 400;
    margin-bottom: 0;
    cursor: pointer;
}

.payment-form .payment-item .st-icheck-item label .check-payment {
    position: relative;
    height: 16px;
    width: 16px;
    float: left;
    margin-right: 15px;
}

.payment-form .payment-item .st-icheck-item label .payment-title {
    min-width: 140px;
    display: inline-block;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.payment-form .payment-item .st-icheck-item label img {
    max-height: 60px;
}

.st-package-success-wrapper .st-breadcrumb {
    margin-bottom: 60px;
}

.st-package-success-wrapper .title-admin {
    margin-left: 20px;
}

.st-package-success-wrapper .title-admin .st-admin-success {
    margin-bottom: 0;
    font-size: 24px;
    color: #00001e;
    line-height: 35px;
}

.st-package-success-wrapper .title-admin .st-text {
    font-size: 16px;
    color: var(--grey-color, #5E6D77);
    margin-bottom: 0;
}

.st-package-success-wrapper .st-list-sider-info {
    padding: 0;
    margin: 0;
    border-left: 3px solid var(--link-color, #5191FA);
    padding-left: 30px;
}

.st-package-success-wrapper .st-list-sider-info li {
    font-size: 16px;
    color: #818181;
    padding: 5px 0;
}

.st-package-success-wrapper .st-list-sider-info li p {
    margin: 0px;
}

.st-package-success-wrapper .st-title-yourinfor h2 {
    margin: 0;
    color: var(--main-color, #1A2B48);
    font-size: 24px;
    font-weight: 500;
}

.st-package-success-wrapper .sidebar-you-item .cart-info {
    padding: 30px;
}

.st-package-success-wrapper .sidebar-you-item .cart-info p {
    font-size: 16px;
}

.st-header-transparent.st-bg-feature {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    position: relative;
    padding-top: 151px;
    padding-bottom: 35px;
    border-bottom: 0px;
}

.st-header-transparent.st-bg-feature .st-banner-search-form__title {
    color: #FFF;
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    margin-bottom: 0px;
}

@media screen and (max-width: 991px) {
    .st-header-transparent.st-bg-feature {
        padding-top: 100px;
        padding-bottom: 0px;
    }
    .st-header-transparent.st-bg-feature .st-banner-search-form__title {
        font-size: 24px;
        line-height: 34px;
    }
}

.st-header-transparent.st-bg-feature .st-banner-search-form {
    z-index: 4;
    position: relative;
}

.st-header-transparent.st-bg-feature .st-breadcrumb {
    border: none;
}

.st-header-transparent.st-bg-feature .st-breadcrumb ul {
    background: transparent !important;
}

.st-header-transparent.st-bg-feature .st-breadcrumb ul li:not(:last-child):after {
    border-radius: 50%;
}

@media screen and (max-width: 991px) {
    .st-header-transparent.st-bg-feature .st-breadcrumb {
        padding-top: 10px;
        display: block !important;
    }
}

.st-header-transparent.st-bg-feature .st-breadcrumb .container {
    padding-left: 0px;
    padding-right: 0px;
}

.st-header-transparent.st-bg-feature .st-breadcrumb ul {
    background: transparent;
    position: relative;
    z-index: 9;
}

@media screen and (max-width: 991px) {
    .st-header-transparent.st-bg-feature .st-breadcrumb ul li {
        padding-left: 10px;
        padding-right: 10px;
    }
    .st-header-transparent.st-bg-feature .st-breadcrumb ul li:first-child {
        padding-left: 0px;
    }
}

.st-header-transparent.st-bg-feature .st-breadcrumb ul li a {
    color: #FFF !important;
}

@media screen and (max-width: 991px) {
    .st-header-transparent.st-bg-feature .st-breadcrumb ul li {
        font-size: 14px;
        line-height: 24px;
    }
}

.st-header-transparent.st-bg-feature .st-breadcrumb ul li.active {
    color: rgba(255, 255, 255, 0.6) !important;
}

.st-header-transparent.st-bg-feature::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 1;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
}

.item-tours h3.title {
    line-height: 25px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
    margin-top: 15px;
}

.item-tours h3.title a {
    color: var(--link-color, #1A2B48);
}

.item-tours .rate-tours {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.item-tours .reviews {
    margin-bottom: 6px;
}

.item-tours .reviews i {
    font-size: 15px;
    color: #ffdc00;
}

.item-tours .section-footer .price-wrapper .item {
    margin-bottom: 0px;
}

.item-tours .section-footer .price-wrapper span.price {
    margin-left: 5px;
    position: relative;
}

.item-tours .section-footer .price-wrapper span.price .onsale {
    position: absolute;
    right: 0;
    top: -15px;
    text-decoration: line-through;
    font-size: 14px;
    color: #c03 !important;
    font-weight: 400;
}

.st-service-feature {
    padding-top: 25px;
    padding-bottom: 15px;
    border-top: 1px solid #d7dce3;
    border-bottom: 1px solid #d7dce3;
    margin-bottom: 30px;
}

.st-service-feature .item {
    margin-bottom: 10px;
}

.st-service-feature .item .icon {
    margin-right: 15px;
}

.st-service-feature .item .icon i {
    font-size: 36px;
    color: var(--main-color, #5191FA);
}

.st-service-feature .item .info .name {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    margin: 0;
    line-height: 36px;
}

.st-service-feature .item .info .value {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    margin: 0;
}

.st-highlight {
    margin-top: 30px;
}

.st-highlight ul {
    padding-left: 0;
}

.st-highlight ul li:before {
    content: "";
    border: 1px solid var(--main-color, #5191FA);
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 20px;
}

.st-highlight ul li i {
    margin-right: 15px;
    position: relative;
    top: 2px;
}

.st-highlight .st-section-title {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-weight: 500;
    margin-bottom: 30px;
}

.st-highlight ul {
    padding-left: 25px;
}

.st-highlight ul li {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    margin-bottom: 20px;
    list-style: none;
}

.st-program-list .item {
    border: 1px solid #d7dce3;
    border-left: 6px solid var(--main-color, #5191FA);
    background: #fcfcfc;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.st-program-list .item .header {
    padding: 17px 30px;
    overflow: hidden;
    cursor: pointer;
}

.st-program-list.style1 .item {
    border: 1px solid #d7dce3;
    border-left: 6px solid var(--main-color, #5191FA);
    background: #fcfcfc;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.st-program-list.style1 .item:first-child {
    border-left-color: #2ecc71;
}

.st-program-list.style1 .item .header {
    padding: 17px 30px;
    overflow: hidden;
    cursor: pointer;
}

.st-program-list.style1 .item .header h5 {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    margin: 0;
    float: left;
    line-height: 23px;
}

.st-program-list.style1 .item .header .arrow {
    float: right;
    font-size: 25px;
    line-height: 5px;
}

.st-program-list.style1 .item img {
    max-width: 100%;
}

.st-program-list.style1 .item .body {
    height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    padding: 0 30px;
    transition: all 0.3s;
}

.st-program-list.style1 .item.active .header .arrow {
    transform: rotate(180deg);
}

.st-program-list.style1 .item.active .body {
    height: auto;
    padding: 15px 30px 30px;
}

.st-program-list.style2 {
    position: relative;
}

.st-program-list.style2 .item {
    cursor: pointer;
    height: 330px;
    border: none !important;
    margin-bottom: 0 !important;
    position: relative;
}

.st-program-list.style2 .item .header {
    position: absolute;
    bottom: 0;
    left: 0;
}

.st-program-list.style2 .item .header h5 {
    margin-bottom: 10px !important;
    padding: 3px 14px;
    border-radius: 3px;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400;
    float: none;
    display: inline-block;
    background: #2ecc71;
}

.st-program-list.style2 .item .body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    padding: 20px !important;
    background: var(--link-color, #1A2B48);
    opacity: 0;
    color: #fff !important;
    overflow-y: auto;
}

.st-program-list.style2 .item .body h5 {
    margin-bottom: 10px !important;
    padding: 3px 14px;
    border-radius: 3px;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 400;
    float: none;
    display: inline-block;
    background: #2ecc71;
}

.st-program-list.style2 .item:hover .body {
    opacity: 1;
}

.st-program-list.style2 h2 {
    margin: 0;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 500;
}

.st-program-list.style2 .owl-item:last-child .body h5 {
    background: #2ecc71;
}

.st-program-list.style2 .desc {
    margin-top: 10px;
}

.st-program-list.style2 a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: rgba(26, 43, 72, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.st-program-list.style2 a.next {
    right: -20px;
}

.st-program-list.style2 a.prev {
    left: -20px;
}

.st-program-list.style3 {
    border-left: 1px solid #d7dce3;
    margin-left: 10px;
}

.st-program-list.style3 .item {
    position: relative;
    padding-left: 30px;
    overflow: visible;
    margin-bottom: 30px;
    border: none;
}

.st-program-list.style3 .item .icon {
    position: absolute;
    left: -12px;
    top: -19px;
    padding: 17px 0;
    background: #fff;
}

.st-program-list.style3 .item .icon img {
    width: 23px;
    height: auto;
}

.st-program-list.style3 .item h5 {
    font-weight: 450;
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    margin-bottom: 25px;
}

.st-program-list.style3 .item .body {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    padding: 0;
}

.st-search-tour .sidebar-filter .sidebar-item label span {
    margin-right: 5px;
}

.st-search-tour .sidebar-filter .sidebar-item.review-score span i {
    font-size: 15px;
    color: #ffdc00;
}

.st-search-tour .sidebar-filter .sidebar-item.review-score .fake-star i {
    color: #d7dbe3;
}

@media screen and (min-width: 992px) {
    .st-search-tour .footer-flex {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
}

.st-search-tour .service-type.type-btn-view-more a {
    border: 1px solid var(--main-color, #5191FA);
    border-radius: 3px;
    color: var(--main-color, #5191FA);
    background-color: transparent;
    padding: 9px 25px;
    margin-left: 0;
    transition: all 0.3s;
}

.st-search-tour .service-type.type-btn-view-more a:hover {
    background: var(--main-color, #5191FA);
    color: #FFF;
}

@media screen and (max-width: 767px) {
    .st-search-tour .item-content .item-content-w {
        margin-top: 15px;
    }
}

@media (min-width: 560px) and (max-width: 990px) {
    .st-search-tour .list-style .price-wrapper,
    .st-search-tour .list-style .service-duration,
    .st-search-tour .list-style .type-btn-view-more {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .st-search-tour .list-style .price-wrapper,
    .st-search-tour .list-style .service-duration,
    .st-search-tour .list-style .type-btn-view-more {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.st-search-tour .list-style .price-wrapper {
    margin-bottom: 10px;
}

.st-search-tour .list-style .service-duration,
.st-search-tour .list-style .service-type {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}

.tour-top-search .top-filter {
    border-bottom: none;
}

#st-content-wrapper .review-score .st-stars i {
    cursor: pointer;
    color: #ffdc00;
}

#st-content-wrapper .review-score .st-stars i.grey {
    color: var(--light-grey-color, #EAEEF3);
}

#st-content-wrapper .review-score .st-stars.style-2 {
    font-size: 20px;
}

#reviews .st-stars i {
    cursor: pointer;
    color: #ffdc00;
    font-size: 18px;
}

#reviews .st-stars i.grey {
    color: var(--light-grey-color, #EAEEF3);
}

.single-st_tours #form-booking-inpage .form-group,
.single-st_rental #form-booking-inpage .form-group,
.single-st_cars #form-booking-inpage .form-group,
.single-st_activity #form-booking-inpage .form-group,
.single-hotel_room #form-booking-inpage .form-group {
    padding: 20px;
}

.single-st_tours #form-booking-inpage .field-guest,
.single-st_rental #form-booking-inpage .field-guest,
.single-st_cars #form-booking-inpage .field-guest,
.single-st_activity #form-booking-inpage .field-guest,
.single-hotel_room #form-booking-inpage .field-guest {
    padding: 0px;
}

.single-st_tours .review-score .head-rating,
.single-st_rental .review-score .head-rating,
.single-st_cars .review-score .head-rating,
.single-st_activity .review-score .head-rating,
.single-hotel_room .review-score .head-rating {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
}

.single-st_tours .review-score .st-stars,
.single-st_rental .review-score .st-stars,
.single-st_cars .review-score .st-stars,
.single-st_activity .review-score .st-stars,
.single-hotel_room .review-score .st-stars {
    margin-bottom: 7px;
}

.single-st_tours .review-score i,
.single-st_rental .review-score i,
.single-st_cars .review-score i,
.single-st_activity .review-score i,
.single-hotel_room .review-score i {
    font-size: 16px !important;
}

.single-st_tours #reviews .review-box,
.single-st_rental #reviews .review-box,
.single-st_cars #reviews .review-box,
.single-st_activity #reviews .review-box,
.single-hotel_room #reviews .review-box {
    margin-top: 20px;
    padding: 30px;
    border: 1px solid var(--light-grey-color, #EAEEF3);
    border-radius: 5px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.single-st_tours #reviews .review-box-score,
.single-st_rental #reviews .review-box-score,
.single-st_cars #reviews .review-box-score,
.single-st_activity #reviews .review-box-score,
.single-hotel_room #reviews .review-box-score {
    border-right: 1px solid #d7dce3;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.single-st_tours #reviews .review-box-score .review-score,
.single-st_rental #reviews .review-box-score .review-score,
.single-st_cars #reviews .review-box-score .review-score,
.single-st_activity #reviews .review-box-score .review-score,
.single-hotel_room #reviews .review-box-score .review-score {
    line-height: 50px;
    font-size: 72px;
    font-weight: 500;
    color: var(--main-color, #5191FA);
}

.single-st_tours #reviews .review-box-score .review-score .per-total,
.single-st_rental #reviews .review-box-score .review-score .per-total,
.single-st_cars #reviews .review-box-score .review-score .per-total,
.single-st_activity #reviews .review-box-score .review-score .per-total,
.single-hotel_room #reviews .review-box-score .review-score .per-total {
    font-size: 24px;
}

.single-st_tours #reviews .review-box-score .review-score-text,
.single-st_rental #reviews .review-box-score .review-score-text,
.single-st_cars #reviews .review-box-score .review-score-text,
.single-st_activity #reviews .review-box-score .review-score-text,
.single-hotel_room #reviews .review-box-score .review-score-text {
    font-weight: 400;
    font-size: 24px;
    color: var(--link-color, #1A2B48);
}

.single-st_tours #reviews .review-box-score .review-score-base,
.single-st_rental #reviews .review-box-score .review-score-base,
.single-st_cars #reviews .review-box-score .review-score-base,
.single-st_activity #reviews .review-box-score .review-score-base,
.single-hotel_room #reviews .review-box-score .review-score-base {
    margin-top: 10px;
    color: #768090;
    font-size: 14px;
}

.single-st_tours #reviews .review-box-score .review-score-base span,
.single-st_rental #reviews .review-box-score .review-score-base span,
.single-st_cars #reviews .review-box-score .review-score-base span,
.single-st_activity #reviews .review-box-score .review-score-base span,
.single-hotel_room #reviews .review-box-score .review-score-base span {
    color: var(--main-color, #5191FA);
}

.single-st_tours #reviews .review-sumary .item:first-child,
.single-st_rental #reviews .review-sumary .item:first-child,
.single-st_cars #reviews .review-sumary .item:first-child,
.single-st_activity #reviews .review-sumary .item:first-child,
.single-hotel_room #reviews .review-sumary .item:first-child {
    margin-top: 0;
}

.single-st_tours #reviews .review-sumary .item,
.single-st_rental #reviews .review-sumary .item,
.single-st_cars #reviews .review-sumary .item,
.single-st_activity #reviews .review-sumary .item,
.single-hotel_room #reviews .review-sumary .item {
    display: flex;
    align-items: center;
}

.single-st_tours #reviews .review-sumary .item .label,
.single-st_rental #reviews .review-sumary .item .label,
.single-st_cars #reviews .review-sumary .item .label,
.single-st_activity #reviews .review-sumary .item .label,
.single-hotel_room #reviews .review-sumary .item .label {
    width: 22%;
    text-align: right;
    margin-top: 0;
    margin-right: 3%;
}

.single-st_tours #reviews .review-sumary .item .progress,
.single-st_rental #reviews .review-sumary .item .progress,
.single-st_cars #reviews .review-sumary .item .progress,
.single-st_activity #reviews .review-sumary .item .progress,
.single-hotel_room #reviews .review-sumary .item .progress {
    width: 65%;
}

.single-st_tours #reviews .review-sumary .item .number,
.single-st_rental #reviews .review-sumary .item .number,
.single-st_cars #reviews .review-sumary .item .number,
.single-st_activity #reviews .review-sumary .item .number,
.single-hotel_room #reviews .review-sumary .item .number {
    width: 7%;
    margin-left: 3%;
}

.single-st_tours #reviews .review-star,
.single-st_rental #reviews .review-star,
.single-st_cars #reviews .review-star,
.single-st_activity #reviews .review-star,
.single-hotel_room #reviews .review-star {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.single-st_tours #reviews .review-star li,
.single-st_rental #reviews .review-star li,
.single-st_cars #reviews .review-star li,
.single-st_activity #reviews .review-star li,
.single-hotel_room #reviews .review-star li {
    list-style: none;
    margin-right: 5px;
    float: left;
}

.single-st_tours #reviews .review-star li i,
.single-st_rental #reviews .review-star li i,
.single-st_cars #reviews .review-star li i,
.single-st_activity #reviews .review-star li i,
.single-hotel_room #reviews .review-star li i {
    color: #ffdc00;
    font-size: 16px;
}

.single-st_tours #reviews .detail .st-description,
.single-st_rental #reviews .detail .st-description,
.single-st_cars #reviews .detail .st-description,
.single-st_activity #reviews .detail .st-description,
.single-hotel_room #reviews .detail .st-description {
    margin-bottom: 0;
    margin-top: 20px;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    font-weight: 400;
    position: relative;
}

.single-st_tours #respond .comment-form .review-items .rates i.grey,
.single-st_rental #respond .comment-form .review-items .rates i.grey,
.single-st_cars #respond .comment-form .review-items .rates i.grey,
.single-st_activity #respond .comment-form .review-items .rates i.grey,
.single-hotel_room #respond .comment-form .review-items .rates i.grey {
    color: var(--grey-color, #5E6D77) !important;
}

.single-st_tours #respond .comment-form .review-items .rates i.grey.selected,
.single-st_tours #respond .comment-form .review-items .rates i.grey.hovered,
.single-st_rental #respond .comment-form .review-items .rates i.grey.selected,
.single-st_rental #respond .comment-form .review-items .rates i.grey.hovered,
.single-st_cars #respond .comment-form .review-items .rates i.grey.selected,
.single-st_cars #respond .comment-form .review-items .rates i.grey.hovered,
.single-st_activity #respond .comment-form .review-items .rates i.grey.selected,
.single-st_activity #respond .comment-form .review-items .rates i.grey.hovered,
.single-hotel_room #respond .comment-form .review-items .rates i.grey.selected,
.single-hotel_room #respond .comment-form .review-items .rates i.grey.hovered {
    color: var(--main-color, #5191FA) !important;
}

.single-st_tours .service-avatar,
.single-st_rental .service-avatar,
.single-st_cars .service-avatar,
.single-st_activity .service-avatar,
.single-hotel_room .service-avatar {
    position: absolute;
    bottom: -16px;
    right: 20px;
    height: 35px;
    width: 35px;
    border: 1px solid #dfdfdf;
    border-radius: 50%;
}

.single-st_tours .service-avatar img,
.single-st_rental .service-avatar img,
.single-st_cars .service-avatar img,
.single-st_activity .service-avatar img,
.single-hotel_room .service-avatar img {
    border-radius: 50%;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .check-in-wrapper label,
.single-st_rental #st-content-wrapper .form-book-wrapper .check-in-wrapper label,
.single-st_cars #st-content-wrapper .form-book-wrapper .check-in-wrapper label,
.single-st_activity #st-content-wrapper .form-book-wrapper .check-in-wrapper label,
.single-hotel_room #st-content-wrapper .form-book-wrapper .check-in-wrapper label {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    font-weight: 450;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .tour-sale-box,
.single-st_rental #st-content-wrapper .form-book-wrapper .tour-sale-box,
.single-st_cars #st-content-wrapper .form-book-wrapper .tour-sale-box,
.single-st_activity #st-content-wrapper .form-book-wrapper .tour-sale-box,
.single-hotel_room #st-content-wrapper .form-book-wrapper .tour-sale-box {
    position: absolute;
    top: 0px;
    overflow: hidden;
    height: 70px;
    width: 70px;
    right: 0px;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-date-search .check-in-input,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-date-search .check-in-input,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-date-search .check-in-input,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-date-search .check-in-input,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-date-search .check-in-input {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-date-search .check-in-out-input,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-date-search .check-in-out-input,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-date-search .check-in-out-input,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-date-search .check-in-out-input,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-date-search .check-in-out-input {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-guest-search,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-guest-search,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-guest-search,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-guest-search,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-guest-search {
    margin-bottom: 0;
    border-top: 1px solid #d7dce3;
    padding: 0px;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper:not(:last-child),
.single-st_rental #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper:not(:last-child),
.single-st_cars #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper:not(:last-child),
.single-st_activity #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper:not(:last-child),
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper:not(:last-child) {
    border-bottom: 1px solid #d7dce3;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper {
    padding: 0;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper label,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper label,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper label,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper label,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper label {
    font-size: 16px;
    color: var(--link-color, #1A2B48);
    font-weight: 450;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper .render,
.single-st_rental #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper .render,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper .render,
.single-st_activity #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper .render,
.single-hotel_room #st-content-wrapper .form-book-wrapper .form-guest-search .guest-wrapper .check-in-wrapper .render {
    font-size: 13px;
    color: var(--grey-color, #5E6D77);
}

.single-st_tours #st-content-wrapper .form-book-wrapper .st-input-number,
.single-st_rental #st-content-wrapper .form-book-wrapper .st-input-number,
.single-st_cars #st-content-wrapper .form-book-wrapper .st-input-number,
.single-st_activity #st-content-wrapper .form-book-wrapper .st-input-number,
.single-hotel_room #st-content-wrapper .form-book-wrapper .st-input-number {
    height: 34px;
}

.single-st_tours #st-content-wrapper .form-book-wrapper .st-number-wrapper,
.single-st_rental #st-content-wrapper .form-book-wrapper .st-number-wrapper,
.single-st_cars #st-content-wrapper .form-book-wrapper .st-number-wrapper,
.single-st_activity #st-content-wrapper .form-book-wrapper .st-number-wrapper,
.single-hotel_room #st-content-wrapper .form-book-wrapper .st-number-wrapper {
    display: flex;
}

.single-st_tours #st-content-wrapper .form-more-extra,
.single-st_rental #st-content-wrapper .form-more-extra,
.single-st_cars #st-content-wrapper .form-more-extra,
.single-st_activity #st-content-wrapper .form-more-extra,
.single-hotel_room #st-content-wrapper .form-more-extra {
    padding: 20px 15px;
}

.single-st_tours #st-content-wrapper .form-more-extra .dropdown,
.single-st_rental #st-content-wrapper .form-more-extra .dropdown,
.single-st_cars #st-content-wrapper .form-more-extra .dropdown,
.single-st_activity #st-content-wrapper .form-more-extra .dropdown,
.single-hotel_room #st-content-wrapper .form-more-extra .dropdown {
    display: block;
    text-align: right;
    font-size: 16px;
    color: var(--main-color, #5191FA);
}

.single-st_tours #st-content-wrapper .form-more-extra .extras,
.single-st_rental #st-content-wrapper .form-more-extra .extras,
.single-st_cars #st-content-wrapper .form-more-extra .extras,
.single-st_activity #st-content-wrapper .form-more-extra .extras,
.single-hotel_room #st-content-wrapper .form-more-extra .extras {
    display: none;
    padding: 0px;
    list-style: none;
}

.single-st_tours #st-content-wrapper .form-more-extra .extras .title-extra,
.single-st_rental #st-content-wrapper .form-more-extra .extras .title-extra,
.single-st_cars #st-content-wrapper .form-more-extra .extras .title-extra,
.single-st_activity #st-content-wrapper .form-more-extra .extras .title-extra,
.single-hotel_room #st-content-wrapper .form-more-extra .extras .title-extra {
    width: calc(100% - 50px);
}

.single-st_tours #st-content-wrapper .form-more-extra .extras .title-extra .select-wrapper,
.single-st_rental #st-content-wrapper .form-more-extra .extras .title-extra .select-wrapper,
.single-st_cars #st-content-wrapper .form-more-extra .extras .title-extra .select-wrapper,
.single-st_activity #st-content-wrapper .form-more-extra .extras .title-extra .select-wrapper,
.single-hotel_room #st-content-wrapper .form-more-extra .extras .title-extra .select-wrapper {
    width: 50px;
}

@media screen and (max-width: 480px) {
    .single-st_tours #st-content-wrapper .form-more-extra .extras li.item .st-flex,
    .single-st_rental #st-content-wrapper .form-more-extra .extras li.item .st-flex,
    .single-st_cars #st-content-wrapper .form-more-extra .extras li.item .st-flex,
    .single-st_activity #st-content-wrapper .form-more-extra .extras li.item .st-flex,
    .single-hotel_room #st-content-wrapper .form-more-extra .extras li.item .st-flex {
        display: flex;
    }
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper {
    position: relative;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item {
    height: 330px;
    border: none !important;
    margin-bottom: 0 !important;
    position: relative;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header {
    position: absolute;
    bottom: 0;
    left: 0;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h5,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h5,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h5,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h5,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h5 {
    margin-bottom: 10px !important;
    background: var(--link-color, #5191FA);
    padding: 3px 14px;
    border-radius: 3px;
    color: #FFF !important;
    font-size: 14px !important;
    font-weight: 400;
    float: none;
    display: inline-block;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h2,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h2,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h2,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h2,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .header h2 {
    margin: 0;
    color: #FFF !important;
    font-size: 16px !important;
    font-weight: 500;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    padding: 20px !important;
    background: var(--main-color, #1A2B48);
    opacity: 0;
    color: #FFF !important;
    overflow-y: auto;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h5,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h5,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h5,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h5,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h5 {
    display: inline-block;
    margin-bottom: 10px !important;
    background: var(--link-color, #5191FA);
    padding: 3px 14px;
    border-radius: 3px;
    color: #FFF !important;
    font-size: 14px !important;
    font-weight: 400;
    line-height: 23px;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h2,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h2,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h2,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h2,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body h2 {
    margin: 0;
    color: #FFF !important;
    font-size: 16px !important;
    font-weight: 500;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body .desc,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body .desc,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body .desc,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body .desc,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item .body .desc {
    margin-top: 10px;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item:hover .body,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item:hover .body,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item:hover .body,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item:hover .body,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item .item:hover .body {
    opacity: 1;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .header h5,
.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .header h5,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .header h5,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .header h5,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .header h5,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .header h5,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .header h5,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .header h5,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .header h5,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .header h5 {
    background: #2ECC71;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .body h5,
.single-st_tours #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .body h5,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .body h5,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .body h5,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .body h5,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .body h5,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .body h5,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .body h5,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:first-child .body h5,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper .owl-tour-program .owl-item:last-child .body h5 {
    background: #2ECC71;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_tours #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper a.next,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper a.prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: rgba(26, 43, 72, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper a.next,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper a.next,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper a.next {
    right: -20px;
}

.single-st_tours #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-st_rental #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-st_cars #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-st_activity #st-content-wrapper .owl-carousel-wrapper a.prev,
.single-hotel_room #st-content-wrapper .owl-carousel-wrapper a.prev {
    left: -20px;
}

.single-st_tours .review-pag-wrapper .pagination .comment-prev>a,
.single-st_tours .review-pag-wrapper .pagination .comment-next>a,
.single-st_rental .review-pag-wrapper .pagination .comment-prev>a,
.single-st_rental .review-pag-wrapper .pagination .comment-next>a,
.single-st_cars .review-pag-wrapper .pagination .comment-prev>a,
.single-st_cars .review-pag-wrapper .pagination .comment-next>a,
.single-st_activity .review-pag-wrapper .pagination .comment-prev>a,
.single-st_activity .review-pag-wrapper .pagination .comment-next>a,
.single-hotel_room .review-pag-wrapper .pagination .comment-prev>a,
.single-hotel_room .review-pag-wrapper .pagination .comment-next>a {
    width: auto;
}

.single-st_tours .review-pag-wrapper .pagination ul li.active a,
.single-st_rental .review-pag-wrapper .pagination ul li.active a,
.single-st_cars .review-pag-wrapper .pagination ul li.active a,
.single-st_activity .review-pag-wrapper .pagination ul li.active a,
.single-hotel_room .review-pag-wrapper .pagination ul li.active a {
    color: var(--main-color, #5191FA);
}

.single-st_rental #st-content-wrapper .form-more-extra {
    padding: 20px;
}

.single-st_tours .form-head .price,
.single-st_activity .form-head .price {
    display: flex;
    align-items: flex-end;
}

.single-st_tours .form-head .price .label,
.single-st_activity .form-head .price .label {
    font-size: 14px;
    font-weight: 400;
    padding: 0 10px 0 0;
    line-height: 28px;
}

.single-st_tours .form-head .price .value,
.single-st_activity .form-head .price .value {
    line-height: 28px;
}

.single-st_tours .form-head .price .value .onsale,
.single-st_activity .form-head .price .value .onsale {
    display: block;
    text-decoration: line-through;
    font-size: 17px;
    color: #c03 !important;
    font-weight: 400;
    line-height: 20px;
}

#collapseInExClude ul {
    padding: 0;
    margin: 0;
}

#collapseInExClude ul li {
    list-style: none;
    font-size: 14px;
    color: #768090;
    margin-bottom: 20px;
}

#collapseInExClude ul li i {
    margin-right: 15px;
    position: relative;
    top: 2px;
}

#collapseFaq .st-program-list .item {
    border-bottom: 1px solid #d7dce3;
}

#collapseFaq .st-program-list .item:first-child {
    padding-top: 0px;
}

#collapseFaq .st-program-list .item .header {
    overflow: hidden;
    cursor: pointer;
}

@media screen and (max-width: 767px) {
    #collapseFaq .st-program-list .item .header {
        display: flex;
        align-items: center;
    }
}

#collapseFaq .st-program-list .item .header .arrow {
    float: right;
    font-size: 20px;
    position: relative;
    top: -8px;
}

#collapseFaq .st-program-list h5 {
    margin: 0px;
    display: inline-block;
}

#collapseFaq .st-program-list .header {
    border-bottom: 0px;
}

#collapseFaq .st-program-list .header .field-icon {
    margin-right: 15px;
}

#collapseFaq .st-program-list .body {
    height: 0;
    overflow: hidden;
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
    transition: all 0.3s;
}

#collapseFaq .st-program-list .item.active .arrow {
    transform: rotate(180deg);
}

#collapseFaq .st-program-list .item.active .body {
    height: auto;
    padding: 17px 30px;
}

.white-popup {
    position: relative;
    background: #fff;
    width: auto;
    max-width: 768px;
    margin: 0 auto;
}


/*
====== Zoom effect ======
*/

.mfp-zoom-in {
    /* start state */
    /* animate in */
    /* animate out */
}

.mfp-zoom-in .mfp-with-anim {
    opacity: 0;
    transition: all 0.2s ease-in-out;
    transform: scale(0.8);
}

.mfp-zoom-in.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
    transform: scale(0.8);
    opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

.st-single-tour.style-2 .st-service-feature {
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .st-single-tour .st-list-tour-related .item-tour {
        margin-bottom: 24px;
    }
}

.st-package-popup .mfp-close,
.st-package-popup .mfp-close:active,
.st-package-popup .mfp-close:focus {
    top: 20px;
    right: 17px;
    opacity: 1;
    background: transparent url(../../v2/images/svg/ico_close.svg) center center no-repeat;
}

.st-package-popup .st-faq {
    padding: 30px;
    background: #FFF;
    border-radius: 8px;
}

.st-package-popup .st-faq .item {
    margin-bottom: 20px;
    border: 1px solid #d7dce3;
    border-radius: 5px;
    overflow: hidden;
}

.st-package-popup .st-faq .item .header {
    overflow: hidden;
    padding-top: 20px;
    cursor: pointer;
    padding-bottom: 6px;
    padding-left: 15px;
    padding-right: 15px;
    background: #fcfcfc;
}

.st-package-popup .st-faq .item .header h5 {
    float: left;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: var(--link-color, #1A2B48);
}

.st-package-popup .st-faq .item .header .arrow {
    float: right;
    font-size: 20px;
    position: relative;
    top: -8px;
}

.st-package-popup .st-faq .item .body {
    font-size: 14px;
    color: #5e6d77;
    transition: all 0.3s;
    height: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
}

.st-package-popup .st-faq .item .body .item-inner {
    padding: 0;
    margin: 0;
}

.st-package-popup .st-faq .item .body .item-inner li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.st-package-popup .st-faq .item .body .item-inner li label {
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 0;
    display: inline-block;
}

.st-package-popup .st-faq .item .body .item-inner .booking-item-rating-stars {
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 100%;
    top: -1px;
}

.st-package-popup .st-faq .item .body .item-inner .booking-item-rating-stars i {
    font-size: 16px;
    color: #fa5636;
}

.st-package-popup .st-faq .item .body .item-inner .booking-item-rating-stars li {
    display: inline-block;
    margin-bottom: 0px;
}

.st-package-popup .st-faq .item .body .item-inner .select-wrapper .caculator-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.st-package-popup .st-faq .item .body .item-inner .select-wrapper .caculator-item input {
    text-align: center;
    width: 50px;
}

.st-package-popup .st-faq .item .body .item-inner .select-wrapper i {
    cursor: pointer;
}

.st-package-popup .st-faq .item.active .header {
    border-bottom: 1px solid #d7dce3;
}

.st-package-popup .st-faq .item.active .header .arrow {
    transform: rotate(180deg);
}

.st-package-popup .st-faq .item.active .body {
    height: auto;
    padding-top: 20px;
}

.item-rental .featured-image .price-wrapper {
    position: absolute;
    bottom: 15px;
    left: 20px;
}

.item-rental .featured-image .price-wrapper .price {
    font-size: 24px;
    color: #fff;
}

.item-rental .featured-image .price-wrapper .unit {
    font-size: 14px;
    color: #fff;
}

.item-rental .content-item .service-title {
    margin-bottom: 2px;
}

.item-rental .content-item .service-location {
    margin-top: 5px;
    margin-bottom: 10px;
}

.item-rental .content-item .service-review {
    margin-top: 10px;
}

.item-rental .content-item .service-review .rate {
    color: var(--main-color, #5191FA);
}

.item-rental .content-item .service-review .review {
    margin-left: 34px;
    position: relative;
}

.item-rental .content-item .service-review .review:after {
    position: absolute;
    content: "";
    width: 4px;
    height: 4px;
    background: #d0d7dd;
    border-radius: 50%;
    left: -18px;
    top: 8px;
}

.item-rental .amenities {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4e8ed;
}

.item-rental .amenities .amenity {
    width: 25%;
    margin-bottom: 10px;
    cursor: pointer;
    float: left;
}

.item-rental .amenities .amenity:not(.amenity-car) {
    display: flex;
    align-items: center;
}

.item-rental .amenities .amenity .input-icon {
    margin-right: 5px;
}

.item-rental .amenities .amenity .ico {
    display: block;
}

.list-style .item-service .amenities {
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #e4e8ed;
}

.list-style .item-service .amenities .amenity {
    width: 25%;
    display: flex;
    align-items: center;
    float: left;
}

.list-style .item-service .amenities .amenity .input-icon {
    margin-right: 5px;
}

@media screen and (min-width: 991px) {
    .st-search-rental .style-full-map .toolbar {
        margin-top: 50px;
    }
}

.st-search-rental .list-style .amenities {
    margin-bottom: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4e8ed;
}

.st-search-rental .list-style .amenities span span {
    margin-right: 10px;
}

.st-search-rental .list-style .amenities span i {
    margin-right: 4px;
}

.st-search-rental .list-style .item-service-inner .footer-flex {
    padding-left: 0px;
    padding-right: 0px;
}

@media screen and (min-width: 992px) {
    .st-search-rental #sticky-halfmap .item-content,
    .st-search-rental .map-view-popup .item-content {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.st-house-availability {
    margin-top: 30px;
}

.st-house-availability .daterangepicker {
    border-radius: 3px;
    padding-top: 20px !important;
}

.st-house-availability .daterangepicker:before {
    border: none;
}

.st-house-availability .table-condensed tr {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.st-house-availability .table-condensed tr .td-date {
    width: calc(14.2857142857% - 4px) !important;
}

.st-house-availability .st-calendar {
    position: relative;
}

@media (min-width: 564px) {
    .st-house-availability .st-calendar .calendar.right {
        padding: 0px !important;
    }
    .st-house-availability .st-calendar .calendar.right .calendar-table {
        padding-left: 12px;
    }
    .st-house-availability .st-calendar .calendar.left .calendar-table {
        padding-right: 12px;
    }
}

.st-house-availability .st-calendar .calendar-table .table-header {
    padding-bottom: 25px;
}

.st-house-availability .st-calendar .calendar-table .table-header .prev,
.st-house-availability .st-calendar .calendar-table .table-header .next {
    bottom: 5px !important;
}

.st-house-availability .st-calendar .calendar_input {
    opacity: 0;
    visibility: hidden;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.st-house-availability .st-calendar .table-sub-header .day-off-week {
    width: calc(14.2857142857% - 4px);
    margin: 2px;
}

.st-house-availability .st-calendar.left .table-sub-header {
    margin-right: 38px;
}

.st-house-availability .st-calendar .daterangepicker {
    position: static;
    width: 100%;
    box-shadow: none !important;
    border-color: #D7DCE3;
    padding: 30px;
}

@media screen and (max-width: 1024px) {
    .st-house-availability .st-calendar .daterangepicker {
        padding: 10px;
    }
}

.st-house-availability .st-calendar .daterangepicker .calendar {
    margin: 0;
    width: 50%;
}

@media screen and (max-width: 1024px) {
    .st-house-availability .st-calendar .daterangepicker .calendar {
        width: 100%;
    }
}

.st-house-availability .st-calendar .daterangepicker .calendar.right {
    padding-left: 38px;
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date {
    display: block;
    float: left;
    margin: 2px;
    padding: 0;
    width: calc(14.2857142857% - 4px);
    border: 1px solid #D7DCE3;
    border-radius: 3px;
}

@media screen and (max-width: 1024px) {
    .st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date {
        height: calc(14.2857142857% - 4px);
    }
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.td-no-show.available.off.available {
    height: 0px;
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date .date {
    width: 100% !important;
    line-height: 48px;
    width: calc(14.2857142857% - 4px);
    line-height: 48px;
    border: none;
    display: inline-table;
    text-align: center;
    border-radius: 3px;
    color: var(--link-color, #5191FA);
}

@media screen and (max-width: 1024px) {
    .st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date .date {
        height: 100% !important;
    }
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date .date.no-show {
    bordeR: none;
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.disabled {
    text-decoration: none;
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.disabled .date {
    color: #D7DCE3;
}

.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.today,
.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.active,
.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.start-date,
.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date.in-range,
.st-house-availability .st-calendar .daterangepicker .calendar .table-condensed .td-date:hover {
    background: none !important;
    box-shadow: none;
}

.st-house-availability .st-calendar .daterangepicker.respon-single {
    width: auto;
}

.st-house-availability .st-calendar .daterangepicker.respon-single .calendar {
    max-width: 100%;
    width: 100%;
}

.st-list-availability li:not(:last-child) {
    margin-right: 30px;
}

.st-list-availability li span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
}

.st-list-availability li span.not_available {
    border: 1px solid #d7dce3;
}

.st-list-availability li span.available {
    background: var(--main-color, #5191FA);
}

@media screen and (max-width: 1024px) {
    .st-availability .calendar .table-sub-header .day-off-week {
        width: calc(14.2857142857% - 4px);
    }
    .st-availability .calendar.left .table-sub-header {
        margin-right: 22px;
    }
    .st-availability .calendar .daterangepicker .calendar.right {
        padding-left: 22px;
    }
    .st-availability .calendar .daterangepicker .calendar .table-condensed .td-date {
        width: calc(14.2857142857% - 4px);
        height: 48px;
    }
    .st-availability .calendar .daterangepicker .calendar .table-condensed .td-date .date {
        width: calc(14.2857142857% - 4px);
        height: 48px;
        line-height: 48px;
    }
}

h2.st-heading.st-related {
    margin-bottom: 30px;
    margin-top: 50px;
}

.guest_name_input {
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f6f9fe;
}

.guest_name_input label {
    margin-bottom: 20px;
    padding-top: 25px;
}

.guest_name_input .guest_name_control .control-item {
    display: flex;
    padding-bottom: 20px;
}

.guest_name_input .guest_name_control .control-item select {
    width: auto;
    padding: 0;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #d7dce3;
    border-radius: unset;
    background: transparent;
}

.guest_name_input .guest_name_control .control-item input {
    margin-left: 20px;
    padding: 0;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #d7dce3;
    border-radius: unset;
    background-color: #f6f9fe;
}

.st-map {
    display: flex;
    align-items: center;
}

@media (max-width: 480px) {
    .st-map {
        display: flex;
        align-items: center;
    }
}

.page-template-template-transfer-search .select2-container {
    z-index: 999999 !important;
}

.page-template-template-transfer-search .toolbar .toolbar-action {
    float: right;
    padding-left: 0;
    margin: 0;
    margin-top: 4px;
}

.page-template-template-transfer-search .toolbar .toolbar-action li {
    list-style: none;
    float: left;
}

.page-template-template-transfer-search .toolbar .toolbar-action li .dropdown {
    margin-right: 15px;
}

.page-template-template-transfer-search h3.modern-result-string {
    width: 100%;
    display: inline-block;
    text-align: left;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.field-detination i,
.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.form-date-field i {
    display: none;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group .st-form-dropdown-icon {
    padding-left: 0px;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group .destination-pickup {
    padding: 0px;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group .destination-pickup .dropdown {
    padding: 0px;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.form-date-car {
    padding: 0px;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.form-date-car .date-wrapper {
    padding: 0px;
    display: inline-block !important;
    width: 100%;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.form-date-car .date-wrapper .check-in-wrapper,
.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.form-date-car .date-wrapper .check-out-wrapper {
    margin-right: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 20px;
    width: 100%;
    border-bottom: 1px solid #d7dce3;
    float: none;
}

.search-result-page.st-search-car .sidebar-search-form .search-form .form-group.form-date-car .date-wrapper .check-out-wrapper {
    border-bottom: none;
}

.search-result-page.st-search-car .list-style .featured-image {
    height: 100%;
}

@media screen and (max-width: 767px) {
    .search-result-page.st-search-car .list-style .featured-image {
        overflow: unset;
    }
}

.search-result-page.st-search-car .list-style .featured-image a {
    z-index: 9;
    display: initial;
}

@media screen and (min-width: 992px) {
    .search-result-page.st-search-car .list-style .featured-image a {
        height: 100%;
    }
}

.search-result-page.st-search-car .list-style .featured-image a img {
    height: 100%;
    object-fit: cover;
}

.search-result-page.st-search-car .list-style .service-price {
    margin-bottom: 18px;
}

.search-result-page.st-search-car .list-style .service-price span {
    font-size: 12px;
    color: var(--grey-color, #5E6D77);
}

.search-result-page.st-search-car .list-style .service-price .price {
    font-size: 18px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.search-result-page.st-search-car .list-style .service-price .unit {
    font-size: 14px;
    color: var(--grey-color, #5E6D77);
}

.search-result-page.st-search-car .list-style .btn-view-more {
    border: 1px solid var(--main-color, #5191FA);
    border-radius: 3px;
    color: var(--main-color, #5191FA);
    background-color: transparent;
    padding: 9px 25px;
    margin-top: 12px;
    margin-left: 0;
}

.search-result-page.st-search-car .list-style .btn-view-more:hover {
    color: #FFF;
    background-color: var(--main-color, #5191FA);
}

@media screen and (max-width: 767px) {
    .search-result-page.st-search-car .list-style .car-type {
        margin-top: 10px;
    }
}

.search-result-page.st-search-car .list-style .booking-item-rating-stars li i {
    font-size: 15px;
    color: #ffdc00;
}

@media screen and (max-width: 767px) {
    .search-result-page.st-search-car .list-style .booking-item-rating-stars {
        position: initial;
    }
}

.search-result-page.st-search-car .list-style .amenities {
    margin-bottom: 0px;
}

@media screen and (min-width: 992px) {
    .search-result-page.st-search-car .style-full-map {
        margin-top: 70px;
    }
}

.search-result-page.st-search-car .style-full-map .top-filter {
    margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
    .search-result-page.st-search-car .style-full-map .modern-result-string {
        margin-bottom: 15px;
    }
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field {
    justify-content: left;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.form-date-search {
    padding: 0px;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.form-date-search .date-wrapper {
    width: 100%;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.form-date-search .date-wrapper .check-in-wrapper,
.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.form-date-search .date-wrapper .check-out-wrapper {
    padding: 20px;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.form-date-search .date-wrapper .check-in-wrapper {
    border-bottom: 1px solid #d7dce3;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.field-destination-car+.dropdown-menu {
    padding: 15px;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.field-destination-car+.dropdown-menu>li {
    padding-left: 0px !important;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.field-destination-car+.dropdown-menu .item {
    justify-content: flex-start;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-extra-field.field-destination-car+.dropdown-menu .item i {
    margin-right: 8px;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-group label {
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.single-st_cars #st-content-wrapper .form-book-wrapper .form-group .render {
    font-size: 14px;
}

.service-list-wrapper.list-style .item-content-w .service-author {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 25px;
}

.service-list-wrapper.list-style .item-content-w .service-author a {
    border: 1px solid #dfdfdf;
    border-radius: 50%;
    position: unset;
    bottom: unset;
    right: unset;
    margin-right: 10px;
}

.service-list-wrapper.list-style .item-content-w .service-author a img {
    height: 35px;
    width: 35px;
    border: 1px solid #dfdfdf;
    border-radius: 50%;
}

.service-list-wrapper.list-style .item-content-w .service-author p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--link-color, #1A2B48);
    font-weight: 500;
}

.select-number-passenger .type-person {
    margin-right: 30px;
}

.select-number-passenger .number-pass {
    display: flex;
    border: 1px solid #d7dce3;
    padding: 6px;
    border-radius: 4px;
    align-items: center;
}

.select-number-passenger .number-pass span {
    line-height: 1;
    cursor: pointer;
    vertical-align: middle;
}

.select-number-passenger .number-pass .num {
    min-width: 28px;
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    margin-left: 2px;
    margin-right: 2px;
}

.page-template-template-transfer-search-php .single .calendar-time-wrapper .calendar-time {
    width: 100%;
    float: left;
    display: block;
}

.page-template-template-transfer-search-php .single .calendar-time-wrapper .calendar-time.right {
    display: none;
}

.page-template-template-transfer-search-php .daterangepicker .table-condensed .td-date.off,
.page-template-template-transfer-search-php .daterangepicker .table-condensed .td-date.td-no-show.available.disabled.off,
.page-template-template-transfer-search-php .daterangepicker .table-condensed .td-date.td-no-show.not_available.disabled.off {
    border: 1px solid rgba(81, 145, 250, 0.2);
}

.st-tooltip {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    z-index: 999;
}

.st-close-button {
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
    display: inline-block;
}

.st-modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 1rem 1.5rem;
    width: 24rem;
    border-radius: 0.5rem;
}

.st-close-button {
    display: block;
    float: right;
    width: 1.5rem;
    line-height: 1.5rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.25rem;
}

.close-button:hover {
    background-color: darkgray;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.st-modal-content table tr td {
    border-color: transparent;
}

.st-search-cartransfer form .st-location-sidebar .destination-dropoff {
    padding-left: 0px;
}

.st-search-cartransfer form .service-price-book {
    margin-top: 15px;
}

.st-search-cartransfer form .service-price-book input {
    padding: 10px 15px;
}

.st-search-cartransfer form .sroom-passenger {
    padding-bottom: 15px;
}

.st-search-cartransfer form .st-choose-datetime {
    padding-bottom: 15px;
}

.st-search-cartransfer form .car-type {
    padding-top: 15px;
}

@media screen and (max-width: 787px) {
    .st-search-cartransfer .service-list-wrapper .item-service-inner .reviews .rating {
        padding-left: 0px;
    }
}

.st-search-cartransfer .sroom-return .input-group span {
    margin-right: 10px;
}

.st-search-cartransfer .message {
    display: none;
}

#main-footer {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light-grey-color, #EAEEF3);
}

#main-footer .menu {
    list-style: none;
    padding-left: 0;
}

#main-footer .menu li {
    display: block;
}

#main-footer .menu li a {
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    color: var(--link-color, #1A2B48);
}

.main-footer-sub {
    padding-top: 10px;
    padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
    .main-footer-sub .right {
        text-align: left;
    }
}

.subcribe-form {
    position: relative;
}

.subcribe-form .form-control {
    height: 55px;
    line-height: 53px;
    font-size: 14px;
    box-shadow: none;
    border-color: #D7DCE3;
}

.subcribe-form input[type=submit] {
    border: none;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    right: 0;
    height: 55px;
    line-height: 55px;
    color: #FFF;
    background: var(--main-color, #5191FA);
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 600;
    text-transform: uppercase;
}


/*# sourceMappingURL=main.css.map */


/* por nuvoll */

.guest_name_input,
.total-section {
    display: none;
}

#cc-form div div.row .col-sm-6:nth-child(5),
#cc-form div div.row .col-sm-6:nth-child(6),
#cc-form div div.row .col-sm-6:nth-child(9) {
    display: none;
}