:root {
  --main-color: #1A2B48;
  --grey-color: #5E6D77;
  --light-grey-color: #EAEEF3;
  --orange-color: #FA5636;
  --link-color: #5191FA;
  --link-color-dark: shade(#5191FA, 10%);
}

@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(--main-color, #1a2b48);
  font-size: 13px;
  font-family: poppins, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden !important;
  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(--link-color, #5191fa);
  text-decoration: none;
}
.st-link:hover {
  color: var(--link-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(--link-color, #5191FA);
  padding: 15px 35px;
}
.btn.btn-primary:hover {
  background: #4977fa;
  color: #fff;
}
.btn.btn-primary.st-btn-second {
  background: var(--orange-color, #FA5636);
}
.btn.btn-primary.st-btn-second:hover {
  background: #e65335;
}
.btn.btn-green {
  background: var(--link-color, #5191fa);
  color: #fff;
}
.btn.btn-green:hover {
  background: #4977fa;
  color: #fff;
}
.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(--main-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 .header-right .header-search .form-control {
  background: url(//itvoyagesci.com/wp-content/themes/traveler/v2/images/svg/ico_search_white.svg) no-repeat 8px center;
}
.st-header-2 header#header .header .header-right .st-list li.dropdown-user-dashboard > a {
  color: #fff;
}
.st-header-2 header#header .header .header-right .st-list li.dropdown-currency > a {
  color: #fff;
}
.st-header-2 header#header .header .header-right .st-list li.dropdown-language > 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;
}
.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(//itvoyagesci.com/wp-content/themes/traveler/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(--link-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(--link-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;
  }
}
.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(--link-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(--link-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;
  overflow: hidden;
}
@media (max-width: 767) {
  #st-content-wrapper {
    padding-bottom: 50px;
  }
}
#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(--main-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(--link-color, #5191FA);
  text-decoration: none;
}
#st-content-wrapper .st-service-header h1.st-heading {
  margin-top: 10px;
  color: var(--main-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 .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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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(--main-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(--main-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(--main-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(--main-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(--main-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(--link-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(--main-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(--link-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(--link-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(--main-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 .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(--main-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(--link-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(--link-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(--link-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(--link-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(--main-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(--link-color, #5191FA);
  border: 1px solid var(--link-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(--link-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(--link-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(--link-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(--link-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(--link-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(--main-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(--main-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(--link-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(--main-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: 999999;
    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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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: 36px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #ADB2BD;
  float: left;
  text-align: center;
}
.daterangepicker .month {
  color: var(--main-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 {
  border: none;
}
.daterangepicker .table-condensed .td-date .date {
  width: 36px;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  font-weight: 400;
  color: var(--main-color, #1A2B48);
}
.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 {
  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(--link-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(--link-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(--link-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: #5191FA;
  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(--link-color, #5191FA) !important;
  background: var(--link-color, #5191FA) !important;
  border-radius: 100px;
  height: 6px !important;
  border-color: var(--link-color, #5191FA);
  border-top: 1px solid var(--link-color, #5191FA);
  border-bottom: 1px solid var(--link-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(--link-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(--link-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(--link-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(--link-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(--link-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(--link-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(--link-color, #5191FA) !important;
}

.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(--link-color, #5191FA);
  text-decoration: none;
}

.c-main {
  color: var(--main-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(//itvoyagesci.com/wp-content/themes/traveler/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: #339bff;
  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(--link-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(--link-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;
}
.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(--link-color, #5191FA);
  background: var(--link-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;
}

.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(--link-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(--link-color, #5191FA);
  font-size: 14px;
  background: transparent;
  outline: unset;
}
.search-form form .dropdown input::-webkit-input-placeholder {
  /* Edge */
  color: var(--link-color, #5191FA);
}
.search-form form .dropdown input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--link-color, #5191FA);
}
.search-form form .dropdown input::placeholder {
  color: var(--link-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(--link-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(--main-color, #1A2B48);
  color: #fff;
  border-color: var(--main-color, #1A2B48);
  padding: 7px 30px;
  font-size: 14px;
  margin-right: 1px;
}
.st-banner-search-form .multi-search .nav-item a.active {
  background-color: var(--link-color, #5191FA);
  border-color: var(--link-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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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(--main-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(--link-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(//itvoyagesci.com/wp-content/themes/traveler/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(//itvoyagesci.com/wp-content/themes/traveler/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(--link-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, #1A2B48);
}
.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(--main-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(--main-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(//itvoyagesci.com/wp-content/themes/traveler/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(--main-color, #1A2B48);
  font-size: 14px;
}
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(--main-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(--main-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(--main-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(--main-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(--link-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(--main-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(--link-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 {
  display: block;
  height: 32px;
  width: 32px;
  line-height: 32px;
  text-decoration: none;
  color: var(--grey-color, #5E6D77);
}
.pagination ul li a.current {
  border: 1px solid var(--link-color, #5191FA) !important;
  border-radius: 3px;
  background: 0 0 !important;
  color: var(--link-color, #5191FA) !important;
}
.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(--main-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 .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;
  }
}

#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(--link-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(--link-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(--main-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(--link-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(--link-color, #5191FA);
  display: block;
  float: left;
  margin-right: 10px;
  position: relative;
  top: 4px;
}
.st-results h3.sidebar-title {
  font-size: 16px;
  color: var(--main-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(--link-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(--main-color, #1A2B48);
  float: left;
  line-height: 23px;
  margin: 0;
  font-weight: 500;
}
.st-results .sidebar-item .item-title i {
  font-size: 18px;
  color: var(--main-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(--link-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(--link-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(--main-color, #1A2B48);
  background: url(//itvoyagesci.com/wp-content/themes/traveler/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;
}

.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(--link-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(--main-color, #1A2B48);
  margin: 0;
}
.top-filter ul li .title:before {
  content: "";
  height: 20px;
  width: 3px;
  background: var(--link-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(--main-color, #1A2B48);
  font-weight: 500;
  text-decoration: none;
  padding-top: 4px;
  outline: none;
}
.top-filter ul li .form-extra-field button .fa {
  color: var(--main-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(--main-color, #1A2B48);
  font-weight: 500;
  margin-bottom: 2px;
  margin-top: 15px;
}
.service-list-wrapper .item h3.title a {
  color: var(--link-color-title, #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(--link-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-title, #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(--main-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(--link-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(--link-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(--link-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(--link-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(--link-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;
}

.st-checkout-page, .page-template-template-checkout-packages-new {
  margin-top: 60px;
  margin-bottom: 60px;
}
.st-checkout-page h3.title, .page-template-template-checkout-packages-new h3.title {
  margin: 0;
  color: var(--main-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(--main-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 .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(--main-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(--main-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(--main-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(--link-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(--main-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(--link-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(--main-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(--main-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(--link-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(--main-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(--main-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(--link-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(--link-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(--main-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(--link-color, #5191FA) !important;
  border-radius: 8px;
  padding: 15px 10px;
  line-height: 18px;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 0;
}
.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(--main-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(--main-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(--main-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(--main-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(--main-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(--link-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(--main-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(--main-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(--link-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(--main-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(--main-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(--main-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(--link-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(--main-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(--main-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(--main-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(--main-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(--main-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(--main-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(--link-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(--main-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(--link-color, #5191FA);
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 500;
}

.sidebar-widget.widget_block h2 {
  font-size: 16px;
  color: var(--main-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(--main-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(--main-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(--main-color, #1A2B48);
  font-weight: 400;
  font-size: 16px;
}
.st-404-page p a {
  font-size: 16px;
  color: var(--link-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(--link-color, #5191FA);
  border: none;
  border-bottom: 2px solid var(--link-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(--link-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(--link-color, #5191FA);
  color: var(--link-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(--link-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(--main-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(--link-color, #5191FA);
}
.st-author-page .booking-item-reviews.review-list .comment-item .btn-like {
  color: var(--main-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(--link-color, #5191FA) !important;
  border-radius: 3px;
  background: 0 0 !important;
  color: var(--link-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(--link-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(--main-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(--main-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(--link-color, #1A2B48);
}
.st-service-feature .item .info .name {
  font-size: 14px;
  color: var(--main-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 .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-highlight ul li:before {
  content: "";
  border: 1px solid var(--link-color, #5191FA);
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 20px;
}

#collapseItinerary .accordion-body .st-program-list .item {
  border: 1px solid #d7dce3;
  border-left: 6px solid var(--link-color, #5191FA);
  background: #fcfcfc;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
#collapseItinerary .accordion-body .st-program-list .item .header {
  padding: 17px 30px;
  overflow: hidden;
  cursor: pointer;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item {
  border: 1px solid #d7dce3;
  border-left: 6px solid var(--link-color, #5191FA);
  background: #fcfcfc;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item:first-child {
  border-left-color: #2ecc71;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item .header {
  padding: 17px 30px;
  overflow: hidden;
  cursor: pointer;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item .header h5 {
  font-size: 16px;
  color: var(--main-color, #1A2B48);
  margin: 0;
  float: left;
  line-height: 23px;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item .header .arrow {
  float: right;
  font-size: 25px;
  line-height: 5px;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item img {
  max-width: 100%;
}
#collapseItinerary .accordion-body .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;
}
#collapseItinerary .accordion-body .st-program-list.style1 .item.active .header .arrow {
  transform: rotate(180deg);
}
#collapseItinerary .accordion-body .st-program-list.style1 .item.active .body {
  height: auto;
  padding: 15px 30px 30px;
}
#collapseItinerary .accordion-body .st-program-list.style2 {
  position: relative;
}
#collapseItinerary .accordion-body .st-program-list.style2 .item {
  cursor: pointer;
  height: 330px;
  border: none !important;
  margin-bottom: 0 !important;
  position: relative;
}
#collapseItinerary .accordion-body .st-program-list.style2 .item .header {
  position: absolute;
  bottom: 0;
  left: 0;
}
#collapseItinerary .accordion-body .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;
}
#collapseItinerary .accordion-body .st-program-list.style2 .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;
}
#collapseItinerary .accordion-body .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;
}
#collapseItinerary .accordion-body .st-program-list.style2 .item:hover .body {
  opacity: 1;
}
#collapseItinerary .accordion-body .st-program-list.style2 h2 {
  margin: 0;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 500;
}
#collapseItinerary .accordion-body .st-program-list.style2 .owl-item:last-child .body h5 {
  background: #2ecc71;
}
#collapseItinerary .accordion-body .st-program-list.style2 .desc {
  margin-top: 10px;
}
#collapseItinerary .accordion-body .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;
}
#collapseItinerary .accordion-body .st-program-list.style2 a.next {
  right: -20px;
}
#collapseItinerary .accordion-body .st-program-list.style2 a.prev {
  left: -20px;
}
#collapseItinerary .accordion-body .st-program-list.style3 {
  border-left: 1px solid #d7dce3;
  margin-left: 10px;
}
#collapseItinerary .accordion-body .st-program-list.style3 .item {
  position: relative;
  padding-left: 30px;
  overflow: visible;
  margin-bottom: 30px;
  border: none;
}
#collapseItinerary .accordion-body .st-program-list.style3 .item .icon {
  position: absolute;
  left: -12px;
  top: -19px;
  padding: 17px 0;
  background: #fff;
}
#collapseItinerary .accordion-body .st-program-list.style3 .item .icon img {
  width: 23px;
  height: auto;
}
#collapseItinerary .accordion-body .st-program-list.style3 .item h5 {
  font-weight: 450;
  font-size: 16px;
  color: var(--main-color, #1A2B48);
  margin-bottom: 25px;
}
#collapseItinerary .accordion-body .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(--link-color, #5191FA);
  border-radius: 3px;
  color: var(--link-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(--link-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(--main-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(--main-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(--link-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(--main-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(--link-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(--link-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(--main-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(--main-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 0px;
}
.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(--link-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;
}
.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(--link-color, #5191FA);
}

.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 {
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d7dce3;
}
#collapseFaq .st-program-list .item:first-child {
  padding-top: 0px;
}
#collapseFaq .st-program-list .item:last-child {
  border-bottom: none;
}
#collapseFaq .st-program-list .item .header {
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 10px;
}
@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;
}

.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(//itvoyagesci.com/wp-content/themes/traveler/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(--main-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(--link-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 .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: calc(14.2857142857% - 4px);
  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: calc(14.2857142857% - 4px);
  }
}
.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(--link-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(--main-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(--link-color, #5191FA);
  border-radius: 3px;
  color: var(--link-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(--link-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(--main-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(--main-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(--main-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(--link-color, #5191FA);
  padding-left: 25px;
  padding-right: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

/*# sourceMappingURL=main.css.map */.st-header-9 {
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-header-9 .view-detail {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  padding: 14px 20px;
  color: #FFF;
}
.st-header-9 .swiper-slide .item {
  margin-bottom: 0px;
}
.st-header-9 .swiper-pagination {
  margin-top: 40px;
  position: relative;
  bottom: 5px;
  left: 0;
  width: 100%;
}
.st-header-9 [type=button],
.st-header-9 [type=reset],
.st-header-9 [type=submit] {
  -webkit-appearance: unset;
  font-family: unset;
}
.st-header-9 p {
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-header-9 .single h2.st-heading-section {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
}
.st-header-9 .daterangepicker.dropdown-menu {
  padding: 20px 30px 15px 30px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 17px;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-header {
  padding-bottom: 15px;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-header .prev {
  font-family: "traveler-icon" !important;
  background: transparent;
  width: 25px;
  height: 25px;
  font-size: 14px;
  bottom: 8px;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-header .prev:after {
  content: "\e966";
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-header .next {
  font-family: "traveler-icon" !important;
  background: transparent;
  width: 25px;
  height: 25px;
  font-size: 14px;
  bottom: 10px;
  text-align: right;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-header .next:after {
  content: "\e968";
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-header .month {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-sub-header {
  border-top: 1px solid #DEDEDE;
  margin-top: 5px;
  padding-top: 10px;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-sub-header .day-off-week {
  width: 54px;
  height: 54px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #727272;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date {
  width: 14.2857142857%;
  height: 54px;
  box-shadow: none;
  border: none;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date .date {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #232323;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.disabled .date {
  color: #B1BAC1;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.today .date {
  color: var(--main-color, #3B71FE);
  border: none;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.active .date {
  background: #B8CCFF;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.in-range {
  background: #B8CCFF;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.td-no-show {
  height: 0;
}
.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.td-no-show .date {
  height: 0;
}
@media screen and (max-width: 782px) {
  .st-header-9 .header__left .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
  }
}
.st-header-9 .st-service-header2 .st-heading {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #232323;
}
@media screen and (max-width: 768px) {
  .st-header-9 .st-service-header2 .st-heading {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    margin-top: 12px;
  }
}
.st-header-9 .st-service-header2 .st-stars {
  line-height: 1;
  font-size: 16px;
}
.st-header-9 .st-service-header2 .st-review-score {
  margin-right: 10px;
}
.st-header-9 .st-service-header2 .st-review-score .score {
  background: #F9FBFF;
  border: 1px solid #B8CCFF;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: var(--main-color, #3B71FE);
  margin-right: 12px;
}
.st-header-9 .st-service-header2 .st-review-score .left .head-rating {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-header-9 .st-service-header2 .st-review-score .left .text-rating {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-header-9 .st-service-header2 .st-address {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .st-header-9 .st-service-header2 .st-address {
    margin-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .st-header-9 .st-service-header2 .sub-heading .st-dot {
    display: none;
  }
}

.single.st-header-9 .daterangepicker.dropdown-menu .calendar.left:not(.single),
.single.st-header-9 .daterangepicker.dropdown-menu .calendar.right:not(.single) {
  width: 50%;
}
.single.st-header-9 .daterangepicker.dropdown-menu .calendar-table {
  width: 100%;
}
.single.st-header-9 .daterangepicker.dropdown-menu .calendar-table .table-header .month {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.single.st-header-9 .daterangepicker.dropdown-menu .calendar-table .table-sub-header {
  width: 100%;
}
.single.st-header-9 .daterangepicker.dropdown-menu .calendar-table .table-sub-header .day-off-week {
  width: 45px;
  height: 45px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #727272;
}
.single.st-header-9 .daterangepicker.dropdown-menu .calendar-table .table-condensed tbody tr .td-date {
  width: 14.2857142857%;
  height: 45px;
  box-shadow: none;
  border: none;
}

.panigation-list-new-style {
  margin-top: 10px;
  margin-bottom: 30px;
}
.panigation-list-new-style .page-numbers li .page-numbers {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #232323;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panigation-list-new-style .page-numbers li .page-numbers.current {
  color: #fff !important;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  background: var(--main-color, #3B71FE) !important;
}
.panigation-list-new-style .page-numbers li .page-numbers.next, .panigation-list-new-style .page-numbers li .page-numbers.prev {
  background: #F7F8FA;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
}
.panigation-list-new-style .page-numbers li .page-numbers.next .fa, .panigation-list-new-style .page-numbers li .page-numbers.prev .fa {
  font-family: "traveler-icon" !important;
  font-size: 12px;
  font-weight: 500;
}
.panigation-list-new-style .page-numbers li .page-numbers.next .fa:before {
  content: "\e968";
}
.panigation-list-new-style .page-numbers li .page-numbers.prev .fa:before {
  content: "\e966";
}

.single.st-header-9 .daterangepicker.dropdown-menu {
  padding: 15px;
}
.single.st-header-9 .daterangepicker.single .calendar .calendar-table .table-sub-header .day-off-week {
  width: 45px;
  height: 45px;
}
.single.st-header-9 .daterangepicker .calendar {
  margin: 0px;
}
.single.st-header-9 .daterangepicker .calendar .calendar-table .table-sub-header .day-off-week {
  width: 14.2857142857%;
  height: 45px;
}
.single.st-header-9 .daterangepicker .calendar .calendar-table .table-condensed tbody tr .td-date {
  width: 45px;
  height: 45px;
}
.single.st-header-9 .st-gallery.style-masonry {
  margin-top: 40px;
  clear: both;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.single.st-header-9 .st-gallery.style-masonry img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.single.st-header-9 .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) {
  .single.st-header-9 .st-gallery.style-masonry .item-gallery {
    padding: 0px;
    width: 100%;
    height: auto !important;
  }
  .single.st-header-9 .st-gallery.style-masonry .item-gallery:not(:nth-child(1)) {
    display: none;
  }
}
.single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(1) {
  height: 630px;
  padding-left: 0px;
  padding-bottom: 0px;
}
.single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(3), .single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(5) {
  padding-right: 0px;
}
.single.st-header-9 .st-gallery.style-masonry .item-gallery.item-hide {
  display: none;
}
.single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(1), .single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(2), .single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(3) {
  padding-top: 0px;
}
.single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(4), .single.st-header-9 .st-gallery.style-masonry .item-gallery:nth-child(5) {
  padding-bottom: 0px;
}
.single.st-header-9 .st-gallery.style-masonry .shares.dropdown {
  top: auto !important;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .single.st-header-9 .st-gallery.style-masonry .shares.dropdown {
    bottom: 20px;
    right: 20px !important;
  }
}
.single.st-header-9 .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;
}
.single.st-header-9 .st-gallery.style-masonry .shares.dropdown .btn-group a span {
  color: #FFF;
}
.single.st-header-9 .st-gallery.style-masonry .shares.dropdown .btn-group a.st-video-popup {
  padding: 12px;
  margin-right: 16px;
}
.single.st-header-9 .st-gallery.style-masonry .shares.dropdown .btn-group a.st-video-popup i {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .single.st-header-9 .st-gallery.style-masonry .shares.dropdown .btn-group a.st-video-popup {
    margin-right: 10px;
  }
}
.single.st-header-9 .st-gallery.style-masonry .shares.dropdown .btn-group a.st-gallery-popup span {
  margin-right: 10px;
}
.single.st-header-9 .st-gallery.style-slider {
  margin-top: 30px;
  position: relative;
}
.single.st-header-9 .st-gallery.style-slider .owl-stage-outer {
  border-radius: 20px;
}
.single.st-header-9 .st-gallery.style-slider .owl-nav .owl-prev,
.single.st-header-9 .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;
}
.single.st-header-9 .st-gallery.style-slider .owl-nav .owl-prev span,
.single.st-header-9 .st-gallery.style-slider .owl-nav .owl-next span {
  font-family: "traveler-icon" !important;
  color: transparent !important;
}
.single.st-header-9 .st-gallery.style-slider .owl-nav .owl-next {
  left: auto;
  right: 30px;
}
.single.st-header-9 .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%);
}
.single.st-header-9 .st-gallery.style-slider .owl-nav .owl-prev {
  left: 30px;
  right: auto;
}
.single.st-header-9 .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%);
}
.single.st-header-9 .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;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar {
    padding-top: 46px;
  }
}
.dropdown-menu.st-modern-style {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px;
  min-width: 320px;
  margin-top: 16px !important;
}

.field-guest .dropdown-menu.st-modern-style li.item:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 19px;
  margin-bottom: 19px !important;
}
.field-guest .dropdown-menu.st-modern-style li.item label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}

.payment-select {
  position: relative;
}
.payment-select .btn-select {
  position: relative;
  margin-bottom: 40px;
}
.payment-select .btn-select::after {
  content: "\e965";
  font-family: "traveler-icon" !important;
  position: absolute;
  color: #232323;
  font-size: 8px;
  top: 50%;
  margin-top: -10px;
  right: 16px;
  font-size: 14px;
}
.payment-select .btn-select:hover {
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
}
.payment-select .btn-select:hover li {
  margin-left: 0px;
}
.payment-select .btn-select:focus {
  outline: none;
}
.payment-select .btn-select,
.payment-select #input-payment {
  width: 100%;
  height: 58px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #727272;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}
.payment-select .btn-select img,
.payment-select #input-payment img {
  width: auto;
  height: 25px;
}
.payment-select .btn-select span,
.payment-select #input-payment span {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-left: 10px;
}
.payment-select .btn-select li,
.payment-select #input-payment li {
  list-style: none;
  float: left;
  padding-bottom: 0px;
  display: flex;
  align-items: center;
}
.payment-select .btn-select li .img_pay,
.payment-select #input-payment li .img_pay {
  min-width: 70px;
}
.payment-select #input-payment li {
  display: flex;
  float: none;
}
.payment-select #input-payment li .img_pay {
  min-width: 80px;
}
.payment-select .payment-choose {
  position: absolute;
  top: 100px;
  background: #fff;
  display: none;
  margin-top: -40px;
  width: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  z-index: 1;
}
.payment-select .payment-choose #input-payment {
  height: auto;
  border: 0;
  border-radius: 0;
}
.payment-select .payment-choose #input-payment li {
  padding-top: 0;
  margin-top: 10px;
  list-style: none;
  padding-top: 5px;
  padding-bottom: 5px;
}
.payment-select .payment-choose #input-payment li:hover {
  background-color: #F4F3F3;
}
.payment-select .payment-choose #input-payment li img {
  margin: 5px;
}

.btn-v2 {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  padding: 15px;
  transition: all 0.2s;
}
.btn-v2.btn-primary {
  background: var(--main-color, #3B71FE);
  color: #fff !important;
}
.btn-v2.btn-primary:hover, .btn-v2.btn-primary:focus, .btn-v2.btn-primary:active {
  color: #fff;
}

.load_result .pm-info {
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  padding: 30px 16px;
  color: #727272;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 40px;
}
.load_result .pm-info strong {
  color: #232323;
}

/* item list */
.open {
  display: show !important;
}

body.st-header-9 .daterangepicker .loader-wrapper {
  border-radius: 20px;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .st-heading-section {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  margin-bottom: 20px;
}

.st-owl-slider .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE !important;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  top: -60px;
}
.st-owl-slider .owl-nav button span {
  font-family: "traveler-icon" !important;
  color: transparent !important;
}
.st-owl-slider .owl-nav button.owl-prev {
  right: 50px;
}
.st-owl-slider .owl-nav button.owl-prev span:before {
  color: #232323;
  content: "\e966";
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.st-owl-slider .owl-nav button.owl-next {
  right: 0;
}
.st-owl-slider .owl-nav button.owl-next span:before {
  color: #232323;
  content: "\e968";
  font-size: 18px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.st-owl-slider .owl-nav.disabled {
  display: block !important;
}
.st-owl-slider .owl-dots {
  bottom: -40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.st-owl-slider .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #DEDEDE;
  border-radius: 50%;
  transition: all 0.2s;
  margin-right: 5px;
  margin-left: 5px;
}
.st-owl-slider .owl-dots .owl-dot.active {
  width: 10px;
  height: 10px;
  background: var(--main-color, #3B71FE);
}

.st-style-elementor .service-add-wishlist.added span:before {
  content: "\e980" !important;
  color: #DA3838;
}

.services-item.item-elementor .service-add-wishlist.added svg path {
  fill: #DA3838;
  fill-opacity: 1;
}
.services-item.item-elementor a.service-avatar {
  position: absolute;
  bottom: -16px;
  right: 20px;
  height: 35px;
  width: 35px;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .article-style3 .post-inner {
    padding: 0 20px;
    padding-bottom: 30px;
  }
  .article-style3 .post-inner .meta {
    display: none;
  }
  .article-style3 .header .cate {
    left: 20px;
  }
}
.st-button-popup-video button {
  background-color: #fff;
  border: none;
  outline: 0;
  border-radius: 50%;
  padding: 30px;
  line-height: 1;
  height: 78px;
  width: 78px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .st-button-popup-video button {
    height: 50px;
    width: 50px;
    padding: 15px;
  }
}
.st-button-popup-video button span {
  font-size: 20px;
  color: var(--main-color, #3B71FE);
}

.st-header-9 .st-search-form-calendar .calendar-time-wrapper {
  background: #F7F8FA;
  border-radius: 10px;
  display: flex;
}
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time {
  display: inline-block;
  text-align: left;
}
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.left {
  padding-left: 30px;
}
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.right {
  padding-right: 30px;
  float: right;
}
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.right > div {
  justify-content: flex-end;
}
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time label {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #232323;
}
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time .select-dropdown.timepicker,
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time .minuteselect,
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time .ampmselect {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--main-color, #3B71FE);
  padding: 8px;
  width: 65px;
}
.st-header-9 .st-search-form-calendar .ranges {
  margin: 30px 0px 20px 0px;
}
.st-header-9 .st-search-form-calendar .ranges .btn {
  background: #E9EFFF;
  border-radius: 50px;
}
.st-header-9 .st-search-form-calendar .ranges .btn.cancelBtn {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #232323;
  border: none;
}
.st-header-9 .st-search-form-calendar .ranges .btn.applyBtn {
  background: var(--main-color, #3B71FE);
}

@media screen and (max-width: 1228px) {
  .st-header-9 .st-search-form-calendar .calendar.left, .st-header-9 .st-search-form-calendar .calendar.right {
    width: 50%;
    margin: 0 !important;
  }
  .st-header-9 .st-search-form-calendar .calendar .calendar-table .table-condensed tbody tr .td-date {
    height: 50px;
  }
  .st-header-9 .st-search-form-calendar .calendar .calendar-table .table-sub-header .day-off-week {
    width: 14.2857142857%;
  }
}
@media screen and (max-width: 767px) {
  .st-header-9 .st-search-form-calendar .calendar.left {
    width: 50%;
  }
  .st-header-9 .st-search-form-calendar .calendar.left .calendar-table {
    padding-right: 4px;
  }
  .st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date {
    height: 46px;
  }
}
@media screen and (max-width: 563px) {
  .st-header-9 .st-search-form-calendar {
    width: calc(100% - 26px);
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper {
    display: inline-block;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.left {
    padding-left: 15px;
    padding-right: 15px;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.right {
    padding-left: 15px;
    padding-right: 15px;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time label {
    font-size: 14px;
    line-height: 21px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 65px);
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time select {
    font-size: 14px;
    line-height: 21px;
    padding: 4px !important;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time > div {
    justify-content: space-between !important;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time .hourselect,
.st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time .minuteselect {
    width: 65px;
  }
}
#st-content-wrapper.st-style-elementor.st-404-page {
  padding-top: 80px;
}
#st-content-wrapper.st-style-elementor.st-404-page img {
  margin-bottom: 0px;
}
#st-content-wrapper.st-style-elementor.st-404-page h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
  color: #232323;
  margin: 80px 0px 0px 0px;
}
#st-content-wrapper.st-style-elementor.st-404-page h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #727272;
  margin-top: 20px;
  margin-bottom: 30px;
}
#st-content-wrapper.st-style-elementor.st-404-page p {
  margin: 0px;
  display: inline-block;
}
#st-content-wrapper.st-style-elementor.st-404-page p a {
  background: #3B71FE;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 22px;
  color: #FFF;
  display: block;
}
@media screen and (max-width: 563px) {
  #st-content-wrapper.st-style-elementor.st-404-page {
    padding-top: 50px;
  }
  #st-content-wrapper.st-style-elementor.st-404-page h1 {
    margin-top: 50px;
    font-size: 32px;
    line-height: 42px;
  }
}
#st-content-wrapper.st-style-elementor .sidebar-item .item-content ul li label {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}
#st-content-wrapper.st-style-elementor .sidebar-item .item-content ul li:not(:first-child) {
  margin-top: 10px;
}
#st-content-wrapper.st-style-elementor .st-properties th,
#st-content-wrapper.st-style-elementor .st-properties td {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
#st-content-wrapper.st-style-elementor .st-stars i {
  font-size: 13px;
  color: #DA6938;
}
@media screen and (max-width: 991px) {
  #st-content-wrapper.st-style-elementor .st-fixed-form-booking .close-icon {
    position: unset;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
  }
  #st-content-wrapper.st-style-elementor .st-fixed-form-booking .st-form-book-wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #st-content-wrapper.st-style-elementor .hotel-target-book-mobile .price-wrapper {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #727272;
  }
  #st-content-wrapper.st-style-elementor .hotel-target-book-mobile .price-wrapper .price {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    color: #232323;
    margin-left: 4px;
    margin-right: 4px;
  }
  #st-content-wrapper.st-style-elementor .hotel-target-book-mobile .price-wrapper #mobile-price {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
  }
  #st-content-wrapper.st-style-elementor .hotel-target-book-mobile .price-wrapper .btn-v2 {
    padding: 15px 22px;
  }
}

.stt-single-popup .mfp-counter {
  display: none;
}

#gotop {
  width: 42px;
  height: 42px;
  background: #3B71FE;
  border-radius: 7px;
  color: #FFF;
  text-align: center;
  position: fixed;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  display: none;
  z-index: 99;
}
#gotop i {
  line-height: 42px;
  font-size: 18px;
}
@media screen and (max-width: 991px) {
  #gotop {
    bottom: 80px;
  }
}

.st-banner-search-form.style_2 .content-banner {
  margin-bottom: 90px;
}
.faq.style1 .accordion-button::after {
  content: "-";
  background: #3B71FE;
  color: #fff;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 13px;
  background-image: none !important;
  border-radius: 30px;
}
.faq.style1 .accordion-button.collapsed::after {
  font-family: "traveler-icon" !important;
  content: "\e962";
  background: none;
  color: #727272;
  width: 28px;
  height: 28px;
  text-align: center;
  font-size: 13px;
}
.faq.style1 .accordion-body {
  padding: 16px 0 !important;
}

.item-member-ship.style2 .item-st {
  padding: 30px;
}
.item-member-ship.style2 .item-st .title {
  text-align: left;
}
.item-member-ship.style2 .item-st .price {
  display: flex;
  align-items: center;
}
.item-member-ship.style2 .item-st .price .price {
  margin-right: 6px;
}
.item-member-ship.style2 .item-st .pricingContent {
  border-top: 1px solid #DEDEDE;
  margin-top: 1.563rem;
}
.item-member-ship.style2 .item-st .pricingContent .stt-icon-check, .item-member-ship.style2 .item-st .pricingContent .stt-icon-close {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 20px;
  background: #CEF2E5;
  display: inline-block;
  text-align: center;
  margin-right: 12px;
  position: relative;
}
.item-member-ship.style2 .item-st .pricingContent .stt-icon-check::before, .item-member-ship.style2 .item-st .pricingContent .stt-icon-close::before {
  font-size: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #10AC58;
  transform: translate(-50%, -50%);
}
.item-member-ship.style2 .item-st .pricingContent .stt-icon-close {
  background: #FAD6D6;
}
.item-member-ship.style2 .item-st .pricingContent .stt-icon-close::before {
  color: #DA3838;
}
.item-member-ship.style2 .item-st .pricingContent ul li {
  display: flex;
  align-items: center;
  border-bottom: none;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.item-member-ship.style2 .item-st .pricingContent ul li:first-child {
  padding-top: 1.875rem;
}

.st-banner-search-form.style_2 .multi-search li {
  margin: 0px 17px 24px 17px;
}
.st-banner-search-form.style_2 .multi-search li a {
  background: transparent;
  padding: 0px;
}
.st-banner-search-form.style_2 .multi-search li a.active {
  background: transparent;
  border-bottom: 1px solid #FFF;
}
.st-banner-search-form.style_2 #nav-st_activity .st-search-form-el, .st-banner-search-form.style_2 #nav-st_tours .st-search-form-el {
  max-width: 850px;
  margin: 0 auto;
}
.st-banner-search-form.style_2 #nav-st_cars {
  max-width: 920px;
  margin: auto;
}
.st-banner-search-form.style_2 #nav-st_rental {
  max-width: 1070px;
  margin: auto;
}
.st-banner-search-form.style_2 .st-search-form-el {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 70px;
}
.st-banner-search-form.style_2 .st-search-form-el .button-search-wrapper {
  margin-left: auto;
  margin-right: 12px;
}
.st-banner-search-form.style_2 .st-search-form-el .button-search-wrapper .btn-search {
  background: var(--main-color, #3B71FE);
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border-radius: 70px;
  display: flex;
  align-items: center;
  height: 60px;
  transition: all 0.2s;
}
.st-banner-search-form.style_2 .st-search-form-el .button-search-wrapper .btn-search span {
  margin-right: 8px;
}
.st-banner-search-form.style_2 .st-search-form-el .button-search-wrapper .btn-search:hover {
  filter: brightness(115%);
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el {
  padding: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form {
  background: transparent;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-group {
  min-height: auto;
  background: none;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search {
  border-right: 0;
  width: 25%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search.st-search-destination-tour {
  width: 30%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .location-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 30px;
  padding-bottom: 0px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .location-heading span {
  padding-bottom: 20px;
  margin-bottom: 13px;
  border-bottom: 1px solid #DEDEDE;
  display: block;
  width: 100%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  min-height: unset !important;
  max-height: unset !important;
  padding: 30px 15px 30px 10px;
  margin-top: 16px !important;
  min-width: 360px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu .st-scrollbar {
  min-height: 100px;
  max-height: 332px;
  padding-left: 0;
  margin-bottom: 0;
  padding-right: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu .st-scrollbar.no-data {
  min-height: unset;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu li:not(.location-heading) {
  display: flex;
  align-items: center;
  padding: 7px 20px 7px 20px;
  justify-content: flex-start;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu li:not(.location-heading).item span:not(.stt-icon) {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  width: auto;
  white-space: normal;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu li:not(.location-heading).item span.stt-icon {
  color: #727272;
  width: auto;
  margin-right: 10px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest {
  padding: 0 20px;
  border-left: none;
  min-height: 82px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .dropdown,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown {
  flex-wrap: unset;
  min-height: 82px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .stt-icon,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .stt-icon {
  font-size: 20px;
  margin-right: 16px;
  color: #727272;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .st-form-dropdown-icon,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .st-form-dropdown-icon {
  padding-left: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .st-form-dropdown-icon label,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .st-form-dropdown-icon label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .st-form-dropdown-icon .render,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .st-form-dropdown-icon .render {
  color: #727272;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .st-form-dropdown-icon .render input,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .st-form-dropdown-icon .render input {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .st-form-dropdown-icon .render input::placeholder,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .st-form-dropdown-icon .render input::placeholder {
  color: #727272;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination:after,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest:after {
  content: "";
  height: 20px;
  width: 1px;
  display: block;
  background: #DEDEDE;
  border: none;
  position: absolute;
  right: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest {
  padding-left: 30px;
  min-width: 22%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest:after {
  display: none;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px;
  min-width: 320px;
  margin-top: 16px !important;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item {
  padding-top: 0;
  padding-bottom: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 19px;
  margin-bottom: 19px !important;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .prev,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .next {
  min-width: 34px;
  height: 34px;
  left: 0px;
  top: 0px;
  background: #FFFFFF;
  border: 1px solid #727272;
  box-sizing: border-box;
  border-radius: 50px;
  display: block;
  line-height: 29px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .prev svg,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .next svg {
  width: 12px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .prev svg g,
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .next svg g {
  stroke: #232323;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .dropdown-menu .item .select-wrapper .st-number-wrapper .st-input-number {
  font-weight: 500;
  font-size: 16px !important;
  line-height: 20px;
  text-align: center;
  color: #232323;
  margin-left: 0;
  margin-right: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field {
  padding: 0;
  min-width: 32%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field.st-search-date-tour {
  min-width: 50%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-arrow {
  font-size: 13px;
  color: #83929D;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper {
  min-height: 82px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper.checkin {
  padding: 0 30px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper.checkout {
  padding: 0 30px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper .stt-icon {
  font-size: 20px;
  margin-right: 16px;
  color: #727272;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper .item-inner label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  white-space: nowrap;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper .item-inner .render {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  white-space: nowrap;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .check-in-out {
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  left: 0;
  bottom: 0;
  z-index: unset;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field:after {
  content: "";
  height: 20px;
  width: 1px;
  display: block;
  background: #DEDEDE;
  border: none;
  position: absolute;
  right: 0;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .st-focus {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form.stt-car .form-date-field::after {
  display: none;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form.st-traveler-payout .destination-search {
  width: 100%;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form.st-traveler-payout .display-passengers, .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form.st-traveler-payout .display-class {
  font-size: 14px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form.st-traveler-payout .st-form-dropdown-icon .render span {
  font-size: 14px;
}
.st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form.st-traveler-payout .form-button.form-passengers-class {
  border: none;
}
.st-banner-search-form.style_2 #nav-hotels_combined .st-search-form-el {
  border-radius: unset;
}
.st-banner-search-form.style_2 #nav-bookingdc .form-button {
  border: none;
}

@media screen and (max-width: 991px) {
  .st-banner-search-form.style_2 .st-search-form-el {
    border-radius: 20px;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form form {
    display: block !important;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search {
    width: 100%;
    border-bottom: 1px solid #DEDEDE;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .field-detination {
    width: 100%;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .field-detination:after {
    display: none;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search.st-focus {
    box-shadow: none;
    border-radius: 0;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search.st-search-destination-tour {
    width: 100%;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field {
    width: 100%;
    border-bottom: 1px solid #DEDEDE;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper {
    width: 50%;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper.st-focus {
    box-shadow: none;
    border-radius: 0;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper.checkin {
    padding: 0 20px;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field:after {
    display: none;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest {
    padding-left: 20px;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest.st-focus {
    box-shadow: none;
    border-radius: 0;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .button-search-wrapper {
    margin-right: 0;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .button-search-wrapper .btn-search {
    width: 100%;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .button-search-wrapper .btn-search .stt-icon {
    display: none;
  }

  .st-search-form-calendar {
    margin-top: 60px !important;
  }
}
@media screen and (max-width: 767px) {
  .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper.checkout {
    padding: 0 15px;
  }
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide {
  text-align: center;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .thumbnail {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  position: -webkit-sticky;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .thumbnail a {
  display: block;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .thumbnail a img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .thumbnail:hover a img {
  transform: scale(1.2);
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 4px;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .title a {
  color: #232323;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .title:hover a {
  color: var(--main-color, #3B71FE);
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .desc a {
  color: #727272;
  display: block;
}
.st-list-destination.st-sliders .swiper-wrapper .swiper-slide .desc a:hover {
  color: var(--main-color, #3B71FE);
}
.st-list-destination.st-sliders .st-button-prev, .st-list-destination.st-sliders .st-button-next {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 9;
}
.st-list-destination.st-sliders .st-button-prev span, .st-list-destination.st-sliders .st-button-next span {
  display: block;
  background: none;
  color: #232323;
  width: auto;
  height: auto;
  font-size: 14px;
  position: relative;
}
.st-list-destination.st-sliders .st-button-next {
  top: 28%;
  right: -19px;
  margin: 0;
}
.st-list-destination.st-sliders .st-button-next span {
  left: 2px;
}
.st-list-destination.st-sliders .st-button-prev {
  top: 28%;
  left: -19px;
  margin: 0;
}
.st-list-destination.st-sliders .swiper-pagination {
  margin-top: 15px;
  position: unset;
}
.st-list-destination.st-sliders .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #DEDEDE;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
  border: none;
}
.st-list-destination.st-sliders .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: var(--main-color, #3B71FE);
  position: relative;
  top: 1px;
}

@media screen and (max-width: 767px) {
  .st-list-destination.st-sliders .st-button-prev {
    left: -9px;
  }
  .st-list-destination.st-sliders .st-button-next {
    right: -9px;
  }
}
.services-item.item-elementor {
  margin-bottom: 30px;
}
.services-item.item-elementor .item {
  background: #FFFFFF;
  border: none;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 0;
}
.services-item.item-elementor .item .st-address span, .services-item.item-elementor .item .st-address i {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.services-item.item-elementor .item .featured-image {
  position: relative;
  overflow: initial;
}
.services-item.item-elementor .item .featured-image .featured {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--main-color, #3B71FE);
  top: 20px;
  left: 20px;
  position: absolute;
  padding: 4px 8px;
}
.services-item.item-elementor .item .featured-image a img {
  border-radius: 0;
}
.services-item.item-elementor .item .featured-image:hover a img {
  transform: scale(1.1) !important;
}
.services-item.item-elementor .item .featured-image .st-tag-feature-sale {
  top: 20px;
  left: 20px;
  position: absolute;
  z-index: 1;
}
.services-item.item-elementor .item .featured-image .st-tag-feature-sale .st_sale_class {
  position: unset;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-radius: 5px;
  background: #cc0033;
  margin-top: 5px;
  display: inline-block;
  transform: unset;
  height: unset;
  width: unset;
}
.services-item.item-elementor .item .featured-image .st-tag-feature-sale .featured {
  position: unset;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
  border-radius: 5px;
  background: var(--main-color, #3B71FE);
}
.services-item.item-elementor .item .content-item {
  position: relative;
  padding: 20px;
}
.services-item.item-elementor .item .content-item .st-stars {
  position: unset;
  line-height: 14px;
  margin-bottom: 5px;
}
.services-item.item-elementor .item .content-item .st-stars .stt-icon {
  font-size: 13px;
  color: #DA6938;
}
.services-item.item-elementor .item .content-item .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 5px;
}
.services-item.item-elementor .item .content-item .title a {
  color: #232323 !important;
}
.services-item.item-elementor .item .content-item .sub-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.services-item.item-elementor .item .content-item .section-footer {
  border-top: 1px solid #DEDEDE;
  margin-top: 15px;
  padding-top: 15px;
}
.services-item.item-elementor .item .content-item .reviews {
  margin-top: 0;
  margin-bottom: 10px;
}
.services-item.item-elementor .item .content-item .reviews .rate {
  background: #F9FBFF;
  border: 1px solid #B8CCFF;
  box-sizing: border-box;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  margin-right: 12px;
  padding: 4px 6px;
}
.services-item.item-elementor .item .content-item .reviews .rate:after {
  display: none;
}
.services-item.item-elementor .item .content-item .reviews .rate span {
  position: relative;
  top: -1px;
}
.services-item.item-elementor .item .content-item .reviews .rate-text {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
  margin-right: 5px;
}
.services-item.item-elementor .item .content-item .reviews .summary {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.services-item.item-elementor .item .content-item .price-wrapper {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.services-item.item-elementor .item .content-item .price-wrapper .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #232323;
  margin-left: 8px;
  margin-right: 4px;
}
.services-item.item-elementor .item .content-item .price-wrapper .unit {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  white-space: nowrap;
}
.services-item.item-elementor.list .item {
  padding-bottom: 0;
  display: flex;
  border: 1px solid #DEDEDE;
}
.services-item.item-elementor.list .item .featured-image {
  width: 40%;
  position: relative;
  overflow: hidden;
}
.services-item.item-elementor.list .item .featured-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-item.item-elementor.list .item .content-item {
  width: 60%;
  padding: 25px 30px;
}
.services-item.item-elementor.list .item .content-item .section-footer {
  margin-top: 20px;
  padding-top: 52px;
}
.services-item.item-elementor.list.list-2 .item .featured-image {
  width: 32%;
}
.services-item.item-elementor.list.list-2 .item .content-item {
  width: 68%;
  display: flex;
  padding: 30px;
}
.services-item.item-elementor.list.list-2 .item .content-item .content-item-left {
  width: 65%;
  padding-right: 30px;
}
.services-item.item-elementor.list.list-2 .item .content-item .content-item-right {
  width: 35%;
  border-left: 1px solid #DEDEDE;
  padding-left: 30px;
}
.services-item.item-elementor.list.list-2 .item .content-item .address .stt-icon {
  font-size: 15px;
  margin-right: 7px;
}
.services-item.item-elementor.list.list-2 .item .content-item .facilities {
  padding: 0;
  margin: 0;
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}
.services-item.item-elementor.list.list-2 .item .content-item .facilities:before {
  content: "";
  background: #DEDEDE;
  height: 1px;
  width: 50px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.services-item.item-elementor.list.list-2 .item .content-item .facilities li {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  float: left;
  list-style: none;
  position: relative;
  line-height: 23px;
}
.services-item.item-elementor.list.list-2 .item .content-item .facilities li:not(:last-child) {
  margin-right: 18px;
}
.services-item.item-elementor.list.list-2 .item .content-item .facilities li:not(:last-child):after {
  content: "";
  width: 2px;
  height: 2px;
  background: #232323;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 53%;
  right: -10px;
  transform: translateY(-50%);
}
.services-item.item-elementor.list.list-2 .item .content-item .reviews {
  margin-bottom: 60px;
}
.services-item.item-elementor.list.list-2 .item .content-item .reviews .rate-text:before {
  content: "";
  display: block;
  clear: both;
  margin-top: 9px;
}
.services-item.item-elementor.list .view-detail {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  color: #fff;
  padding: 10px 22px;
  margin-top: 14px;
  display: inline-block;
}

.service-add-wishlist {
  position: absolute;
  top: 22px;
  right: 10px;
  width: 30px;
  height: 30px;
  color: #fff;
  font-size: 21px;
  z-index: 1;
  cursor: pointer;
}
.service-add-wishlist .stt-icon {
  transition: all 0.1s;
}
.service-add-wishlist.added {
  color: #ff0000eb;
}
.service-add-wishlist.loading .lds-dual-ring {
  display: inline-block;
}
.service-add-wishlist.loading .fa {
  display: none;
}
.service-add-wishlist.loading .stt-icon {
  opacity: 0;
}

.lds-dual-ring {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  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;
}

.list-style .item-service {
  width: 100%;
}

.service-list-wrapper.service-tour .services-item.item-elementor .reviews i {
  color: #FFB21D;
}
.service-list-wrapper.service-tour .services-item.item-elementor .reviews .rate {
  background-color: transparent;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  padding: 0px;
  border: none;
  margin-right: 4px;
}
.service-list-wrapper.service-tour .services-item.item-elementor .price-wrapper {
  font-weight: 400;
  font-size: 14px;
  color: #727272;
  min-height: 42p !important;
}
.service-list-wrapper.service-tour .services-item.item-elementor .price-wrapper .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #232323;
  margin-left: 0px;
  margin-right: 0px;
}
.service-list-wrapper.service-tour .services-item.item-elementor .price-wrapper .price .item {
  box-shadow: none;
  display: block;
  width: 100%;
  line-height: 16px;
}
.service-list-wrapper.service-tour .services-item.item-elementor .price-wrapper .price .sale-top {
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #727272;
  align-items: center;
}
.service-list-wrapper.service-tour .services-item.item-elementor .price-wrapper .price .sale-top .item {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-left: 8px;
}
.service-list-wrapper.service-tour .services-item.item-elementor .item .content-item .title {
  margin-top: 6px;
  margin-bottom: 15px;
}
.service-list-wrapper.service-tour .services-item.item-elementor .item .content-item .reviews {
  margin-top: 0;
  margin-bottom: 15px;
}
.service-list-wrapper.service-tour .services-item.item-elementor .item.onsale {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #B1BAC1;
  text-decoration: line-through;
}
.service-list-wrapper.service-tour .services-item.item-elementor .st-list-footer {
  margin-top: 46px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .featured-image {
  width: 33.33%;
  position: relative;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .featured-image .service-avatar {
  bottom: 20px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item {
  width: 66.67%;
  padding: 30px;
  display: flex;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-left {
  width: 67.67%;
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-left .sub-title span i {
  margin-right: 8px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-right {
  width: 33.33%;
  border-left: 1px solid #dedede;
  padding-left: 30px;
  position: relative;
  display: inline-block;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-right .price-wrapper {
  min-height: unset;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-right .price-wrapper.service-duration, .service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-right .price-wrapper.service-type {
  margin-top: 0px;
  margin-bottom: 12px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-right .price-wrapper i.input-icon {
  margin-right: 4px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .content-item .content-item-right .price-wrapper .price .item {
  border: none;
  display: inline-block;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .type-btn-view-more {
  margin: 0px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .st-list-footer .price-wrapper {
  margin-bottom: 0px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .st-list-footer .price-wrapper .service-type {
  margin-bottom: 2px;
}
.service-list-wrapper.service-tour .services-item.list.item-elementor .st-list-footer .st_sale_class {
  width: 90px;
  height: 50px;
  right: -62px;
  top: -40px;
}

#st-content-wrapper.st-style-elementor.search-result-page {
  padding-bottom: 80px;
}
@media screen and (max-width: 992px) {
  #st-content-wrapper.st-style-elementor.search-result-page {
    padding-bottom: 50px;
  }
}
#st-content-wrapper.st-style-elementor.search-result-page .service-list-wrapper > [class*=col-] {
  margin-bottom: 0px;
}

.st-list-service.slider.style_2 {
  position: relative;
}
.st-list-service.slider.style_2 .swiper-slide {
  padding-left: 1px;
  padding-right: 1px;
}
.st-list-service.slider.style_2 .swiper-slide .services-item {
  margin-bottom: 0;
}
.st-list-service.slider.style_2 .swiper-slide .services-item .item {
  margin-bottom: 0;
}
.st-list-service.slider.style_2 .swiper-pagination {
  margin-top: 40px;
  position: relative;
}
.st-list-service.slider.style_2 .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #DEDEDE;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
  border: none;
}
.st-list-service.slider.style_2 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: var(--main-color, #3B71FE);
  position: relative;
  top: 1px;
}
.st-list-service.slider.style_2 .st-button-prev,
.st-list-service.slider.style_2 .st-button-next {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.st-list-service.slider.style_2 .st-button-prev span,
.st-list-service.slider.style_2 .st-button-next span {
  display: block;
  background: none;
  color: #232323;
  width: auto;
  height: auto;
  font-size: 14px;
  position: relative;
}
.st-list-service.slider.style_2 .st-button-prev {
  right: 50px;
  left: auto;
  top: -40px;
}
.st-list-service.slider.style_2 .st-button-next {
  right: 0;
  left: auto;
  top: -40px;
}

@media screen and (max-width: 767px) {
  .st-list-service.slider.style_2 .st-button-prev,
.st-list-service.slider.style_2 .st-button-next {
    display: none;
  }
}
.stt-mailchimp-form {
  position: relative;
}
.stt-mailchimp-form input[type=email] {
  border: 1px solid #DEDEDE;
  border-radius: 80px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #83929D;
  padding: 17px 30px;
}
.stt-mailchimp-form input[type=submit] {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 15px 20px;
  position: absolute;
  top: 6px;
  right: 6px;
}

.st-style-elementor.search-result-page.layout5, .st-style-elementor.search-result-page.layout-rental-4 {
  padding-bottom: 0 !important;
}

.st-style-elementor.search-result-page.layout5 #sticky-halfmap .col-left .modern-search-result, .st-style-elementor.search-result-page.tour-layout7 #sticky-halfmap .col-left .modern-search-result, .st-style-elementor.search-result-page.activity-layout5 #sticky-halfmap .col-left .modern-search-result, .st-style-elementor.search-result-page.car-layout4 #sticky-halfmap .col-left .modern-search-result,
.st-style-elementor.search-result-page.layout-rental-4 #sticky-halfmap .col-left .modern-search-result {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .st-style-elementor.search-result-page.layout5 #sticky-halfmap .col-left .modern-search-result, .st-style-elementor.search-result-page.tour-layout7 #sticky-halfmap .col-left .modern-search-result, .st-style-elementor.search-result-page.activity-layout5 #sticky-halfmap .col-left .modern-search-result, .st-style-elementor.search-result-page.car-layout4 #sticky-halfmap .col-left .modern-search-result,
.st-style-elementor.search-result-page.layout-rental-4 #sticky-halfmap .col-left .modern-search-result {
    padding-bottom: 50px;
  }
}
.st-style-elementor.search-result-page.layout5 .st-banner-search-form, .st-style-elementor.search-result-page.tour-layout7 .st-banner-search-form, .st-style-elementor.search-result-page.activity-layout5 .st-banner-search-form, .st-style-elementor.search-result-page.car-layout4 .st-banner-search-form,
.st-style-elementor.search-result-page.layout-rental-4 .st-banner-search-form {
  padding: 0 80px;
}
.st-style-elementor.search-result-page.layout5 .top-filter, .st-style-elementor.search-result-page.tour-layout7 .top-filter, .st-style-elementor.search-result-page.activity-layout5 .top-filter, .st-style-elementor.search-result-page.car-layout4 .top-filter,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter {
  background: #F7F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-style-elementor.search-result-page.layout5 .top-filter ul li:not(:last-child), .st-style-elementor.search-result-page.tour-layout7 .top-filter ul li:not(:last-child), .st-style-elementor.search-result-page.activity-layout5 .top-filter ul li:not(:last-child), .st-style-elementor.search-result-page.car-layout4 .top-filter ul li:not(:last-child),
.st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li:not(:last-child) {
  margin-right: 14px;
}
.st-style-elementor.search-result-page.layout5 .top-filter ul li .dropdown, .st-style-elementor.search-result-page.tour-layout7 .top-filter ul li .dropdown, .st-style-elementor.search-result-page.activity-layout5 .top-filter ul li .dropdown, .st-style-elementor.search-result-page.car-layout4 .top-filter ul li .dropdown,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li .dropdown {
  padding: 12px 20px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
  display: flex;
  align-items: center;
}
.st-style-elementor.search-result-page.layout5 .top-filter ul li .dropdown .stt-icon, .st-style-elementor.search-result-page.tour-layout7 .top-filter ul li .dropdown .stt-icon, .st-style-elementor.search-result-page.activity-layout5 .top-filter ul li .dropdown .stt-icon, .st-style-elementor.search-result-page.car-layout4 .top-filter ul li .dropdown .stt-icon,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li .dropdown .stt-icon {
  color: #727272;
  font-size: 13px;
  margin-left: 5px;
}
.st-style-elementor.search-result-page.layout5 .top-filter ul li .dropdown.active, .st-style-elementor.search-result-page.tour-layout7 .top-filter ul li .dropdown.active, .st-style-elementor.search-result-page.activity-layout5 .top-filter ul li .dropdown.active, .st-style-elementor.search-result-page.car-layout4 .top-filter ul li .dropdown.active,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li .dropdown.active {
  color: var(--main-color, #3B71FE);
  border-color: var(--main-color, #3B71FE);
}
.st-style-elementor.search-result-page.layout5 .top-filter ul li .dropdown.active .stt-icon, .st-style-elementor.search-result-page.tour-layout7 .top-filter ul li .dropdown.active .stt-icon, .st-style-elementor.search-result-page.activity-layout5 .top-filter ul li .dropdown.active .stt-icon, .st-style-elementor.search-result-page.car-layout4 .top-filter ul li .dropdown.active .stt-icon,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li .dropdown.active .stt-icon {
  color: var(--main-color, #3B71FE);
}
.st-style-elementor.search-result-page.layout5 .st-results, .st-style-elementor.search-result-page.tour-layout7 .st-results, .st-style-elementor.search-result-page.activity-layout5 .st-results, .st-style-elementor.search-result-page.car-layout4 .st-results,
.st-style-elementor.search-result-page.layout-rental-4 .st-results {
  margin-top: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map {
  display: flex;
  flex-wrap: wrap;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map #map-search-form, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map #map-search-form, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map #map-search-form, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map #map-search-form,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map #map-search-form {
  width: auto;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-right, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-right, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-right, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right {
  padding-left: 40px;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-right .col-left, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-right .col-left, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-right .col-left, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-right .col-left,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right .col-left {
  padding-right: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-right .col-right, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-right .col-right, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-right .col-right, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-right .col-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right .col-right {
  padding-left: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .dataarea, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .dataarea, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .dataarea, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .dataarea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .dataarea {
  padding-left: 40px;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .modern-search-result, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .modern-search-result, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .modern-search-result, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .modern-search-result,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .modern-search-result {
  padding-right: 35px;
  padding-left: 1px;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map [class*=col-], .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map [class*=col-], .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map [class*=col-], .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map [class*=col-],
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map [class*=col-] {
  margin-bottom: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-left,
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-left,
.st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-left,
.st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-left,
.st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-left,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-left #st-toggle-map,
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right #st-toggle-map, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-left #st-toggle-map,
.st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right #st-toggle-map, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-left #st-toggle-map,
.st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right #st-toggle-map, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-left #st-toggle-map,
.st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right #st-toggle-map,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-left #st-toggle-map,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right #st-toggle-map {
    display: none;
  }
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right {
  position: relative;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .toggle-map, .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .toggle-map, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .toggle-map, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .toggle-map, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .close-map-new,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .toggle-map,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .close-map-new {
  position: absolute;
  padding: 12px;
  width: 44px;
  height: 44px;
  left: 30px;
  top: 30px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .toggle-map span, .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .close-map-new span, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .toggle-map span, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .close-map-new span, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .toggle-map span, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .close-map-new span, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .toggle-map span, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .close-map-new span,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .toggle-map span,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .close-map-new span {
  color: #232323;
  font-size: 14px;
  position: relative;
  left: -1px;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .toggle-map.open, .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .close-map-new.open, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .toggle-map.open, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .close-map-new.open, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .toggle-map.open, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .close-map-new.open, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .toggle-map.open, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .close-map-new.open,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .toggle-map.open,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .close-map-new.open {
  transform: rotate(180deg);
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .close-map-new,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .close-map-new {
  display: none;
  left: 15px;
  top: 15px;
  width: 38px;
  height: 38px;
}
@media screen and (max-width: 991px) {
  .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .col-right .close-map-new, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .col-right .close-map-new,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .col-right .close-map-new {
    display: block;
    position: absolute;
    padding: 12px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    left: 15px;
    top: 15px;
    width: 38px;
    height: 38px;
  }
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .col-right, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .col-right, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .col-right, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .col-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .col-right {
  direction: ltr !important;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .google-control-top-right-area,
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .google-control-bottom-right-area, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .google-control-top-right-area,
.st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .google-control-bottom-right-area, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .google-control-top-right-area,
.st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .google-control-bottom-right-area, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .google-control-top-right-area,
.st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .google-control-bottom-right-area,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .google-control-top-right-area,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .google-control-bottom-right-area {
  left: 10px;
  right: auto !important;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .maparea, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .maparea, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .maparea, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .maparea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .maparea {
  z-index: 9999;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .maparea .toggle-map, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .maparea .toggle-map, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .maparea .toggle-map, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .maparea .toggle-map,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .maparea .toggle-map {
  left: auto;
  right: 30px;
  transform: rotate(180deg);
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-left .maparea .map-full-height, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map.map-left .maparea .map-full-height, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map.map-left .maparea .map-full-height, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map.map-left .maparea .map-full-height,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .maparea .map-full-height {
  transition: ease-in 0.2s;
}
.st-style-elementor.search-result-page.layout5 .st-results .page-half-map .content-item, .st-style-elementor.search-result-page.tour-layout7 .st-results .page-half-map .content-item, .st-style-elementor.search-result-page.activity-layout5 .st-results .page-half-map .content-item, .st-style-elementor.search-result-page.car-layout4 .st-results .page-half-map .content-item,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .content-item {
  display: block;
}
.st-style-elementor.search-result-page.layout5 .st-results .maparea, .st-style-elementor.search-result-page.tour-layout7 .st-results .maparea, .st-style-elementor.search-result-page.activity-layout5 .st-results .maparea, .st-style-elementor.search-result-page.car-layout4 .st-results .maparea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .maparea {
  width: calc(100% - 710px);
}
.st-style-elementor.search-result-page.layout5 .st-results .maparea .map-full-height, .st-style-elementor.search-result-page.tour-layout7 .st-results .maparea .map-full-height, .st-style-elementor.search-result-page.activity-layout5 .st-results .maparea .map-full-height, .st-style-elementor.search-result-page.car-layout4 .st-results .maparea .map-full-height,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .maparea .map-full-height {
  width: 100% !important;
}
.st-style-elementor.search-result-page.layout5 .st-results .maparea.to-full .map-full-height, .st-style-elementor.search-result-page.tour-layout7 .st-results .maparea.to-full .map-full-height, .st-style-elementor.search-result-page.activity-layout5 .st-results .maparea.to-full .map-full-height, .st-style-elementor.search-result-page.car-layout4 .st-results .maparea.to-full .map-full-height,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .maparea.to-full .map-full-height {
  width: calc(100vw - 15px) !important;
}
.st-style-elementor.search-result-page.layout5 .st-results .dataarea, .st-style-elementor.search-result-page.tour-layout7 .st-results .dataarea, .st-style-elementor.search-result-page.activity-layout5 .st-results .dataarea, .st-style-elementor.search-result-page.car-layout4 .st-results .dataarea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .dataarea {
  transition: ease-in 0.4s;
  width: 710px;
  position: relative;
}
.st-style-elementor.search-result-page.layout5 .st-results.nomap, .st-style-elementor.search-result-page.tour-layout7 .st-results.nomap, .st-style-elementor.search-result-page.activity-layout5 .st-results.nomap, .st-style-elementor.search-result-page.car-layout4 .st-results.nomap,
.st-style-elementor.search-result-page.layout-rental-4 .st-results.nomap {
  position: relative;
  padding-left: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results.nomap .page-half-map.map-right, .st-style-elementor.search-result-page.tour-layout7 .st-results.nomap .page-half-map.map-right, .st-style-elementor.search-result-page.activity-layout5 .st-results.nomap .page-half-map.map-right, .st-style-elementor.search-result-page.car-layout4 .st-results.nomap .page-half-map.map-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results.nomap .page-half-map.map-right {
  padding-left: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results.nomap .page-half-map.map-right .dataarea, .st-style-elementor.search-result-page.tour-layout7 .st-results.nomap .page-half-map.map-right .dataarea, .st-style-elementor.search-result-page.activity-layout5 .st-results.nomap .page-half-map.map-right .dataarea, .st-style-elementor.search-result-page.car-layout4 .st-results.nomap .page-half-map.map-right .dataarea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results.nomap .page-half-map.map-right .dataarea {
  margin-left: -710px;
  opacity: 0;
}
.st-style-elementor.search-result-page.layout5 .st-results.nomap .page-half-map.map-right .maparea, .st-style-elementor.search-result-page.tour-layout7 .st-results.nomap .page-half-map.map-right .maparea, .st-style-elementor.search-result-page.activity-layout5 .st-results.nomap .page-half-map.map-right .maparea, .st-style-elementor.search-result-page.car-layout4 .st-results.nomap .page-half-map.map-right .maparea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results.nomap .page-half-map.map-right .maparea {
  position: unset;
}
.st-style-elementor.search-result-page.layout5 .st-results.nomap .page-half-map.map-left .maparea, .st-style-elementor.search-result-page.tour-layout7 .st-results.nomap .page-half-map.map-left .maparea, .st-style-elementor.search-result-page.activity-layout5 .st-results.nomap .page-half-map.map-left .maparea, .st-style-elementor.search-result-page.car-layout4 .st-results.nomap .page-half-map.map-left .maparea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results.nomap .page-half-map.map-left .maparea {
  position: unset;
  z-index: 9999;
}
.st-style-elementor.search-result-page.layout5 .st-results.nomap .page-half-map.map-left .toggle-map.open, .st-style-elementor.search-result-page.tour-layout7 .st-results.nomap .page-half-map.map-left .toggle-map.open, .st-style-elementor.search-result-page.activity-layout5 .st-results.nomap .page-half-map.map-left .toggle-map.open, .st-style-elementor.search-result-page.car-layout4 .st-results.nomap .page-half-map.map-left .toggle-map.open,
.st-style-elementor.search-result-page.layout-rental-4 .st-results.nomap .page-half-map.map-left .toggle-map.open {
  transform: rotate(0);
}
.st-style-elementor.search-result-page.layout5 .toolbar .search-string .btn-clear-filter, .st-style-elementor.search-result-page.tour-layout7 .toolbar .search-string .btn-clear-filter, .st-style-elementor.search-result-page.activity-layout5 .toolbar .search-string .btn-clear-filter, .st-style-elementor.search-result-page.car-layout4 .toolbar .search-string .btn-clear-filter,
.st-style-elementor.search-result-page.layout-rental-4 .toolbar .search-string .btn-clear-filter {
  display: none !important;
}

.search-result-page.layout5 .st-results .show-map-mobile, .search-result-page.layout5 .st-results .map-view-mobile,
.search-result-page.layout6 .st-results .show-map-mobile,
.search-result-page.layout6 .st-results .map-view-mobile, .search-result-page.tour-layout6 .st-results .show-map-mobile, .search-result-page.tour-layout6 .st-results .map-view-mobile, .search-result-page.tour-layout7 .st-results .show-map-mobile, .search-result-page.tour-layout7 .st-results .map-view-mobile,
.search-result-page.activity-layout4 .st-results .show-map-mobile,
.search-result-page.activity-layout4 .st-results .map-view-mobile, .search-result-page.activity-layout5 .st-results .show-map-mobile, .search-result-page.activity-layout5 .st-results .map-view-mobile,
.search-result-page.car-layout3 .st-results .show-map-mobile,
.search-result-page.car-layout3 .st-results .map-view-mobile, .search-result-page.car-layout4 .st-results .show-map-mobile, .search-result-page.car-layout4 .st-results .map-view-mobile, .search-result-page.layout-rental-4 .st-results .show-map-mobile, .search-result-page.layout-rental-4 .st-results .map-view-mobile,
.search-result-page.layout-rental-5 .st-results .show-map-mobile,
.search-result-page.layout-rental-5 .st-results .map-view-mobile,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .show-map-mobile,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .map-view-mobile {
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  z-index: 9;
}
.search-result-page.layout5 .st-results .show-map-mobile a, .search-result-page.layout5 .st-results .map-view-mobile a,
.search-result-page.layout6 .st-results .show-map-mobile a,
.search-result-page.layout6 .st-results .map-view-mobile a, .search-result-page.tour-layout6 .st-results .show-map-mobile a, .search-result-page.tour-layout6 .st-results .map-view-mobile a, .search-result-page.tour-layout7 .st-results .show-map-mobile a, .search-result-page.tour-layout7 .st-results .map-view-mobile a,
.search-result-page.activity-layout4 .st-results .show-map-mobile a,
.search-result-page.activity-layout4 .st-results .map-view-mobile a, .search-result-page.activity-layout5 .st-results .show-map-mobile a, .search-result-page.activity-layout5 .st-results .map-view-mobile a,
.search-result-page.car-layout3 .st-results .show-map-mobile a,
.search-result-page.car-layout3 .st-results .map-view-mobile a, .search-result-page.car-layout4 .st-results .show-map-mobile a, .search-result-page.car-layout4 .st-results .map-view-mobile a, .search-result-page.layout-rental-4 .st-results .show-map-mobile a, .search-result-page.layout-rental-4 .st-results .map-view-mobile a,
.search-result-page.layout-rental-5 .st-results .show-map-mobile a,
.search-result-page.layout-rental-5 .st-results .map-view-mobile a,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .show-map-mobile a,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .map-view-mobile a {
  background: #3B71FE;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 10px 19px;
  display: flex;
  align-items: center;
}
.search-result-page.layout5 .st-results .show-map-mobile a .stt-icon, .search-result-page.layout5 .st-results .map-view-mobile a .stt-icon,
.search-result-page.layout6 .st-results .show-map-mobile a .stt-icon,
.search-result-page.layout6 .st-results .map-view-mobile a .stt-icon, .search-result-page.tour-layout6 .st-results .show-map-mobile a .stt-icon, .search-result-page.tour-layout6 .st-results .map-view-mobile a .stt-icon, .search-result-page.tour-layout7 .st-results .show-map-mobile a .stt-icon, .search-result-page.tour-layout7 .st-results .map-view-mobile a .stt-icon,
.search-result-page.activity-layout4 .st-results .show-map-mobile a .stt-icon,
.search-result-page.activity-layout4 .st-results .map-view-mobile a .stt-icon, .search-result-page.activity-layout5 .st-results .show-map-mobile a .stt-icon, .search-result-page.activity-layout5 .st-results .map-view-mobile a .stt-icon,
.search-result-page.car-layout3 .st-results .show-map-mobile a .stt-icon,
.search-result-page.car-layout3 .st-results .map-view-mobile a .stt-icon, .search-result-page.car-layout4 .st-results .show-map-mobile a .stt-icon, .search-result-page.car-layout4 .st-results .map-view-mobile a .stt-icon, .search-result-page.layout-rental-4 .st-results .show-map-mobile a .stt-icon, .search-result-page.layout-rental-4 .st-results .map-view-mobile a .stt-icon,
.search-result-page.layout-rental-5 .st-results .show-map-mobile a .stt-icon,
.search-result-page.layout-rental-5 .st-results .map-view-mobile a .stt-icon,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .show-map-mobile a .stt-icon,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .map-view-mobile a .stt-icon {
  font-size: 17px;
  margin-right: 7px;
}
.search-result-page.layout5 .st-results .toolbar,
.search-result-page.layout6 .st-results .toolbar, .search-result-page.tour-layout6 .st-results .toolbar, .search-result-page.tour-layout7 .st-results .toolbar,
.search-result-page.activity-layout4 .st-results .toolbar, .search-result-page.activity-layout5 .st-results .toolbar,
.search-result-page.car-layout3 .st-results .toolbar, .search-result-page.car-layout4 .st-results .toolbar, .search-result-page.layout-rental-4 .st-results .toolbar,
.search-result-page.layout-rental-5 .st-results .toolbar,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar {
  margin: 40px 0 !important;
  padding-right: 40px;
}
.search-result-page.layout5 .st-results .toolbar .modern-result-string,
.search-result-page.layout6 .st-results .toolbar .modern-result-string, .search-result-page.tour-layout6 .st-results .toolbar .modern-result-string, .search-result-page.tour-layout7 .st-results .toolbar .modern-result-string,
.search-result-page.activity-layout4 .st-results .toolbar .modern-result-string, .search-result-page.activity-layout5 .st-results .toolbar .modern-result-string,
.search-result-page.car-layout3 .st-results .toolbar .modern-result-string, .search-result-page.car-layout4 .st-results .toolbar .modern-result-string, .search-result-page.layout-rental-4 .st-results .toolbar .modern-result-string,
.search-result-page.layout-rental-5 .st-results .toolbar .modern-result-string,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .modern-result-string {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.search-result-page.layout5 .st-results .toolbar .modern-result-string span,
.search-result-page.layout6 .st-results .toolbar .modern-result-string span, .search-result-page.tour-layout6 .st-results .toolbar .modern-result-string span, .search-result-page.tour-layout7 .st-results .toolbar .modern-result-string span,
.search-result-page.activity-layout4 .st-results .toolbar .modern-result-string span, .search-result-page.activity-layout5 .st-results .toolbar .modern-result-string span,
.search-result-page.car-layout3 .st-results .toolbar .modern-result-string span, .search-result-page.car-layout4 .st-results .toolbar .modern-result-string span, .search-result-page.layout-rental-4 .st-results .toolbar .modern-result-string span,
.search-result-page.layout-rental-5 .st-results .toolbar .modern-result-string span,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .modern-result-string span {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action,
.search-result-page.layout6 .st-results .toolbar .toolbar-action, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .search-result-page.layout5 .st-results .toolbar .toolbar-action,
.search-result-page.layout6 .st-results .toolbar .toolbar-action, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action {
    display: flex !important;
  }
  .search-result-page.layout5 .st-results .toolbar .toolbar-action .layout,
.search-result-page.layout6 .st-results .toolbar .toolbar-action .layout, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action .layout, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action .layout,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action .layout, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action .layout,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action .layout, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action .layout, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action .layout,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action .layout,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action .layout {
    display: none;
  }
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li:not(:first-child),
.search-result-page.layout6 .st-results .toolbar .toolbar-action li:not(:first-child), .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li:not(:first-child), .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li:not(:first-child),
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li:not(:first-child), .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li:not(:first-child),
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li:not(:first-child), .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li:not(:first-child), .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li:not(:first-child),
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li:not(:first-child),
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li:not(:first-child) {
  margin-left: 27px;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-toggle,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-toggle, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li .dropdown-toggle, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li .dropdown-toggle,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li .dropdown-toggle, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li .dropdown-toggle,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li .dropdown-toggle, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li .dropdown-toggle, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li .dropdown-toggle,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li .dropdown-toggle,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown-toggle {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
  border-bottom: 1px solid #83929D;
  border-radius: 0;
  padding: 4px 0;
  display: flex;
  align-items: center;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-toggle span,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-toggle span, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li .dropdown-toggle span, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li .dropdown-toggle span,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li .dropdown-toggle span, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li .dropdown-toggle span,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li .dropdown-toggle span, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li .dropdown-toggle span, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li .dropdown-toggle span,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li .dropdown-toggle span,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown-toggle span {
  margin-left: 10px;
  font-size: 13px;
  color: #727272;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-menu,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-menu, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li .dropdown-menu, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li .dropdown-menu,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li .dropdown-menu,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li .dropdown-menu, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li .dropdown-menu,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li .dropdown-menu,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown-menu {
  padding: 30px 20px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 16px !important;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item {
  margin-bottom: 0;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .title {
  margin-bottom: 0;
  font-size: 14px;
  color: #727272;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown-menu .sort-item .st-icheck-item label {
  font-size: 16px;
  color: #232323;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li.layout, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li.layout, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li.layout, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li.layout, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li.layout, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li.layout {
  position: relative;
  top: 3px;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout .layout-item,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li.layout .layout-item, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li.layout .layout-item, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li.layout .layout-item,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li.layout .layout-item,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li.layout .layout-item, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout .layout-item,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout .layout-item,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li.layout .layout-item {
  margin-left: 0;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child),
.search-result-page.layout6 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child), .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child), .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child),
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child), .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child),
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child), .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child), .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child),
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child),
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li.layout .layout-item:not(:last-child) {
  margin-right: 15px;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li.layout .layout-item .stt-icon {
  font-size: 17px;
  color: #83929D;
}
.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon, .search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon, .search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon,
.search-result-page.activity-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon, .search-result-page.activity-layout5 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon,
.search-result-page.car-layout3 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon, .search-result-page.car-layout4 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon, .search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon,
.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li.layout .layout-item.active .stt-icon {
  color: var(--main-color, #3B71FE);
}
.search-result-page.layout5 .st-results .toolbar .show-filter-mobile,
.search-result-page.layout6 .st-results .toolbar .show-filter-mobile, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile, .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile, .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile,
.search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile, .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile, .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-result-page.layout5 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper,
.search-result-page.layout6 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper, .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper, .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper,
.search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper, .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper, .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .btn-filter-wrapper,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile .btn-filter-wrapper {
  display: flex;
  align-items: center;
}
.search-result-page.layout5 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.layout6 .st-results .toolbar .show-filter-mobile .button-filter, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .button-filter, .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .button-filter, .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .button-filter, .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile .button-filter, .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .button-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile .button-filter {
  cursor: pointer;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #232323;
  padding: 12px 20px;
  display: none;
  align-items: center;
}
.search-result-page.layout5 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon,
.search-result-page.layout6 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon, .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon, .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon,
.search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon, .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon, .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .button-filter .stt-icon,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile .button-filter .stt-icon {
  margin-right: 9px;
  font-size: 14px;
}
.search-result-page.layout5 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.layout6 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile .btn-clear-filter {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  text-decoration: underline;
}
@media screen and (min-width: 767px) {
  .search-result-page.layout5 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.layout6 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile .btn-clear-filter, .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .btn-clear-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile .btn-clear-filter {
    display: none !important;
  }
}
.search-result-page.layout5 .st-results .pagination,
.search-result-page.layout6 .st-results .pagination, .search-result-page.tour-layout6 .st-results .pagination, .search-result-page.tour-layout7 .st-results .pagination,
.search-result-page.activity-layout4 .st-results .pagination, .search-result-page.activity-layout5 .st-results .pagination,
.search-result-page.car-layout3 .st-results .pagination, .search-result-page.car-layout4 .st-results .pagination, .search-result-page.layout-rental-4 .st-results .pagination,
.search-result-page.layout-rental-5 .st-results .pagination,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination {
  margin-top: 10px;
  margin-bottom: 0px;
  line-height: 1;
}
.search-result-page.layout5 .st-results .pagination .count-string,
.search-result-page.layout6 .st-results .pagination .count-string, .search-result-page.tour-layout6 .st-results .pagination .count-string, .search-result-page.tour-layout7 .st-results .pagination .count-string,
.search-result-page.activity-layout4 .st-results .pagination .count-string, .search-result-page.activity-layout5 .st-results .pagination .count-string,
.search-result-page.car-layout3 .st-results .pagination .count-string, .search-result-page.car-layout4 .st-results .pagination .count-string, .search-result-page.layout-rental-4 .st-results .pagination .count-string,
.search-result-page.layout-rental-5 .st-results .pagination .count-string,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .count-string {
  display: none;
}
.search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #232323;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.current,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.current, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.current, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.current,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.current, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.current,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.current, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.current, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.current,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.current,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.current {
  color: #fff !important;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  background: var(--main-color, #3B71FE) !important;
}
.search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.next, .search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.prev,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.next,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.prev, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.next, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.prev, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.next, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.prev,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.next,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.prev, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.next, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.prev,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.next,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.prev, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.next, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.prev, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.next, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.prev,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.next,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.prev,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.next,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.prev {
  background: #F7F8FA;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
}
.search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.next .fa, .search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.prev .fa,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.next .fa,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.prev .fa, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.next .fa, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.prev .fa, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.next .fa, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.prev .fa,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.next .fa,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.prev .fa, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.next .fa, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.prev .fa,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.next .fa,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.prev .fa, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.next .fa, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.prev .fa, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.next .fa, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.prev .fa,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.next .fa,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.prev .fa,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.next .fa,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.prev .fa {
  font-family: "traveler-icon" !important;
  font-size: 12px;
  font-weight: 500;
}
.search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.next .fa:before,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.next .fa:before, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.next .fa:before, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.next .fa:before,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.next .fa:before, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.next .fa:before,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.next .fa:before, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.next .fa:before, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.next .fa:before,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.next .fa:before,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.next .fa:before {
  content: "\e968";
}
.search-result-page.layout5 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before,
.search-result-page.layout6 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before, .search-result-page.tour-layout6 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before, .search-result-page.tour-layout7 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before,
.search-result-page.activity-layout4 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before, .search-result-page.activity-layout5 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before,
.search-result-page.car-layout3 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before, .search-result-page.car-layout4 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before, .search-result-page.layout-rental-4 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before,
.search-result-page.layout-rental-5 .st-results .pagination .page-numbers li .page-numbers.prev .fa:before,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .pagination .page-numbers li .page-numbers.prev .fa:before {
  content: "\e966";
}
.search-result-page.layout5 .mapboxgl-popup-content,
.search-result-page.layout6 .mapboxgl-popup-content, .search-result-page.tour-layout6 .mapboxgl-popup-content, .search-result-page.tour-layout7 .mapboxgl-popup-content,
.search-result-page.activity-layout4 .mapboxgl-popup-content, .search-result-page.activity-layout5 .mapboxgl-popup-content,
.search-result-page.car-layout3 .mapboxgl-popup-content, .search-result-page.car-layout4 .mapboxgl-popup-content, .search-result-page.layout-rental-4 .mapboxgl-popup-content,
.search-result-page.layout-rental-5 .mapboxgl-popup-content,
.page-template-template-transfer-search .st-style-elementor.search-result-page .mapboxgl-popup-content {
  padding: 0;
  text-align: left !important;
  background: transparent;
  min-width: 280px;
  font-family: "DM Sans", sans-serif !important;
}
.search-result-page.layout5 .mapboxgl-popup-content .mapboxgl-popup-close-button,
.search-result-page.layout6 .mapboxgl-popup-content .mapboxgl-popup-close-button, .search-result-page.tour-layout6 .mapboxgl-popup-content .mapboxgl-popup-close-button, .search-result-page.tour-layout7 .mapboxgl-popup-content .mapboxgl-popup-close-button,
.search-result-page.activity-layout4 .mapboxgl-popup-content .mapboxgl-popup-close-button, .search-result-page.activity-layout5 .mapboxgl-popup-content .mapboxgl-popup-close-button,
.search-result-page.car-layout3 .mapboxgl-popup-content .mapboxgl-popup-close-button, .search-result-page.car-layout4 .mapboxgl-popup-content .mapboxgl-popup-close-button, .search-result-page.layout-rental-4 .mapboxgl-popup-content .mapboxgl-popup-close-button,
.search-result-page.layout-rental-5 .mapboxgl-popup-content .mapboxgl-popup-close-button,
.page-template-template-transfer-search .st-style-elementor.search-result-page .mapboxgl-popup-content .mapboxgl-popup-close-button {
  position: absolute !important;
  z-index: 9 !important;
  top: -10px !important;
  right: -10px !important;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #DA3838 !important;
  width: 23px;
  height: 23px;
  line-height: 9px;
}
.search-result-page.layout5 .mapboxgl-popup-content .close-popup-on-map,
.search-result-page.layout6 .mapboxgl-popup-content .close-popup-on-map, .search-result-page.tour-layout6 .mapboxgl-popup-content .close-popup-on-map, .search-result-page.tour-layout7 .mapboxgl-popup-content .close-popup-on-map,
.search-result-page.activity-layout4 .mapboxgl-popup-content .close-popup-on-map, .search-result-page.activity-layout5 .mapboxgl-popup-content .close-popup-on-map,
.search-result-page.car-layout3 .mapboxgl-popup-content .close-popup-on-map, .search-result-page.car-layout4 .mapboxgl-popup-content .close-popup-on-map, .search-result-page.layout-rental-4 .mapboxgl-popup-content .close-popup-on-map,
.search-result-page.layout-rental-5 .mapboxgl-popup-content .close-popup-on-map,
.page-template-template-transfer-search .st-style-elementor.search-result-page .mapboxgl-popup-content .close-popup-on-map {
  display: none;
}
.search-result-page.layout5 .mapboxgl-popup-content .services-item,
.search-result-page.layout6 .mapboxgl-popup-content .services-item, .search-result-page.tour-layout6 .mapboxgl-popup-content .services-item, .search-result-page.tour-layout7 .mapboxgl-popup-content .services-item,
.search-result-page.activity-layout4 .mapboxgl-popup-content .services-item, .search-result-page.activity-layout5 .mapboxgl-popup-content .services-item,
.search-result-page.car-layout3 .mapboxgl-popup-content .services-item, .search-result-page.car-layout4 .mapboxgl-popup-content .services-item, .search-result-page.layout-rental-4 .mapboxgl-popup-content .services-item,
.search-result-page.layout-rental-5 .mapboxgl-popup-content .services-item,
.page-template-template-transfer-search .st-style-elementor.search-result-page .mapboxgl-popup-content .services-item {
  margin-bottom: 0;
}

.close-sidebar {
  display: none;
}

.search-result-page.layout6 #map-search-form-mobile {
  height: 100%;
}

.search-result-page.layout6 .st-results .toolbar, .search-result-page.tour-layout6 .st-results .toolbar, .search-result-page.tour-layout7 .st-results .toolbar,
.search-result-page.activity-layout4 .st-results .toolbar, .search-result-page.activity-layout5 .st-results .toolbar,
.search-result-page.car-layout3 .st-results .toolbar, .search-result-page.car-layout4 .st-results .toolbar,
.st-style-elementor.search-result-page.layout-rental-5 .st-results .toolbar,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar {
  padding-right: 0;
  margin-top: 0 !important;
}
.search-result-page.layout6 .st-results .toolbar .search-string .btn-clear-filter, .search-result-page.tour-layout6 .st-results .toolbar .search-string .btn-clear-filter, .search-result-page.tour-layout7 .st-results .toolbar .search-string .btn-clear-filter,
.search-result-page.activity-layout4 .st-results .toolbar .search-string .btn-clear-filter, .search-result-page.activity-layout5 .st-results .toolbar .search-string .btn-clear-filter,
.search-result-page.car-layout3 .st-results .toolbar .search-string .btn-clear-filter, .search-result-page.car-layout4 .st-results .toolbar .search-string .btn-clear-filter,
.st-style-elementor.search-result-page.layout-rental-5 .st-results .toolbar .search-string .btn-clear-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .search-string .btn-clear-filter {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
}
.search-result-page.layout6 .sidebar-filter .sidebar-item .map-view, .search-result-page.tour-layout6 .sidebar-filter .sidebar-item .map-view, .search-result-page.tour-layout7 .sidebar-filter .sidebar-item .map-view,
.search-result-page.activity-layout4 .sidebar-filter .sidebar-item .map-view, .search-result-page.activity-layout5 .sidebar-filter .sidebar-item .map-view,
.search-result-page.car-layout3 .sidebar-filter .sidebar-item .map-view, .search-result-page.car-layout4 .sidebar-filter .sidebar-item .map-view,
.st-style-elementor.search-result-page.layout-rental-5 .sidebar-filter .sidebar-item .map-view,
.page-template-template-transfer-search .st-style-elementor.search-result-page .sidebar-filter .sidebar-item .map-view {
  position: relative;
  background: url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/elementorv2/assets/images/map-view-2.png) center center no-repeat;
  padding-top: 60px;
  padding-bottom: 20px;
  line-height: unset;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
.search-result-page.layout6 .sidebar-filter .sidebar-item .map-view .icon-marker, .search-result-page.tour-layout6 .sidebar-filter .sidebar-item .map-view .icon-marker, .search-result-page.tour-layout7 .sidebar-filter .sidebar-item .map-view .icon-marker,
.search-result-page.activity-layout4 .sidebar-filter .sidebar-item .map-view .icon-marker, .search-result-page.activity-layout5 .sidebar-filter .sidebar-item .map-view .icon-marker,
.search-result-page.car-layout3 .sidebar-filter .sidebar-item .map-view .icon-marker, .search-result-page.car-layout4 .sidebar-filter .sidebar-item .map-view .icon-marker,
.st-style-elementor.search-result-page.layout-rental-5 .sidebar-filter .sidebar-item .map-view .icon-marker,
.page-template-template-transfer-search .st-style-elementor.search-result-page .sidebar-filter .sidebar-item .map-view .icon-marker {
  font-size: 29px;
  color: #DA3838;
  display: block;
  margin-bottom: 35px;
}
.search-result-page.layout6 .sidebar-filter .sidebar-item .map-view .map-view-button, .search-result-page.tour-layout6 .sidebar-filter .sidebar-item .map-view .map-view-button, .search-result-page.tour-layout7 .sidebar-filter .sidebar-item .map-view .map-view-button,
.search-result-page.activity-layout4 .sidebar-filter .sidebar-item .map-view .map-view-button, .search-result-page.activity-layout5 .sidebar-filter .sidebar-item .map-view .map-view-button,
.search-result-page.car-layout3 .sidebar-filter .sidebar-item .map-view .map-view-button, .search-result-page.car-layout4 .sidebar-filter .sidebar-item .map-view .map-view-button,
.st-style-elementor.search-result-page.layout-rental-5 .sidebar-filter .sidebar-item .map-view .map-view-button,
.page-template-template-transfer-search .st-style-elementor.search-result-page .sidebar-filter .sidebar-item .map-view .map-view-button {
  padding: 12px 22px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  display: inline-flex;
  align-items: center;
}
.search-result-page.layout6 .sidebar-filter .sidebar-item .map-view .map-view-button span, .search-result-page.tour-layout6 .sidebar-filter .sidebar-item .map-view .map-view-button span, .search-result-page.tour-layout7 .sidebar-filter .sidebar-item .map-view .map-view-button span,
.search-result-page.activity-layout4 .sidebar-filter .sidebar-item .map-view .map-view-button span, .search-result-page.activity-layout5 .sidebar-filter .sidebar-item .map-view .map-view-button span,
.search-result-page.car-layout3 .sidebar-filter .sidebar-item .map-view .map-view-button span, .search-result-page.car-layout4 .sidebar-filter .sidebar-item .map-view .map-view-button span,
.st-style-elementor.search-result-page.layout-rental-5 .sidebar-filter .sidebar-item .map-view .map-view-button span,
.page-template-template-transfer-search .st-style-elementor.search-result-page .sidebar-filter .sidebar-item .map-view .map-view-button span {
  color: var(--main-color, #3B71FE);
  font-size: 11px;
  margin-left: 12px;
}

.search-result-page.layout5 .pagination {
  margin-bottom: 30px;
}

@media screen and (max-width: 1400px) {
  .search-result-page.layout5 .st-results .page-half-map .dataarea {
    width: 650px;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea {
    width: calc(100% - 650px);
  }
  .search-result-page.layout5 .st-results.nomap .page-half-map.map-right .dataarea {
    margin-left: -650px;
  }
}
@media screen and (max-width: 1199px) {
  .st-style-elementor.search-result-page.layout5 .st-banner-search-form,
.st-style-elementor.search-result-page.tour-layout7 .st-banner-search-form,
.st-style-elementor.search-result-page.activity-layout4 .st-banner-search-form, .st-style-elementor.search-result-page.activity-layout5 .st-banner-search-form,
.st-style-elementor.search-result-page.car-layout3 .st-banner-search-form, .st-style-elementor.search-result-page.car-layout4 .st-banner-search-form,
.st-style-elementor.search-result-page.layout-rental-4 .st-banner-search-form {
    padding: 0;
  }

  .search-result-page.layout6 .modern-search-result .service-list-wrapper:not(.list-style) .item-service {
    width: 50%;
  }
}
@media screen and (max-width: 991px) {
  .search-result-page.layout5 .st-results .page-half-map .dataarea, .search-result-page.tour-layout7 .st-results .page-half-map .dataarea,
.search-result-page.activity-layout4 .st-results .page-half-map .dataarea, .search-result-page.activity-layout5 .st-results .page-half-map .dataarea,
.search-result-page.car-layout3 .st-results .page-half-map .dataarea, .search-result-page.car-layout4 .st-results .page-half-map .dataarea {
    width: 100%;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea, .search-result-page.tour-layout7 .st-results .page-half-map .maparea,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea, .search-result-page.activity-layout5 .st-results .page-half-map .maparea,
.search-result-page.car-layout3 .st-results .page-half-map .maparea, .search-result-page.car-layout4 .st-results .page-half-map .maparea {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background: #fff;
    z-index: 999999;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea .map-full-height, .search-result-page.tour-layout7 .st-results .page-half-map .maparea .map-full-height,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea .map-full-height, .search-result-page.activity-layout5 .st-results .page-half-map .maparea .map-full-height,
.search-result-page.car-layout3 .st-results .page-half-map .maparea .map-full-height, .search-result-page.car-layout4 .st-results .page-half-map .maparea .map-full-height {
    position: unset !important;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea .map-full-height .google-control-top-right-area, .search-result-page.tour-layout7 .st-results .page-half-map .maparea .map-full-height .google-control-top-right-area,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea .map-full-height .google-control-top-right-area, .search-result-page.activity-layout5 .st-results .page-half-map .maparea .map-full-height .google-control-top-right-area,
.search-result-page.car-layout3 .st-results .page-half-map .maparea .map-full-height .google-control-top-right-area, .search-result-page.car-layout4 .st-results .page-half-map .maparea .map-full-height .google-control-top-right-area {
    display: none !important;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea .toggle-map, .search-result-page.tour-layout7 .st-results .page-half-map .maparea .toggle-map,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea .toggle-map, .search-result-page.activity-layout5 .st-results .page-half-map .maparea .toggle-map,
.search-result-page.car-layout3 .st-results .page-half-map .maparea .toggle-map, .search-result-page.car-layout4 .st-results .page-half-map .maparea .toggle-map {
    display: none;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea .close-map-new, .search-result-page.tour-layout7 .st-results .page-half-map .maparea .close-map-new,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea .close-map-new, .search-result-page.activity-layout5 .st-results .page-half-map .maparea .close-map-new,
.search-result-page.car-layout3 .st-results .page-half-map .maparea .close-map-new, .search-result-page.car-layout4 .st-results .page-half-map .maparea .close-map-new {
    display: flex;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea .map-title, .search-result-page.tour-layout7 .st-results .page-half-map .maparea .map-title,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea .map-title, .search-result-page.activity-layout5 .st-results .page-half-map .maparea .map-title,
.search-result-page.car-layout3 .st-results .page-half-map .maparea .map-title, .search-result-page.car-layout4 .st-results .page-half-map .maparea .map-title {
    display: none;
  }
  .search-result-page.layout5 .st-results .page-half-map .maparea .search-move-map, .search-result-page.tour-layout7 .st-results .page-half-map .maparea .search-move-map,
.search-result-page.activity-layout4 .st-results .page-half-map .maparea .search-move-map, .search-result-page.activity-layout5 .st-results .page-half-map .maparea .search-move-map,
.search-result-page.car-layout3 .st-results .page-half-map .maparea .search-move-map, .search-result-page.car-layout4 .st-results .page-half-map .maparea .search-move-map {
    padding: 6px 10px;
    top: 15px;
    right: 15px;
    transform: none;
    left: auto;
  }
  .search-result-page.layout5 .st-results .toolbar, .search-result-page.tour-layout7 .st-results .toolbar,
.search-result-page.activity-layout4 .st-results .toolbar, .search-result-page.activity-layout5 .st-results .toolbar,
.search-result-page.car-layout3 .st-results .toolbar, .search-result-page.car-layout4 .st-results .toolbar {
    display: block !important;
  }
  .search-result-page.layout5 .top-filter, .search-result-page.tour-layout7 .top-filter,
.search-result-page.activity-layout4 .top-filter, .search-result-page.activity-layout5 .top-filter,
.search-result-page.car-layout3 .top-filter, .search-result-page.car-layout4 .top-filter {
    padding: 30px 20px !important;
    height: auto !important;
    display: block;
  }
  .search-result-page.layout5 .top-filter .btn-clear-filter, .search-result-page.tour-layout7 .top-filter .btn-clear-filter,
.search-result-page.activity-layout4 .top-filter .btn-clear-filter, .search-result-page.activity-layout5 .top-filter .btn-clear-filter,
.search-result-page.car-layout3 .top-filter .btn-clear-filter, .search-result-page.car-layout4 .top-filter .btn-clear-filter {
    white-space: nowrap;
  }
  .search-result-page.layout5 .top-filter > ul, .search-result-page.tour-layout7 .top-filter > ul,
.search-result-page.activity-layout4 .top-filter > ul, .search-result-page.activity-layout5 .top-filter > ul,
.search-result-page.car-layout3 .top-filter > ul, .search-result-page.car-layout4 .top-filter > ul {
    width: auto;
    overflow-x: scroll;
  }
  .search-result-page.layout5 .top-filter > ul::-webkit-scrollbar, .search-result-page.tour-layout7 .top-filter > ul::-webkit-scrollbar,
.search-result-page.activity-layout4 .top-filter > ul::-webkit-scrollbar, .search-result-page.activity-layout5 .top-filter > ul::-webkit-scrollbar,
.search-result-page.car-layout3 .top-filter > ul::-webkit-scrollbar, .search-result-page.car-layout4 .top-filter > ul::-webkit-scrollbar {
    height: 4px;
    width: 4px;
    background-color: #F5F5F5;
  }
  .search-result-page.layout5 .top-filter > ul::-webkit-scrollbar-thumb, .search-result-page.tour-layout7 .top-filter > ul::-webkit-scrollbar-thumb,
.search-result-page.activity-layout4 .top-filter > ul::-webkit-scrollbar-thumb, .search-result-page.activity-layout5 .top-filter > ul::-webkit-scrollbar-thumb,
.search-result-page.car-layout3 .top-filter > ul::-webkit-scrollbar-thumb, .search-result-page.car-layout4 .top-filter > ul::-webkit-scrollbar-thumb {
    background-color: #dedede;
    border: 4px solid #d3cbcb;
  }

  .search-result-page.layout6 .st-results .toolbar .show-filter-mobile, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile,
.search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile {
    width: 100%;
  }
  .search-result-page.layout6 .st-results .toolbar .show-filter-mobile .button-filter, .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .button-filter,
.search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .button-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .show-filter-mobile .button-filter {
    display: inline-flex;
  }
  .search-result-page.layout6 .st-results .toolbar .modern-result-string, .search-result-page.tour-layout6 .st-results .toolbar .modern-result-string,
.search-result-page.activity-layout4 .st-results .toolbar .modern-result-string,
.search-result-page.layout-rental-4 .st-results .toolbar .modern-result-string,
.search-result-page.layout-rental-5 .st-results .toolbar .modern-result-string,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .modern-result-string {
    text-align: left;
    margin-top: 15px;
  }
  .search-result-page.layout6 .st-results .toolbar .modern-result-string .btn-clear-filter, .search-result-page.tour-layout6 .st-results .toolbar .modern-result-string .btn-clear-filter,
.search-result-page.activity-layout4 .st-results .toolbar .modern-result-string .btn-clear-filter,
.search-result-page.layout-rental-4 .st-results .toolbar .modern-result-string .btn-clear-filter,
.search-result-page.layout-rental-5 .st-results .toolbar .modern-result-string .btn-clear-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .modern-result-string .btn-clear-filter {
    display: none !important;
  }
  .search-result-page.layout6 .st-results .sidebar-filter, .search-result-page.tour-layout6 .st-results .sidebar-filter,
.search-result-page.activity-layout4 .st-results .sidebar-filter,
.search-result-page.layout-rental-4 .st-results .sidebar-filter,
.search-result-page.layout-rental-5 .st-results .sidebar-filter,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .sidebar-filter {
    padding: 30px;
  }
  .search-result-page.layout6 .st-results .sidebar-filter .close-sidebar, .search-result-page.tour-layout6 .st-results .sidebar-filter .close-sidebar,
.search-result-page.activity-layout4 .st-results .sidebar-filter .close-sidebar,
.search-result-page.layout-rental-4 .st-results .sidebar-filter .close-sidebar,
.search-result-page.layout-rental-5 .st-results .sidebar-filter .close-sidebar,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .sidebar-filter .close-sidebar {
    font-size: 21px;
    color: #232323;
    margin-bottom: 20px;
    display: inline-block;
    cursor: pointer;
    display: block;
  }
  .search-result-page.layout6 .st-results .sidebar-filter .sidebar-item.map-view-wrapper, .search-result-page.tour-layout6 .st-results .sidebar-filter .sidebar-item.map-view-wrapper,
.search-result-page.activity-layout4 .st-results .sidebar-filter .sidebar-item.map-view-wrapper,
.search-result-page.layout-rental-4 .st-results .sidebar-filter .sidebar-item.map-view-wrapper,
.search-result-page.layout-rental-5 .st-results .sidebar-filter .sidebar-item.map-view-wrapper,
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .sidebar-filter .sidebar-item.map-view-wrapper {
    display: none !important;
  }

  .search-result-page.layout5 .st-results .show-map-mobile, .search-result-page.layout5 .st-results .map-view-mobile,
.search-result-page.layout6 .st-results .show-map-mobile,
.search-result-page.layout6 .st-results .map-view-mobile,
.search-result-page.layout-rental-4 .st-results .show-map-mobile,
.search-result-page.layout-rental-4 .st-results .map-view-mobile,
.search-result-page.layout-rental-5 .st-results .show-map-mobile,
.search-result-page.layout-rental-5 .st-results .map-view-mobile {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .search-result-page.layout5 .st-results .page-half-map .dataarea, .search-result-page.tour-layout7 .st-results .page-half-map .dataarea,
.search-result-page.activity-layout5 .st-results .page-half-map .dataarea, .search-result-page.car-layout4 .st-results .page-half-map .dataarea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .dataarea {
    width: 100%;
  }
  .search-result-page.layout5 .st-results .page-half-map.map-right, .search-result-page.tour-layout7 .st-results .page-half-map.map-right,
.search-result-page.activity-layout5 .st-results .page-half-map.map-right, .search-result-page.car-layout4 .st-results .page-half-map.map-right,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right {
    padding-left: 15px;
  }
  .search-result-page.layout5 .st-results .page-half-map.map-right .dataarea .modern-search-result, .search-result-page.tour-layout7 .st-results .page-half-map.map-right .dataarea .modern-search-result,
.search-result-page.activity-layout5 .st-results .page-half-map.map-right .dataarea .modern-search-result, .search-result-page.car-layout4 .st-results .page-half-map.map-right .dataarea .modern-search-result,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right .dataarea .modern-search-result {
    padding-right: 15px;
  }
  .search-result-page.layout5 .st-results .page-half-map.map-left .dataarea, .search-result-page.tour-layout7 .st-results .page-half-map.map-left .dataarea,
.search-result-page.activity-layout5 .st-results .page-half-map.map-left .dataarea, .search-result-page.car-layout4 .st-results .page-half-map.map-left .dataarea,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .dataarea {
    padding-left: 15px;
  }
  .search-result-page.layout5 .st-results .page-half-map.map-left .dataarea .toolbar, .search-result-page.tour-layout7 .st-results .page-half-map.map-left .dataarea .toolbar,
.search-result-page.activity-layout5 .st-results .page-half-map.map-left .dataarea .toolbar, .search-result-page.car-layout4 .st-results .page-half-map.map-left .dataarea .toolbar,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .dataarea .toolbar {
    padding-right: 15px;
  }
  .search-result-page.layout5 .st-results .page-half-map.map-left .dataarea .modern-search-result, .search-result-page.tour-layout7 .st-results .page-half-map.map-left .dataarea .modern-search-result,
.search-result-page.activity-layout5 .st-results .page-half-map.map-left .dataarea .modern-search-result, .search-result-page.car-layout4 .st-results .page-half-map.map-left .dataarea .modern-search-result,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-left .dataarea .modern-search-result {
    padding-right: 15px;
  }
  .search-result-page.layout5 .st-results .page-half-map .toolbar, .search-result-page.tour-layout7 .st-results .page-half-map .toolbar,
.search-result-page.activity-layout5 .st-results .page-half-map .toolbar, .search-result-page.car-layout4 .st-results .page-half-map .toolbar,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .toolbar {
    padding-right: 15px;
    flex-wrap: wrap;
    align-items: flex-start !important;
    justify-content: space-between !important;
    flex-direction: unset !important;
  }
  .search-result-page.layout5 .st-results .page-half-map .toolbar .toolbar-action, .search-result-page.tour-layout7 .st-results .page-half-map .toolbar .toolbar-action,
.search-result-page.activity-layout5 .st-results .page-half-map .toolbar .toolbar-action, .search-result-page.car-layout4 .st-results .page-half-map .toolbar .toolbar-action,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .toolbar .toolbar-action {
    display: flex !important;
    margin-top: 0;
    order: 2;
  }
  .search-result-page.layout5 .st-results .page-half-map .toolbar .modern-result-string, .search-result-page.tour-layout7 .st-results .page-half-map .toolbar .modern-result-string,
.search-result-page.activity-layout5 .st-results .page-half-map .toolbar .modern-result-string, .search-result-page.car-layout4 .st-results .page-half-map .toolbar .modern-result-string,
.st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .toolbar .modern-result-string {
    padding-right: 20px;
    margin-top: 0;
  }
  .search-result-page.layout5 .top-filter, .search-result-page.tour-layout7 .top-filter,
.search-result-page.activity-layout5 .top-filter, .search-result-page.car-layout4 .top-filter,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter {
    justify-content: flex-start;
    padding: 0;
  }
  .search-result-page.layout5 .top-filter > ul, .search-result-page.tour-layout7 .top-filter > ul,
.search-result-page.activity-layout5 .top-filter > ul, .search-result-page.car-layout4 .top-filter > ul,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter > ul {
    padding: 16px 15px;
    display: flex;
    overflow: auto;
  }
  .search-result-page.layout5 .top-filter > ul li .dropdown, .search-result-page.tour-layout7 .top-filter > ul li .dropdown,
.search-result-page.activity-layout5 .top-filter > ul li .dropdown, .search-result-page.car-layout4 .top-filter > ul li .dropdown,
.st-style-elementor.search-result-page.layout-rental-4 .top-filter > ul li .dropdown {
    white-space: nowrap;
  }

  .search-result-page.layout6 .modern-search-result .service-list-wrapper:not(.list-style) .item-service {
    width: 100%;
  }
  .search-result-page.layout6 .st-results .toolbar .toolbar-action {
    display: flex !important;
  }
}
@media screen and (max-width: 580px) {
  .search-result-page.layout5 .st-banner-search-form,
.search-result-page.layout6 .st-banner-search-form,
.search-result-page.tour-layout6 .st-banner-search-form,
.search-result-page.tour-layout7 .st-banner-search-form {
    padding: 0;
  }
  .search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.layout6 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.tour-layout6 .st-results .toolbar .toolbar-action li.layout,
.search-result-page.tour-layout7 .st-results .toolbar .toolbar-action li.layout {
    display: none;
  }
}
.search-result-page.tour-layout7 .top-filter, .search-result-page.activity-layout5 .top-filter, .search-result-page.car-layout4 .top-filter {
  margin-bottom: 40px;
}
.search-result-page.tour-layout7 .top-filter .filter-price .dropdown-menu.show, .search-result-page.activity-layout5 .top-filter .filter-price .dropdown-menu.show, .search-result-page.car-layout4 .top-filter .filter-price .dropdown-menu.show {
  display: block !important;
}

.search-result-page.layout5 .top-filter .filter-price .dropdown-menu.show {
  display: block !important;
}

.item-service-map-new {
  position: relative;
  font-family: "DM Sans", sans-serif !important;
}
.item-service-map-new .featured-image {
  display: block;
  overflow: hidden;
}
.item-service-map-new .featured-image a {
  display: block;
}
.item-service-map-new .featured-image a img {
  max-width: 100%;
  transition: all 0.3s;
}
.item-service-map-new .close-popup-on-map {
  position: absolute;
  z-index: 9;
  top: -10px;
  right: -10px;
  background: #fff;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-service-map-new .close-popup-on-map .stt-icon {
  font-size: 10px;
  position: relative;
  top: 1px;
  left: 1px;
  color: #DA3838;
}
.item-service-map-new .services-item .item {
  padding-bottom: 0 !important;
}
.item-service-map-new .services-item .featured-image {
  position: relative;
}
.item-service-map-new .services-item .featured-image .service-avatar {
  bottom: 20px;
}
.item-service-map-new.popup-rental .item .featured-image a {
  display: inline-block;
  overflow: hidden;
}
.item-service-map-new.popup-rental .item .featured-image a img {
  border-radius: 0;
  overflow: hidden;
  max-width: 100%;
  display: inline-block;
}
.item-service-map-new.popup-rental .item .featured-image .service-avatar {
  bottom: -16px;
}
.item-service-map-new.popup-rental .item .content-item .section-footer {
  margin-top: 20px;
  padding-top: 20px;
}
.item-service-map-new.popup-rental .item .content-item .section-footer .price-tour span {
  margin: 0px;
}
.item-service-map-new.popup-rental .item .content-item .price-wrapper {
  min-height: unset;
}
.item-service-map-new.popup-rental .item .content-item h4.title {
  margin-bottom: 20px;
}
.item-service-map-new.popup-rental .item .content-item .amenities {
  margin-bottom: 20px;
}
.item-service-map-new.popup-rental .item .content-item .amenities .amenity {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #727272;
  margin-right: 22px;
}
.item-service-map-new.popup-rental .item .content-item .amenities .amenity span {
  font-size: 18px;
  margin-right: 7px;
}
.item-service-map-new.popup-rental .item .content-item .reviews {
  display: none;
}
.item-service-map-new.popup-rental .item .reviews i {
  color: #FFB21D;
}
.item-service-map-new.popup-rental .item .reviews .rate {
  background-color: transparent;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  padding: 0px;
  border: none;
  margin-right: 4px;
}
.item-service-map-new.popup-rental .item .price-wrapper {
  font-weight: 400;
  font-size: 14px;
  color: #727272;
  min-height: 42px;
}
.item-service-map-new.popup-rental .item .price-wrapper .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  color: #232323;
  margin-left: 0px;
  margin-right: 0px;
}
.item-service-map-new.popup-rental .item .price-wrapper .price .item {
  box-shadow: none;
  display: block;
  width: 100%;
  line-height: 16px;
}
.item-service-map-new.popup-rental .item .price-wrapper .price .sale-top {
  display: flex;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #727272;
  align-items: center;
}
.item-service-map-new.popup-rental .item .price-wrapper .price .sale-top .item {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-left: 8px;
}
.item-service-map-new.popup-rental .item .item .content-item .title {
  margin-top: 6px;
  margin-bottom: 15px;
}
.item-service-map-new.popup-rental .item .item .content-item .reviews {
  margin-top: 0;
  margin-bottom: 15px;
}
.item-service-map-new.popup-rental .item .item.onsale {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #B1BAC1;
  text-decoration: line-through;
}

.infoBox > div {
  border-radius: 20px !important;
}

.search-move-map {
  padding: 10px;
  position: absolute;
  top: 30px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 9px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.search-move-map label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.search-move-map label .checkmark {
  border: 1px solid #83929D;
  border-radius: 5px !important;
  height: 19px;
  width: 19px;
  top: 3px !important;
}
.search-move-map label .checkmark:after {
  left: 6px !important;
  top: 3px !important;
  width: 6px !important;
  height: 9px !important;
  border-color: var(--main-color, #3B71FE) !important;
}

.single .item-service-map-new .featured-image img {
  width: 100%;
  height: auto;
}

.map-view-popup.style-2 {
  background: rgba(0, 0, 0, 0.4);
  padding: 60px;
}
.map-view-popup.style-2 .map-full-height {
  border-radius: 20px;
}
.map-view-popup.style-2 .search-move-map {
  top: 90px;
}
.map-view-popup.style-2 .close {
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  position: absolute;
  right: 32px;
  top: 32px;
  display: flex;
  align-items: center;
  z-index: 9;
  justify-content: center;
  cursor: pointer;
}
.map-view-popup.style-2 .close span {
  font-size: 13px;
  color: #232323;
}

.stt-price-label {
  padding: 0;
  padding-bottom: 5px;
}
.stt-price-label .inner {
  background: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  color: #232323;
  padding: 13px 10px 11px 10px;
  position: relative;
  font-family: "DM Sans", sans-serif !important;
  transition: all 0.2s;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
}
.stt-price-label .inner:after {
  content: "";
  border: 5px solid #fff;
  display: inline-block;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
  bottom: -9px;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  transition: all 0.2s;
}
.stt-price-label.hover, .stt-price-label.c-hover, .stt-price-label:hover {
  cursor: pointer;
  z-index: 9999 !important;
}
.stt-price-label.hover .inner, .stt-price-label.c-hover .inner, .stt-price-label:hover .inner {
  background: var(--main-color, #3B71FE);
  color: #fff;
}
.stt-price-label.hover .inner:after, .stt-price-label.c-hover .inner:after, .stt-price-label:hover .inner:after {
  border-top-color: var(--main-color, #3B71FE);
}

.google-control-bottom-right-area {
  margin-bottom: 15px;
  margin-right: 10px;
}
.google-control-bottom-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;
}

.mapboxgl-popup.mapboxgl-popup-anchor-top {
  top: 60px;
}
.mapboxgl-popup.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  display: none;
}

/*
.maparea.to-full{
    width: 100%;
}*/
@media screen and (max-width: 991px) {
  .map-view-popup.style-2 {
    padding: 0;
    background: #fff;
  }
  .map-view-popup.style-2 .map-full-height {
    border-radius: 0;
  }
  .map-view-popup.style-2 .map-full-height .google-control-top-right-area {
    display: none !important;
  }
  .map-view-popup.style-2 .close {
    position: absolute;
    padding: 12px;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    left: 15px;
    top: 15px;
    width: 38px;
    height: 38px;
  }
  .map-view-popup.style-2 .close span {
    color: #232323;
    font-size: 14px;
    position: relative;
    left: -1px;
  }
  .map-view-popup.style-2 .search-move-map {
    padding: 6px 10px;
    top: 15px;
    right: 15px;
    transform: none;
    left: auto;
  }
}
.st-style-elementor .top-filter {
  position: relative;
}
.st-style-elementor .top-filter .dropdown-menu {
  padding: 30px 20px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-top: 10px !important;
}
.st-style-elementor .top-filter .dropdown-menu .dropdown-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-bottom: 20px;
}
.st-style-elementor .top-filter .dropdown-menu .min-max-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.st-style-elementor .top-filter .dropdown-menu .min-max-value .item-value {
  padding: 4px 12px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  width: 44%;
}
.st-style-elementor .top-filter .dropdown-menu .min-max-value .item-value span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
}
.st-style-elementor .top-filter .dropdown-menu .min-max-value:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 10px;
  background: #DEDEDE;
}
.st-style-elementor .top-filter .dropdown-menu .price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #DEDEDE;
}
.st-style-elementor .top-filter .dropdown-menu .price-action a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  color: var(--main-color, #3B71FE);
}
.st-style-elementor .top-filter .dropdown-menu .price-action button {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 13px 22px;
}
.st-style-elementor .top-filter .dropdown-menu .irs .irs-line {
  background: #DEDEDE;
  border-radius: 3px;
  height: 4px !important;
}
.st-style-elementor .top-filter .dropdown-menu .irs .irs-min,
.st-style-elementor .top-filter .dropdown-menu .irs .irs-max,
.st-style-elementor .top-filter .dropdown-menu .irs .irs-from,
.st-style-elementor .top-filter .dropdown-menu .irs .irs-to {
  display: none !important;
}
.st-style-elementor .top-filter .dropdown-menu .irs .irs-bar {
  background: var(--main-color, #3B71FE);
  height: 4px !important;
}
.st-style-elementor .top-filter .dropdown-menu .irs .irs-handle {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--main-color, #3B71FE);
  margin-top: -5px;
}
.st-style-elementor .top-filter .dropdown-menu .irs .irs-handle i {
  display: none;
}
.st-style-elementor .top-filter .dropdown-menu {
  max-width: 300px;
  max-height: 325px;
}
.st-style-elementor .top-filter .st-icheck-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  padding-left: 32px;
}
.st-style-elementor .top-filter .st-icheck-item label span {
  margin-right: 5px;
}
.st-style-elementor .top-filter .st-icheck-item label span.real-star i {
  font-size: 15px;
  color: #F09E00;
}
.st-style-elementor .top-filter .st-icheck-item label span.fake-star i {
  color: #D7DBE3;
}
.st-style-elementor .top-filter .st-icheck-item label .checkmark {
  border: 1px solid #83929D;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  top: 3px;
}
.st-style-elementor .top-filter .st-icheck-item label .checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-color: var(--main-color, #3B71FE);
}
.st-style-elementor .top-filter .st-icheck-item input:checked ~ .checkmark {
  background: var(--main-color, #3B71FE) !important;
  border-color: var(--main-color, #3B71FE) !important;
}
.st-style-elementor .top-filter .st-icheck-item input:checked ~ .checkmark:after {
  border-color: #fff;
}
.st-style-elementor .top-filter .filter-price .dropdown-menu,
.st-style-elementor .top-filter .filter-review-score .dropdown-menu {
  overflow: hidden !important;
}
.st-style-elementor .top-filter .filter-price .dropdown-menu .dropdown-title {
  margin-bottom: 10px;
}
.st-style-elementor .top-filter .filter-review-score .dropdown-menu-inner {
  max-height: 305px;
}
.st-style-elementor .top-filter .dropdown-toggle .count {
  margin-left: 3px;
  margin-right: 2px;
}
.st-style-elementor .top-filter ul li:last-child {
  margin-right: 0;
}
.st-style-elementor .top-filter .btn-clear-filter {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  margin-right: 15px;
  display: none;
}
.st-style-elementor .top-filter .btn-clear-filter .stt-icon {
  margin-left: 8px;
  font-size: 8px;
  position: relative;
  top: 0;
}
.st-style-elementor .sidebar-filter .sidebar-item {
  padding: 30px 20px;
  background: #F7F8FA;
  border-radius: 20px;
  margin-bottom: 30px;
  border: none;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-title div {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-title .fa {
  font-family: "traveler-icon" !important;
  font-size: 14px;
  color: #727272;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-title .fa:before {
  content: "\e965";
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .min-max-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .min-max-value .item-value {
  padding: 4px 12px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  width: 44%;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .min-max-value .item-value span {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .min-max-value:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 10px;
  background: #DEDEDE;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .price-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #DEDEDE;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .price-action a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-decoration-line: underline;
  color: var(--main-color, #3B71FE);
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .price-action button {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  padding: 13px 22px;
  margin-top: 0;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-line {
  background: #DEDEDE;
  border-radius: 3px;
  height: 4px !important;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-min,
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-max,
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-from,
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-to {
  display: none !important;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-bar {
  background: var(--main-color, #3B71FE);
  height: 4px !important;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-handle {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--main-color, #3B71FE);
  margin-top: -5px;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content.range-slider .irs .irs-handle i {
  display: none;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .st-icheck-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  padding-left: 32px;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .st-icheck-item label .checkmark {
  border: 1px solid #83929D;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  top: 3px;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .st-icheck-item label .checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-color: var(--main-color, #3B71FE);
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .st-icheck-item input:checked ~ .checkmark {
  background: var(--main-color, #3B71FE) !important;
  border-color: var(--main-color, #3B71FE) !important;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .st-icheck-item input:checked ~ .checkmark:after {
  border-color: #fff;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .btn-more-item {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  display: flex;
  align-items: center;
}
.st-style-elementor .sidebar-filter .sidebar-item .item-content .btn-more-item .stt-icon {
  font-size: 12px;
  color: #232323;
  margin-left: 7px;
}

#st-content-wrapper.st-style-elementor .st-review-booking-form i {
  color: #FFB21D;
}
#st-content-wrapper.st-style-elementor .st-review-booking-form .review-score {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-left: 4px;
  margin-right: 4px;
}
#st-content-wrapper.st-style-elementor .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-content-wrapper.st-style-elementor .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-content-wrapper.st-style-elementor .st-bg-feature {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  #st-content-wrapper.st-style-elementor .st-bg-feature .st-banner-search-form__title {
    font-size: 24px;
    line-height: 34px;
  }
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-banner-search-form {
  z-index: 4;
  position: relative;
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb {
  border: none;
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul li:not(:last-child):after {
  border-radius: 50%;
}
@media screen and (max-width: 991px) {
  #st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb {
    padding-top: 10px;
    display: block !important;
  }
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb .container {
  padding-left: 0px;
  padding-right: 0px;
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul {
  background: transparent;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  #st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
  #st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul li:first-child {
    padding-left: 0px;
  }
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul li a {
  color: #FFF;
}
@media screen and (max-width: 991px) {
  #st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul li {
    font-size: 14px;
    line-height: 24px;
  }
}
#st-content-wrapper.st-style-elementor .st-bg-feature .st-breadcrumb ul li.active {
  color: rgba(255, 255, 255, 0.6);
}
#st-content-wrapper.st-style-elementor .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);
}
#st-content-wrapper.st-style-elementor .stt-discount .discount-child {
  margin-top: 30px;
}
#st-content-wrapper.st-style-elementor .stt-discount .st-program {
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  #st-content-wrapper.st-style-elementor .stt-discount .st-program {
    overflow-x: scroll;
  }
}
#st-content-wrapper.st-style-elementor .stt-discount .st-program .table {
  margin-bottom: 0px;
}
@media screen and (max-width: 520px) {
  #st-content-wrapper.st-style-elementor .stt-discount .st-program .table {
    min-width: 700px;
    overflow-x: scroll;
  }
}
#st-content-wrapper.st-style-elementor .stt-discount .st-program .table thead tr th {
  background-color: #FCFCFC;
  border-bottom-color: #DEDEDE;
}
#st-content-wrapper.st-style-elementor .stt-discount .st-program .table tr th, #st-content-wrapper.st-style-elementor .stt-discount .st-program .table tr td {
  padding: 10px 20px;
}
#st-content-wrapper.st-style-elementor .stt-discount .st-program .table tr td {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}

.single.st-header-9 .mfp-bottom-bar {
  left: 50%;
  width: auto;
  top: unset;
  transform: translateX(-50%);
  bottom: 62px;
}
.single.st-header-9 .mfp-bottom-bar .mfp-counter {
  top: unset;
  right: unset;
  color: #FFF;
  font-weight: 400;
  font-size: 14px;
  white-space: nowrap;
  transform: translateX(-50%);
  bottom: 0px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 12px 20px;
}
.single.st-header-9 .mfp-arrow {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #FFF;
  font-size: 20px;
  width: auto;
  height: auto;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .single.st-header-9 .mfp-arrow {
    padding: 16px;
  }
}
.single.st-header-9 .mfp-arrow.stt-icon-arrow-left {
  left: 50px;
}
@media screen and (max-width: 767px) {
  .single.st-header-9 .mfp-arrow.stt-icon-arrow-left {
    left: 15px;
  }
}
.single.st-header-9 .mfp-arrow.stt-icon-arrow-right {
  right: 50px;
}
@media screen and (max-width: 767px) {
  .single.st-header-9 .mfp-arrow.stt-icon-arrow-right {
    right: 15px;
  }
}
.single.st-header-9 .mfp-content {
  max-width: 100%;
  width: 100%;
  background: transparent;
  height: 100%;
}
.single.st-header-9 .mfp-content .mfp-close {
  display: inline-block;
  z-index: 99;
  right: 30px;
  top: 30px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  width: 56px;
  height: 56px;
  color: #000;
  padding: 0px;
  text-align: center;
  cursor: pointer;
}
.single.st-header-9 .mfp-content .mfp-close i {
  line-height: 56px;
}
@media screen and (max-width: 767px) {
  .single.st-header-9 .mfp-content .mfp-close {
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
    right: 4px !important;
    top: 45px !important;
  }
  .single.st-header-9 .mfp-content .mfp-close i {
    line-height: 30px !important;
    font-size: 18px;
  }
}
.single.st-header-9 .mfp-content .mfp-figure {
  background: transparent;
  height: 100%;
}
.single.st-header-9 .mfp-content .mfp-figure .mfp-close {
  display: inline-block;
  z-index: 99;
  right: 30px;
  top: 30px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  width: 56px;
  height: 56px;
  color: #000;
  padding: 0px;
  text-align: center;
  cursor: pointer;
}
.single.st-header-9 .mfp-content .mfp-figure .mfp-close i {
  line-height: 56px;
}
.single.st-header-9 .mfp-content .mfp-figure figure {
  background: transparent;
  height: 100%;
}
.single.st-header-9 .mfp-content .mfp-figure figure img.mfp-img {
  max-height: 100% !important;
  height: 100%;
  object-fit: cover;
}
.single.st-header-9 .mfp-content .mfp-figure:after {
  background: transparent;
}
.single.st-header-9 .mfp-arrow:before, .single.st-header-9 .mfp-arrow:after {
  width: 100%;
  height: 100%;
  border: transparent;
  display: block;
  position: unset;
  top: unset;
  left: unset;
  margin: 0px;
}
.single #st-content-wrapper .st-single-service-content {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .single #st-content-wrapper .st-single-service-content {
    margin-top: 40px;
  }
}
.single #st-content-wrapper.st-style-4 hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
.single #st-content-wrapper.st-style-4 .st-section-single .st-heading-section {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
}
.single #st-content-wrapper.st-style-4 .st-section-single .item-attribute {
  margin-bottom: -20px;
}
.single #st-content-wrapper.st-style-4 .st-section-single .item-attribute .item {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  padding-bottom: 20px;
}
.single #st-content-wrapper.st-style-4 .st-section-single .item-attribute .item i {
  margin-right: 15px;
  font-size: 24px;
}
.single #st-content-wrapper.st-style-4 .st-section-single .item-attribute .st-link {
  margin-top: 10px;
}
.single #st-content-wrapper.st-style-4 #st-list-room .form-check-availability-full {
  margin-bottom: 40px;
}
.single #st-content-wrapper.st-style-4 #st-list-room .st-list-rooms {
  padding-bottom: 10px;
  border-bottom: 1px solid #dedede;
}
.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item {
  margin-bottom: 30px;
}
.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item .image {
  height: 100%;
}
.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item .image img {
  height: 100%;
  object-fit: cover;
}
.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item .item-infor {
  padding-top: 30px;
  padding-bottom: 30px;
}
.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item .item-infor h2.heading {
  line-height: 1;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .single #st-content-wrapper.st-style-4 #st-list-room .facilities .st-list-facilities {
    border-bottom: 1px solid #DEDEDE;
    display: flex;
    padding-bottom: 30px;
  }
  .single #st-content-wrapper.st-style-4 #st-list-room .facilities .st-list-facilities .item {
    width: 25%;
    padding-left: 7px;
    padding-right: 7px;
  }
  .single #st-content-wrapper.st-style-4 #st-list-room .facilities .st-list-facilities .item:first-child {
    padding-left: 0px;
  }
  .single #st-content-wrapper.st-style-4 #st-list-room .facilities .st-list-facilities .item:last-child {
    padding-right: 0px;
  }
}
.single #st-content-wrapper.st-style-4 #st-list-room .facilities p.item {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1;
}
.single #st-content-wrapper.st-style-4 #st-list-room .facilities p.item .item-box {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 16px;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 6px;
}
.single #st-content-wrapper.st-style-4 #st-list-room .facilities p.item i {
  font-size: 24px;
  line-height: 1;
  display: block;
}
.single #st-content-wrapper.st-style-4 #st-list-room .facilities p.item .infor {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #727272;
}
.single #st-content-wrapper.st-style-4 #st-list-room h2.heading a {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323 !important;
}
@media screen and (min-width: 992px) {
  .single #st-content-wrapper.st-style-4 #st-list-room .st-border-right {
    border-right: 1px solid #DEDEDE;
  }
}
.single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper {
  text-align: center;
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper {
    text-align: left;
    display: inline-block;
    padding-left: 15px;
    padding-top: 15px;
    padding-right: 15px;
    margin-left: 0px;
    margin-bottom: 0px;
  }
  .single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper .price {
    line-height: 1;
  }
}
.single #st-content-wrapper.st-style-4 #st-list-room .btn-show-price, .single #st-content-wrapper.st-style-4 #st-list-room .show-detail {
  background: var(--main-color, #3B71FE);
  border-radius: 55px;
  padding: 13px 22px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFF;
  float: right;
  display: block;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 #st-list-room .btn-show-price, .single #st-content-wrapper.st-style-4 #st-list-room .show-detail {
    margin: 15px 15px 15px 15px;
    text-align: center;
    float: left;
    font-weight: 500;
  }
}
.single #st-content-wrapper.st-style-4 #st-reviews {
  padding-top: 40px;
}
.single #st-content-wrapper.st-style-4 #st-reviews h2.st-heading-section {
  margin-bottom: 0px;
}
.single #st-content-wrapper.st-style-4 .review-box {
  background: #FCFCFC;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 .review-box {
    padding: 45px 20px;
  }
}
.single #st-content-wrapper.st-style-4 .review-box .st-review-box-top {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #232323;
}
.single #st-content-wrapper.st-style-4 .review-box .st-review-box-top i.stt-icon-star1 {
  font-size: 22px;
  color: #FFB21D;
}
.single #st-content-wrapper.st-style-4 .review-box .st-review-box-top .review-score-base {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single #st-content-wrapper.st-style-4 .review-box .st-review-box-top .review-score, .single #st-content-wrapper.st-style-4 .review-box .st-review-box-top .review-score-text, .single #st-content-wrapper.st-style-4 .review-box .st-review-box-top .review-score-base {
  margin-left: 8px;
}
.single #st-content-wrapper.st-style-4 .review-box .st-summany .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin: 0px;
  min-width: 60px;
}
.single #st-content-wrapper.st-style-4 .review-box .st-summany .label .number {
  position: relative;
  top: auto;
  right: auto;
  margin-left: 15px;
  color: #232323;
  font-weight: 500;
}
.single #st-content-wrapper.st-style-4 .review-box .st-summany .progress + .label {
  text-align: right;
}
.single #st-content-wrapper.st-style-4 .review-box .st-summany .item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 .review-box .st-summany .item {
    width: 100%;
    justify-content: flex-start !important;
  }
}
.single #st-content-wrapper.st-style-4 .review-box .st-summany .item .progress {
  height: 4px;
}
.single #st-content-wrapper.st-style-4 .review-box .st-summany .item .percent {
  height: 4px;
  background: #4CBB7F;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item .media-left {
  padding-right: 16px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item .media-body .media-heading {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin: 0px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item .media-body .date {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #727272;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item .like {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: right;
  color: #232323;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item .like i.bold {
  color: var(--main-color, #3B71FE);
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item .like .st-like-review .fa-thumbs-down {
  color: #3B71FE;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body {
  margin-top: 18px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body ul {
  padding: 0px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body ul.review-star {
  display: flex;
  margin-bottom: 17px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body ul.review-star li {
  line-height: 1;
  margin-right: 6px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body ul.review-star i {
  color: #FFB21D;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body .h4.title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
  margin-bottom: 0px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body .detail {
  margin-top: 12px;
}
.single #st-content-wrapper.st-style-4 .review-list .comment-item-body .detail .st-description {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single #st-content-wrapper.st-style-4 .pagination {
  text-align: left;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 0px;
  margin-bottom: 40px;
}
.single #st-content-wrapper.st-style-4 .pagination ul li {
  box-sizing: border-box;
  border-radius: 10px;
}
.single #st-content-wrapper.st-style-4 .pagination ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  width: 40px;
  height: 40px;
  text-align: center;
}
.single #st-content-wrapper.st-style-4 .pagination ul li.st-previous, .single #st-content-wrapper.st-style-4 .pagination ul li.st-next {
  background: #F7F8FA;
  border: 1px solid #DEDEDE;
}
.single #st-content-wrapper.st-style-4 .pagination ul li.st-previous i, .single #st-content-wrapper.st-style-4 .pagination ul li.st-next i {
  line-height: 40px;
}
.single #st-content-wrapper.st-style-4 .pagination ul li.active {
  background: var(--main-color, #3B71FE);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
}
.single #st-content-wrapper.st-style-4 .pagination ul li.active a {
  color: #FFF;
}
.single #st-content-wrapper.st-style-4 #write-review a.toggle-section, .single #st-content-wrapper.st-style-4 #write-review #respond .submit {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  color: #FFF !important;
  padding: 15px 20px;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 #write-review a.toggle-section, .single #st-content-wrapper.st-style-4 #write-review #respond .submit {
    font-weight: 500;
  }
}
.single #st-content-wrapper.st-style-4 #write-review #respond .form-submit .submit {
  margin: 0px;
}
.single #st-content-wrapper.st-style-4 #write-review .toggle-section i {
  font-size: 16px;
  line-height: 21px;
}
.single #st-content-wrapper.st-style-4 #write-review #respond {
  padding: 0px;
  border: none;
  background: transparent;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-reply-title {
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  text-transform: none;
}
.single #st-content-wrapper.st-style-4 #write-review #respond p.comment-notes {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  margin-top: 10px;
  margin-bottom: 30px;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group {
  margin-bottom: calc(var(--bs-gutter-x));
  display: inline-block;
  width: 100%;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group textarea {
  min-height: 185px;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group .form-control {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #83929D;
  height: unset;
  margin-top: 0px;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items {
  border-radius: 10px;
  padding: 20px 15px 10px 15px;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item {
  width: 50%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item {
    width: 100%;
  }
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  width: 40%;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item label {
    width: 50%;
  }
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item .rates i {
  color: #A1ABB3 !important;
  font-size: 14px;
  margin-right: 8px;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item .rates i.selected, .single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .form-group.review-items .item .rates i.hovered {
  color: #FFB21D !important;
}
.single #st-content-wrapper.st-style-4 #write-review #respond .comment-form .review-items {
  margin-top: 0px !important;
}
.single #st-content-wrapper.st-style-4 #write-review .review-form .form-wrapper .form-group .form-control {
  margin-top: 0px;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  padding-top: 0px;
  padding-bottom: 0px;
}
.single #st-content-wrapper.st-style-4 .inquiry-v2 {
  margin-top: 25px;
}
.single #st-content-wrapper.st-style-4 .inquiry-v2 .st-sent-mail-customer {
  border: none;
  padding-top: 0px;
}
.single #st-content-wrapper.st-style-4 .inquiry-v2 .st-sent-mail-customer .form-wrapper .form-group {
  margin-top: 0px;
  margin-bottom: 20px;
}
.single #st-content-wrapper.st-style-4 .inquiry-v2 .st-sent-mail-customer .form-wrapper input {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #83929D;
}
.single #st-content-wrapper.st-style-4 .inquiry-v2 .st-sent-mail-customer .form-wrapper textarea {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #83929D;
}
.single #st-content-wrapper.st-style-4 .inquiry-v2 .st-sent-mail-customer .form-wrapper .btn-primary {
  width: 100%;
  border: none !important;
  display: block;
  color: #FFF !important;
  border-radius: 50px !important;
  background: var(--main-color, #3B71FE);
}
.single #st-content-wrapper.st-style-4 .question-author .st_ask_question a {
  color: #FFF;
  border-radius: 50px;
  background: var(--main-color, #3B71FE);
}
.single #st-content-wrapper.st-style-elementor .widget-box {
  padding: 0px;
}
.single #st-content-wrapper.st-style-elementor .widget-box.st-logo-box {
  border: none;
}
.single #st-content-wrapper.st-style-elementor .widget-box.st-logo-box img {
  width: 100%;
}
.single #st-content-wrapper.st-style-elementor .button_reserve {
  margin-left: 12px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-elementor .button_reserve {
    display: none;
  }
}
.single #st-content-wrapper.st-style-elementor .wistlist-single {
  margin-left: 12px;
}
.single #st-content-wrapper.st-style-elementor .wistlist-single .service-add-wishlist {
  position: unset;
  color: unset;
  height: unset;
  width: unset;
  top: auto;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  width: 44px;
  height: 44px;
  display: block;
  text-align: center;
  line-height: 44px;
}
.single #st-content-wrapper.st-style-elementor .st-video {
  margin-right: 12px;
}
.single #st-content-wrapper.st-style-elementor .st-video a {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  width: 44px;
  height: 44px;
  display: block;
  text-align: center;
  line-height: 44px;
  position: relative;
}
.single #st-content-wrapper.st-style-elementor .st-video a .stt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.single #st-content-wrapper.st-style-elementor .map-view {
  position: relative;
  background: url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/elementorv2/assets/images/map-view-2.png) center center no-repeat;
  padding-top: 90px;
  padding-bottom: 20px;
  line-height: unset;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
}
.single #st-content-wrapper.st-style-elementor .map-view .icon-marker {
  font-size: 29px;
  color: #DA3838;
  display: block;
  margin-bottom: 60px;
}
.single #st-content-wrapper.st-style-elementor .map-view .map-view-button {
  padding: 12px 22px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  display: inline-flex;
  align-items: center;
}
.single #st-content-wrapper.st-style-elementor .map-view .map-view-button span {
  color: var(--main-color, #3B71FE);
  font-size: 11px;
  margin-left: 12px;
}
.single #st-content-wrapper.st-style-elementor .widgets .st-border-radius {
  border-radius: 20px;
  overflow: hidden;
}
.single #st-content-wrapper.st-style-elementor .widgets .st-information-contact {
  padding: 40px;
}
.single #st-content-wrapper.st-style-elementor .widgets .st-information-contact h4.heading {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  margin-bottom: 4px;
}
.single #st-content-wrapper.st-style-elementor .widgets .st-information-contact .media h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-top: 16px;
}
.single #st-content-wrapper.st-style-elementor .widgets .st-information-contact .media h5 + p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  margin-top: 4px;
  margin-bottom: 0px;
}
.single #st-content-wrapper.st-style-elementor .owner-info {
  padding: 40px 15px;
}
.single #st-content-wrapper.st-style-elementor .owner-info h4.heading {
  display: none;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media {
  display: block !important;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-left {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-left a {
  display: inline-block;
  border-radius: 50%;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-left a img {
  border-radius: 50%;
  object-fit: cover;
  width: 90px;
  height: 90px;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-body {
  display: block;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-body h4 {
  margin: 0px;
  text-align: center;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-body h4 a {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #232323;
}
.single #st-content-wrapper.st-style-elementor .owner-info .media .media-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-top: 4px;
  margin-bottom: 0px;
}
.single #st-content-wrapper.st-style-elementor .services-nearby h2.st-heading {
  padding-top: 40px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-elementor .services-nearby h2.st-heading {
    padding-top: 20px;
    margin-bottom: 40px;
  }
}
.single #st-content-wrapper.st-style-elementor .services-nearby .services-grid.hotel-nearby .service-list-wrapper > [class*=col-] {
  margin-bottom: 0px;
}
.single #st-content-wrapper.st-style-elementor .services-nearby .services-grid.hotel-nearby .service-list-wrapper.owl-carousel .services-item .item {
  margin-left: 1px;
  margin-right: 1px;
}
.single .st-fixed-form-booking .st-form-booking-action, .single .st-fixed-form-booking .st-form-head-book, .single .st-fixed-form-booking .st-wrapper-form-booking .nav {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 767px) {
  .single .st-fixed-form-booking .st-form-booking-action, .single .st-fixed-form-booking .st-form-head-book, .single .st-fixed-form-booking .st-wrapper-form-booking .nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.single .st-fixed-form-booking .st-form-booking-action form .search-form {
  background: transparent;
}
.single .st-fixed-form-booking .st-form-booking-action form .search-form .field-guest {
  position: relative;
}
.single .st-fixed-form-booking .st-form-booking-action form .st-group-form {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 20px;
}
.single .st-fixed-form-booking .st-form-booking-action form .st-group-form .form-group label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single .st-fixed-form-booking .st-form-booking-action form .form-date-search {
  position: relative;
}
.single .st-fixed-form-booking .st-form-booking-action form .form-date-search .check-in-wrapper {
  position: relative;
}
.single .st-fixed-form-booking .st-form-booking-action form .check-in-out {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
.single .st-fixed-form-booking .st-form-booking-action form .st_grid_date {
  padding: 0px;
  display: flex;
  margin-bottom: 0px;
}
.single .st-fixed-form-booking .st-form-booking-action form .st_grid_date li {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 50%;
  display: inline-block;
  text-align: center;
  position: relative;
  border-bottom: 1px solid #d7dce3;
}
.single .st-fixed-form-booking .st-form-booking-action form .st_grid_date li:nth-child(1) {
  border-right: 1px solid #d7dce3;
}
.single .st-fixed-form-booking .st-form-booking-action form .st_grid_date li .st-item-date {
  padding: 16px;
  text-align: left;
}
.single .st-fixed-form-booking .st-form-booking-action form .st_grid_date li .st-item-date label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single .st-fixed-form-booking .st-form-booking-action form .submit-group {
  margin-top: 25px;
}
.single .st-fixed-form-booking .st-form-booking-action form .submit-group button {
  width: 100%;
  border: none;
  display: block;
}
.single .st-fixed-form-booking .st-form-head-book {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  margin-bottom: 25px;
  width: 100%;
}
.single .st-fixed-form-booking .st-form-head-book .st-price-origin .price {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.single .st-fixed-form-booking .tab-pane .st-form-head-book {
  margin-top: 25px;
}
.single .st-form-book-wrapper {
  padding: 30px 0px;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
}
.single .st-form-book-wrapper .st-wrapper-form-booking .nav-tabs {
  border: none;
}
.single .st-form-book-wrapper .st-wrapper-form-booking .nav-tabs li {
  width: 50%;
  cursor: pointer;
}
.single .st-form-book-wrapper .st-wrapper-form-booking .nav-tabs li:first-child {
  padding-right: 5px;
}
.single .st-form-book-wrapper .st-wrapper-form-booking .nav-tabs li:last-child {
  padding-left: 5px;
}
.single .st-form-book-wrapper .st-wrapper-form-booking .nav-tabs li a {
  background: #F7F8FA;
  border-radius: 50px;
  padding: 15px 0px;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #232323;
}
.single .st-form-book-wrapper .st-wrapper-form-booking .nav-tabs li a.active {
  background: var(--main-color, #3B71FE);
  color: #FFF;
}
.single.single-st_hotel #st-content-wrapper.st-style-elementor #st-attributes .st-attributes:last-child {
  border-bottom: transparent;
  padding-bottom: 0;
}

.st-dot {
  height: 3px;
  width: 3px;
  background-color: #C4C4C4;
  border-radius: 50%;
  display: inline-block;
}

.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content {
  padding-top: 80px;
}
@media screen and (max-width: 787px) {
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content {
    padding-top: 38px;
  }
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .price-wrapper, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .price-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .price-wrapper {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .price-wrapper .price, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .price-wrapper .price, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .price-wrapper .price {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .btn-mpopup, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .btn-mpopup, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile .btn-mpopup {
  background: var(--main-color, #3B71FE);
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items, .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items, .single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 50px;
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item, .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item, .single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items .item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item:not(:last-child), .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item:not(:last-child), .single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items .item:not(:last-child) {
  margin-right: 40px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon, .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon, .single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon {
  margin-right: 10px;
  width: 44px;
  height: 44px;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon svg, .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon svg, .single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon svg {
  height: 20px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon svg g, .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon svg g, .single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon svg g {
  stroke: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor #st-description .title-description, .single-st_hotel #st-content-wrapper.st-style-elementor #st-description .title-description, .single-st_rental #st-content-wrapper.st-style-elementor #st-description .title-description {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .single-hotel_room #st-content-wrapper.st-style-elementor #st-description .title-description, .single-st_hotel #st-content-wrapper.st-style-elementor #st-description .title-description, .single-st_rental #st-content-wrapper.st-style-elementor #st-description .title-description {
    font-size: 26px;
    line-height: 36px;
  }
}
.single-hotel_room #st-content-wrapper.st-style-elementor #st-description p:last-child, .single-st_hotel #st-content-wrapper.st-style-elementor #st-description p:last-child, .single-st_rental #st-content-wrapper.st-style-elementor #st-description p:last-child {
  margin-bottom: 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-hr, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hr, .single-st_rental #st-content-wrapper.st-style-elementor .st-hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-attributes, .single-st_hotel #st-content-wrapper.st-style-elementor .st-attributes, .single-st_rental #st-content-wrapper.st-style-elementor .st-attributes {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-attributes.stt-attr-room_type, .single-st_hotel #st-content-wrapper.st-style-elementor .st-attributes.stt-attr-room_type, .single-st_rental #st-content-wrapper.st-style-elementor .st-attributes.stt-attr-room_type {
  border-bottom: 1px solid #DEDEDE;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin {
  text-transform: capitalize;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .unit, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .unit, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .unit {
  text-transform: lowercase;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .price, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .price, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .price {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
  margin-left: 5px;
  margin-right: 5px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .unit, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .unit, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .unit {
  text-transform: lowercase;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper {
  border: none;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field {
  border: 1px solid #DEDEDE;
  border-radius: 20px 20px 0 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date {
  text-align: left;
  padding: 15px 20px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date label, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date label, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date .render, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date .render, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date .render {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest {
  border: 1px solid #DEDEDE;
  border-radius: 0 0 20px 20px;
  border-top: none;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown {
  padding: 15px 20px;
  position: relative;
  width: 100%;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown label, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown label, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown .render, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown .render, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown .render {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown-menu, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown-menu, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown-menu {
  border-radius: 20px;
  padding: 30px 30px;
  margin-top: 0 !important;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown-menu .item label, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown-menu .item label, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .dropdown-menu .item label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .guest_name_input, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .guest_name_input, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .guest_name_input {
  background-color: transparent;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .guest_name_input .form-control, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .guest_name_input .form-control, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .field-guest .guest_name_input .form-control {
  background-color: transparent;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 {
  padding: 0 24px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper {
  margin-top: 20px;
  margin-bottom: 0;
  overflow: unset;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra {
  padding: 20px 25px;
  border-top: none;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  text-align: center;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow {
  font-family: "traveler-icon" !important;
  font-size: 13px;
  margin-left: 4px;
  position: relative;
  top: 1px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow.fa-caret-up:before, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow.fa-caret-up:before, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow.fa-caret-up:before {
  content: "\e969";
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow.fa-caret-down:before, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow.fa-caret-down:before, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .dropdown .arrow.fa-caret-down:before {
  content: "\e965";
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras {
  margin-bottom: 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li span, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li span, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li .select-wrapper, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li .select-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li .select-wrapper {
  width: 70px !important;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li:last-child, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li:last-child, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .form-more-extra .extras li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .submit-group, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .submit-group, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .submit-group {
  border-top: none;
  padding: 0;
  margin-top: 25px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .submit-group .btn-book-ajax, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .submit-group .btn-book-ajax, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .submit-group .btn-book-ajax {
  width: 100%;
  border: none;
  display: block;
  color: #FFF;
  border-radius: 50px;
  background: var(--main-color, #3B71FE);
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .message-wrapper, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .message-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .message-wrapper {
  margin-bottom: 0;
  padding: 0 15px 0 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .message-wrapper:empty, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .message-wrapper:empty, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .form-book-wrapper .message-wrapper:empty {
  margin-top: 0;
  margin-bottom: 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .button-external-link, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .button-external-link, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .button-external-link {
  margin-bottom: 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .button-external-link a, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .button-external-link a, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .book-v2 .button-external-link a {
  width: 100%;
  border: none;
  display: block;
  color: #FFF;
  border-radius: 50px;
  background: var(--main-color, #3B71FE);
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer {
  padding: 25px 25px 0 25px;
  border: none;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group {
  margin-top: 0 !important;
  margin-bottom: 20px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group input, .single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group textarea, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group input, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group textarea, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group input, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .form-group textarea {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #83929D;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .sent-email-st, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .sent-email-st, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .sent-email-st {
  width: 100%;
  border: none;
  display: block;
  color: #FFF;
  border-radius: 50px;
  background: var(--main-color, #3B71FE);
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .message-wrapper-sendemail:empty, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .message-wrapper-sendemail:empty, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .inquiry-v2 .st-sent-mail-customer .st_send-mail-form .message-wrapper-sendemail:empty {
  margin-top: 0;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render {
  margin-bottom: 25px;
  display: none;
  margin-top: 25px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .number-night,
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .sale-price, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .number-night,
.single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .sale-price, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .number-night,
.single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .sale-price {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .sale-price, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .sale-price, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .sale-price {
  color: #232323;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .total-label, .single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .total-price, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .total-label, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .total-price, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .total-label, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item .total-price {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item.total, .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item.total, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-render .item.total {
  border-top: 1px solid #DEDEDE;
  padding-top: 20px;
  margin-top: 20px;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .st-service-header2, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .st-service-header2, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .st-service-header2 {
  align-items: flex-start;
}
.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .st-form-book-wrapper, .single-st_hotel #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .st-form-book-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .st-form-book-wrapper {
  margin-top: 0;
}

.rate-calendar {
  position: relative;
}
.rate-calendar .st-room-availability-input, .rate-calendar .calendar_input {
  display: none;
}
.rate-calendar .st-availability-calendar-wrapper, .rate-calendar .show-calendar {
  position: relative;
  top: 0 !important;
  left: 0 !important;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05) !important;
  border-radius: 20px;
  padding-bottom: 0 !important;
  z-index: 1;
}
.rate-calendar .st-availability-calendar-wrapper .calendar.left, .rate-calendar .st-availability-calendar-wrapper .calendar.right, .rate-calendar .show-calendar .calendar.left, .rate-calendar .show-calendar .calendar.right {
  width: 50%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .rate-calendar .st-availability-calendar-wrapper .calendar.left, .rate-calendar .st-availability-calendar-wrapper .calendar.right, .rate-calendar .show-calendar .calendar.left, .rate-calendar .show-calendar .calendar.right {
    width: 100% !important;
  }
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-sub-header .day-off-week, .rate-calendar .show-calendar .calendar .calendar-table .table-sub-header .day-off-week {
  width: 14.2857142857% !important;
  height: 50px;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date {
  height: 48px;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last), .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last), .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.start-date:not(.available_allow_fist, .available_allow_last), .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.end-date:not(.available_allow_fist, .available_allow_last), .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date:hover:not(.available_allow_fist, .available_allow_last), .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-past:not(.available_allow_fist, .available_allow_last), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.start-date:not(.available_allow_fist, .available_allow_last), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.end-date:not(.available_allow_fist, .available_allow_last), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date:hover:not(.available_allow_fist, .available_allow_last), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-past:not(.available_allow_fist, .available_allow_last) {
  background: transparent !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.start-date:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.end-date:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date:hover:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-past:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-range:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.start-date:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.end-date:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date:hover:not(.available_allow_fist, .available_allow_last) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-past:not(.available_allow_fist, .available_allow_last) .date {
  background: transparent !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date:not(.available_allow_last):not(.available_allow_fist).active.end-date.in-range, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date:not(.available_allow_last):not(.available_allow_fist).active.end-date.in-range {
  background: transparent !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-past, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.active, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-past, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.active {
  background: transparent !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.in-past .date, .rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.active .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.in-past .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.active .date {
  background: transparent !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.disabled, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.disabled {
  background: #efefef;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.disabled .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.disabled .date {
  background: #efefef;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.not_available.in-range, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.not_available.in-range {
  background: #efefef !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.not_available.in-range .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.not_available.in-range .date {
  background: #efefef !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date:hover.not_available:not(.in-past), .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date:hover.not_available:not(.in-past) {
  background: #efefef !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date:hover.not_available:not(.in-past) .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date:hover.not_available:not(.in-past) .date {
  background: #efefef !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.today, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.today {
  background: #B8CCFF !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.not-show, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.not-show {
  opacity: 0 !important;
  height: 0 !important;
}
.rate-calendar .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.not-show .date, .rate-calendar .show-calendar .calendar .calendar-table .table-condensed tbody tr .td-date.not-show .date {
  height: 0 !important;
}
.rate-calendar .st-availability-calendar-wrapper.respon-single .calendar.left, .rate-calendar .show-calendar.respon-single .calendar.left {
  width: 100%;
}

body.st-header-9 #st-content-wrapper.st-style-elementor.singe-room-layout-3 .widgets .st-fixed-form-booking {
  margin-top: 50px;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .relate-rooms .st-heading-section {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  body.st-header-9 #st-content-wrapper.st-style-elementor .relate-rooms .st-heading-section {
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 40px;
  }
}
body.st-header-9 #st-content-wrapper.st-style-elementor .relate-rooms .btn-show-price:hover, body.st-header-9 #st-content-wrapper.st-style-elementor .relate-rooms .show-detail:hover {
  color: #FFF;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .relate-rooms .st-hr {
  margin-top: 70px;
  margin-bottom: 70px;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper {
  padding: 60px 30px;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left {
  width: 100%;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table {
  padding: 0px;
}
@media screen and (max-width: 575px) {
  body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-header {
    padding-bottom: 10px;
  }
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-header .next, body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-header .prev {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-sub-header {
  margin-top: 35px;
  border-top: none;
  border-bottom: 1px solid #DEDEDE;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-sub-header .day-off-week {
  min-height: 65px;
  width: 14.2857142857%;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date {
  height: 100px !important;
  position: relative;
}
@media screen and (max-width: 575px) {
  body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date {
    height: 48px !important;
  }
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date.available.off.not-show.available {
  opacity: 0.2 !important;
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date .date {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #232323;
  height: auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date .date {
    font-size: 14px;
    line-height: 16px;
  }
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date .event-tooltip-wrap {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #727272;
  position: relative;
  display: block;
  top: unset;
  left: unset;
  padding: 0;
  margin: 0;
  background: transparent;
}
@media screen and (max-width: 575px) {
  body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date .event-tooltip-wrap {
    font-weight: 400;
    font-size: 9px !important;
    line-height: 14px;
  }
}
@media screen and (max-width: 767px) {
  body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date.disabled .event-tooltip-wrap {
    opacity: 0 !important;
    width: 0px;
  }
}
body.st-header-9 #st-content-wrapper.st-style-elementor .room-rates .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar.left .calendar-table .table-condensed tbody tr .td-date.disabled .date {
  color: #B1BAC1;
}

@media screen and (max-width: 991px) {
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile {
    display: flex !important;
    z-index: 9999999;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .fixed-on-mobile {
    overflow: auto;
    padding: 20px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .fixed-on-mobile .st-form-book-wrapper .form-booking-price {
    display: none;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content .fixed-on-mobile .close-icon {
    top: 25px;
    left: 20px;
    position: unset;
  }
}
@media screen and (max-width: 767px) {
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-service-header2 .right .shares .share-item, .single-st_tours #st-content-wrapper.st-style-elementor .st-service-header2 .right .shares .share-item {
    display: none;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-attributes .item-attribute .item, .single-st_tours #st-content-wrapper.st-style-elementor .st-attributes .item-attribute .item {
    line-height: 19px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .relate-rooms .st-heading-section, .single-st_tours #st-content-wrapper.st-style-elementor .relate-rooms .st-heading-section {
    margin-bottom: 35px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .relate-rooms .inner .st-owl-slider .owl-nav, .single-st_tours #st-content-wrapper.st-style-elementor .relate-rooms .inner .st-owl-slider .owl-nav {
    display: none;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper {
    padding: 25px 15px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-header, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-header {
    padding-bottom: 20px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-sub-header, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-sub-header {
    margin-top: 0 !important;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-sub-header .day-off-week, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-sub-header .day-off-week {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date {
    height: 70px !important;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date .date, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date .date {
    font-size: 16px !important;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date .event-tooltip-wrap, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date .event-tooltip-wrap {
    font-size: 12px !important;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.not-show, .single-st_tours #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date.not-show {
    height: 0 !important;
  }
}
@media screen and (max-width: 575px) {
  .single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items {
    margin-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item {
    width: 50%;
    margin: 10px 0 10px 0 !important;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .relate-rooms .st-heading-section {
    font-size: 32px;
    line-height: 42px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-gallery.style-slider .owl-nav .owl-prev,
.single-hotel_room #st-content-wrapper.st-style-elementor .st-gallery.style-slider .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 {
    padding-top: 50px;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content.style-4 .fixed-on-mobile .close-icon {
    position: unset;
  }
  .single-hotel_room #st-content-wrapper.st-style-elementor .rate-calendar.style-2 .st-availability-calendar-wrapper .calendar .calendar-table .table-condensed tbody tr .td-date {
    height: 60px !important;
  }
}
.st-service-header2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .st-service-header2 {
    display: block !important;
  }
  .st-service-header2 .right {
    margin-top: 24px;
  }
}
.st-service-header2 .right .stt-icon {
  font-size: 18px;
}
.st-service-header2 .right .shares .share-item {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  width: 44px;
  height: 44px;
  display: block;
  text-align: center;
  line-height: 44px;
}
.st-service-header2 .right .shares .share-item .stt-icon {
  font-size: 16px;
  color: #232323;
}
.st-service-header2 .right .shares .share-wrapper {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50px;
  z-index: 9;
  display: none;
}
.st-service-header2 .right .shares .share-wrapper li {
  list-style: none;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 40px;
  width: 44px;
  height: 44px;
  display: block;
  text-align: center;
  line-height: 44px;
  margin-top: 5px;
  background: #fff;
}
.st-service-header2 .reviews i {
  color: #FFB21D;
}
.st-service-header2 .reviews span.rate {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.st-service-header2 .reviews span.summary {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-service-header2 .st-address {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}

@media screen and (max-width: 563px) {
  .st-header-9 .st-search-form-calendar .calendar.left {
    width: 100% !important;
  }

  .rate-calendar .st-availability-calendar-wrapper:before {
    display: none;
  }
}
.st-border-radius-20 {
  border-radius: 20px;
}

.single #st-content-wrapper.st-style-elementor #form-booking-inpage .check-in-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .single #st-content-wrapper.st-style-elementor .st-relate .st-heading-section {
    padding-top: 0px !important;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
    text-align: center;
  }
}

.single-st_tours.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range, .single-st_activity.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range, .single-st_cars.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range, .single-st_rental.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range {
  background: transparent;
}
.single-st_tours.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range .date, .single-st_activity.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range .date, .single-st_cars.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range .date, .single-st_rental.st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-condensed tbody tr .td-date.end-date.in-range .date {
  background: transparent;
}
@media screen and (max-width: 991px) {
  .single-st_tours.st-header-9 .daterangepicker, .single-st_activity.st-header-9 .daterangepicker, .single-st_cars.st-header-9 .daterangepicker, .single-st_rental.st-header-9 .daterangepicker {
    width: unset;
  }
  .single-st_tours.st-header-9 .daterangepicker.single, .single-st_activity.st-header-9 .daterangepicker.single, .single-st_cars.st-header-9 .daterangepicker.single, .single-st_rental.st-header-9 .daterangepicker.single {
    width: calc(100% - 44px) !important;
  }
  .single-st_tours.st-header-9 .price-wrapper .value span, .single-st_activity.st-header-9 .price-wrapper .value span, .single-st_cars.st-header-9 .price-wrapper .value span, .single-st_rental.st-header-9 .price-wrapper .value span {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #232323;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .single-st_tours.st-header-9 .daterangepicker.single, .single-st_activity.st-header-9 .daterangepicker.single, .single-st_cars.st-header-9 .daterangepicker.single, .single-st_rental.st-header-9 .daterangepicker.single {
    width: calc(100% - 50px) !important;
  }
  .single-st_tours.st-header-9 .calendar.left.single, .single-st_activity.st-header-9 .calendar.left.single, .single-st_cars.st-header-9 .calendar.left.single, .single-st_rental.st-header-9 .calendar.left.single {
    width: 100%;
  }
  .single-st_tours.st-header-9 .calendar.left.single .calendar-table .table-condensed tbody tr.td-date, .single-st_activity.st-header-9 .calendar.left.single .calendar-table .table-condensed tbody tr.td-date, .single-st_cars.st-header-9 .calendar.left.single .calendar-table .table-condensed tbody tr.td-date, .single-st_rental.st-header-9 .calendar.left.single .calendar-table .table-condensed tbody tr.td-date {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .single-st_tours.st-header-9 .mfp-close, .single-st_activity.st-header-9 .mfp-close, .single-st_cars.st-header-9 .mfp-close, .single-st_rental.st-header-9 .mfp-close {
    right: -5px;
    top: -16px;
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .single-st_tours.st-header-9 .mfp-close i, .single-st_activity.st-header-9 .mfp-close i, .single-st_cars.st-header-9 .mfp-close i, .single-st_rental.st-header-9 .mfp-close i {
    line-height: 35px;
    font-size: 26px;
  }
}
.single-st_tours.st-header-9 #st-package-popup, .single-st_activity.st-header-9 #st-package-popup, .single-st_cars.st-header-9 #st-package-popup, .single-st_rental.st-header-9 #st-package-popup {
  position: relative;
  background: #fff;
  width: auto;
  max-width: 700px;
  margin: auto;
  transform: translateY(-50%);
  top: 50%;
}
.single-st_tours.st-header-9 #st-package-popup .mfp-close, .single-st_activity.st-header-9 #st-package-popup .mfp-close, .single-st_cars.st-header-9 #st-package-popup .mfp-close, .single-st_rental.st-header-9 #st-package-popup .mfp-close {
  right: -15px;
  top: -15px;
}
@media screen and (max-width: 767px) {
  .single-st_tours.st-header-9 #st-package-popup .mfp-close, .single-st_activity.st-header-9 #st-package-popup .mfp-close, .single-st_cars.st-header-9 #st-package-popup .mfp-close, .single-st_rental.st-header-9 #st-package-popup .mfp-close {
    right: -5px;
    top: -16px;
    width: 35px;
    height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .single-st_tours.st-header-9 #st-package-popup .mfp-close i, .single-st_activity.st-header-9 #st-package-popup .mfp-close i, .single-st_cars.st-header-9 #st-package-popup .mfp-close i, .single-st_rental.st-header-9 #st-package-popup .mfp-close i {
    line-height: 35px;
    font-size: 26px;
  }
}
.single-st_tours.st-header-9 #st-package-popup .st-section-title, .single-st_activity.st-header-9 #st-package-popup .st-section-title, .single-st_cars.st-header-9 #st-package-popup .st-section-title, .single-st_rental.st-header-9 #st-package-popup .st-section-title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
  margin-bottom: 20px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq, .single-st_activity.st-header-9 #st-package-popup .st-faq, .single-st_cars.st-header-9 #st-package-popup .st-faq, .single-st_rental.st-header-9 #st-package-popup .st-faq {
  border-radius: 10px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .header, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .header, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .header, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .header {
  padding: 16px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .header h5, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .header h5, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .header h5, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .header h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #232323;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .header .arrow, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .header .arrow, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .header .arrow, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .header .arrow {
  top: 0px;
  color: #232323;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .body .checkbox-item label h3, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .body .checkbox-item label h3, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .body .checkbox-item label h3, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .body .checkbox-item label h3 {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  margin-bottom: 0px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .body .item-inner, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .body .item-inner, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .body .item-inner, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .body .item-inner {
  padding-bottom: 16px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li {
  margin-bottom: 0px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child), .single-st_activity.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child), .single-st_cars.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child), .single-st_rental.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child) {
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .single-st_tours.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li {
    padding: 15px;
  }
  .single-st_tours.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child), .single-st_activity.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child), .single-st_cars.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child), .single-st_rental.st-header-9 #st-package-popup .st-faq .item .body .item-inner > li:not(:last-child) {
    margin-bottom: 0px;
  }
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .caculator-item i, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .caculator-item i, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .caculator-item i, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .caculator-item i {
  border: 1px solid #727272;
  box-sizing: border-box;
  border-radius: 50px;
  padding: 10px;
}
.single-st_tours.st-header-9 #st-package-popup .st-faq .item .caculator-item .extra-service-select, .single-st_activity.st-header-9 #st-package-popup .st-faq .item .caculator-item .extra-service-select, .single-st_cars.st-header-9 #st-package-popup .st-faq .item .caculator-item .extra-service-select, .single-st_rental.st-header-9 #st-package-popup .st-faq .item .caculator-item .extra-service-select {
  border: none;
  padding: 0px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #232323;
  max-width: 35px;
}
.single-st_tours.st-header-9 #st-package-popup .booking-item-rating-stars, .single-st_activity.st-header-9 #st-package-popup .booking-item-rating-stars, .single-st_cars.st-header-9 #st-package-popup .booking-item-rating-stars, .single-st_rental.st-header-9 #st-package-popup .booking-item-rating-stars {
  top: 0px;
  line-height: 1;
}
.single-st_tours.st-header-9 #st-package-popup .booking-item-rating-stars li, .single-st_activity.st-header-9 #st-package-popup .booking-item-rating-stars li, .single-st_cars.st-header-9 #st-package-popup .booking-item-rating-stars li, .single-st_rental.st-header-9 #st-package-popup .booking-item-rating-stars li {
  margin-right: 6px;
}
.single-st_tours.st-header-9 #st-package-popup .booking-item-rating-stars li i, .single-st_activity.st-header-9 #st-package-popup .booking-item-rating-stars li i, .single-st_cars.st-header-9 #st-package-popup .booking-item-rating-stars li i, .single-st_rental.st-header-9 #st-package-popup .booking-item-rating-stars li i {
  color: #DA6938;
  font-size: 14px;
}
.single-st_tours #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item, .single-st_activity #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item, .single-st_cars #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item, .single-st_rental #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item {
  width: 100%;
}
.single-st_tours #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item .rates i.grey.hovered, .single-st_activity #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item .rates i.grey.hovered, .single-st_cars #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item .rates i.grey.hovered, .single-st_rental #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item .rates i.grey.hovered {
  cursor: pointer;
  font-size: 18px;
  color: var(--main-color, #3B71FE);
}
.single-st_tours #st-content-wrapper.st-style-elementor .item.onsale, .single-st_activity #st-content-wrapper.st-style-elementor .item.onsale, .single-st_cars #st-content-wrapper.st-style-elementor .item.onsale, .single-st_rental #st-content-wrapper.st-style-elementor .item.onsale {
  color: #B1BAC1;
  text-decoration: line-through;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .single-st_tours #st-content-wrapper.st-style-elementor .st-form-head-book.st-service-header2, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-head-book.st-service-header2, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-head-book.st-service-header2, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-head-book.st-service-header2 {
    display: flex !important;
  }
  .single-st_tours #st-content-wrapper.st-style-elementor .item.onsale, .single-st_activity #st-content-wrapper.st-style-elementor .item.onsale, .single-st_cars #st-content-wrapper.st-style-elementor .item.onsale, .single-st_rental #st-content-wrapper.st-style-elementor .item.onsale {
    color: #B1BAC1;
    text-decoration: line-through;
    font-weight: 400;
  }
}
.single-st_tours #st-content-wrapper.st-style-elementor .widget-box, .single-st_activity #st-content-wrapper.st-style-elementor .widget-box, .single-st_cars #st-content-wrapper.st-style-elementor .widget-box, .single-st_rental #st-content-wrapper.st-style-elementor .widget-box {
  margin-top: 0px;
  margin-bottom: 30px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-hr, .single-st_activity #st-content-wrapper.st-style-elementor .st-hr, .single-st_cars #st-content-wrapper.st-style-elementor .st-hr, .single-st_rental #st-content-wrapper.st-style-elementor .st-hr {
  margin-top: 40px;
  margin-bottom: 40px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-service-feature, .single-st_activity #st-content-wrapper.st-style-elementor .st-service-feature, .single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature, .single-st_rental #st-content-wrapper.st-style-elementor .st-service-feature {
  padding: 0px;
  border: none;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-service-feature .item .icon, .single-st_activity #st-content-wrapper.st-style-elementor .st-service-feature .item .icon, .single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .icon, .single-st_rental #st-content-wrapper.st-style-elementor .st-service-feature .item .icon {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 12px;
  width: 48px;
  height: 48px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-service-feature .item .icon i, .single-st_activity #st-content-wrapper.st-style-elementor .st-service-feature .item .icon i, .single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .icon i, .single-st_rental #st-content-wrapper.st-style-elementor .st-service-feature .item .icon i {
  font-size: 21px;
  color: #727272;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-service-feature .item .info .name, .single-st_activity #st-content-wrapper.st-style-elementor .st-service-feature .item .info .name, .single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .info .name, .single-st_rental #st-content-wrapper.st-style-elementor .st-service-feature .item .info .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-service-feature .item .info .value, .single-st_activity #st-content-wrapper.st-style-elementor .st-service-feature .item .info .value, .single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .info .value, .single-st_rental #st-content-wrapper.st-style-elementor .st-service-feature .item .info .value {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .include, .single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .exclude, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .include, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .exclude, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .include, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .exclude, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .include, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .exclude {
  padding: 0px;
  margin: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .include li, .single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .exclude li, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .include li, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .exclude li, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .include li, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .exclude li, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .include li, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .exclude li {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  margin-bottom: 16px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .include li:last-child, .single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .exclude li:last-child, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .include li:last-child, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .exclude li:last-child, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .include li:last-child, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .exclude li:last-child, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .include li:last-child, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .exclude li:last-child {
  margin-bottom: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i {
  border-radius: 50%;
  font-size: 10px;
  width: 20px !important;
  height: 20px;
  text-align: center;
  line-height: 1;
  padding: 5px;
  margin-right: 10px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .include li i, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .include li i {
  background: #CEF2E5;
  color: #10AC58;
}
@media screen and (max-width: 767px) {
  .single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .exclude, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .exclude, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .exclude, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .exclude {
    margin-top: 16px;
  }
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i, .single-st_activity #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i, .single-st_cars #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i, .single-st_rental #st-content-wrapper.st-style-elementor .st-inexclude .exclude li i {
  background: #FAD6D6;
  color: #DA3838;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey, .single-st_activity #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey, .single-st_cars #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey, .single-st_rental #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey i, .single-st_activity #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey i, .single-st_cars #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey i, .single-st_rental #st-content-wrapper.st-style-elementor .st-map-wrapper .st-heading-section + .c-grey i {
  margin-right: 8px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program {
  background: #FCFCFC;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .content-itinerary, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .content-itinerary, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .content-itinerary, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .content-itinerary, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .content-itinerary {
  margin-top: 10px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #232323;
}
@media screen and (max-width: 767px) {
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button {
    font-size: 16px;
    line-height: 26px;
  }
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
  outline: none;
  padding: 8px 16px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: var(--main-color, #3B71FE);
  margin-right: 18px;
}
@media screen and (max-width: 767px) {
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-header button span, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-header button span {
    min-width: 80px;
    text-align: center;
  }
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button.collapsed::after, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button.collapsed::after {
  border: 1px solid #727272;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button .icon-question, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button .icon-question, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button .icon-question, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-button .icon-question, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-button .icon-question {
  margin-right: 13px;
  font-size: 20px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body {
  font-style: normal;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  margin-right: 18px;
  font-weight: 400;
  padding: 20px 0px 0px 0px !important;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body p, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body p, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body p, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-program-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-faq-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-program-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-faq-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-program-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-faq-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-program-list .st-program .accordion-body p, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-faq-list .st-program .accordion-body p {
  margin-bottom: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .item-slide, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .item-slide, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .item-slide, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .item-slide, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .item-slide, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .item-slide, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .item-slide, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .item-slide, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .item-slide, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .item-slide, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .item-slide, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .item-slide, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .item-slide, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .item-slide, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .item-slide, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .item-slide {
  padding-left: 1px;
  padding-right: 1px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-relate .st-heading-section, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-relate .st-heading-section, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-relate .st-heading-section, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-relate .st-heading-section, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-relate .st-heading-section, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-relate .st-heading-section, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-relate .st-heading-section, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-relate .st-heading-section, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-relate .st-heading-section, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-relate .st-heading-section, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-relate .st-heading-section, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-relate .st-heading-section, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-relate .st-heading-section, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-relate .st-heading-section, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-relate .st-heading-section, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-relate .st-heading-section {
  padding-top: 40px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-gallery, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-gallery {
    margin-top: 40px;
  }
}
.single-st_tours #st-content-wrapper.st-style-elementor .form-guest-search, .single-st_activity #st-content-wrapper.st-style-elementor .form-guest-search, .single-st_cars #st-content-wrapper.st-style-elementor .form-guest-search, .single-st_rental #st-content-wrapper.st-style-elementor .form-guest-search {
  border-top: 1px solid #DEDEDE;
  padding: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper {
  padding: 20px;
  border-bottom: 1px solid #DEDEDE;
}
.single-st_tours #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper:nth-last-child(1), .single-st_activity #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper:nth-last-child(1), .single-st_cars #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper:nth-last-child(1), .single-st_rental #st-content-wrapper.st-style-elementor .form-guest-search .guest-wrapper:nth-last-child(1) {
  border-bottom: none;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper {
  margin-bottom: 30px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper {
    padding: 0px 0px 30px 0px;
  }
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-head-book, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-head-book, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-head-book, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-head-book {
  padding-top: 30px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group {
  padding: 0 24px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group a, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group a, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group a, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .submit-group a {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border-radius: 50px;
  align-items: center;
  padding: 15px;
  transition: all 0.2s;
  width: 100%;
  border: none;
  display: block;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .check-in-out-input, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .check-in-out-input, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .check-in-out-input, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .check-in-out-input {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price {
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .st_sale_class, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .st_sale_class, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .st_sale_class, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .st_sale_class {
  position: absolute;
  width: 75px;
  height: 43px;
  transform: rotate(45deg);
  right: -27px;
  top: -10px;
  line-height: 65px;
  text-align: center;
  color: #fff;
  font-size: 15px;
  z-index: 8;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .st-unit, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .st-unit, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .st-unit, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-price-origin .st-unit {
  margin-right: 8px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev, .single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next {
  min-width: 34px;
  height: 34px;
  left: 0px;
  top: 0px;
  background: #FFFFFF;
  border: 1px solid #727272;
  box-sizing: border-box;
  border-radius: 50px;
  display: block;
  line-height: 29px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev svg, .single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next svg, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev svg, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next svg, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev svg, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next svg, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .prev svg, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .next svg {
  width: 12px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .st-input-number, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .st-input-number, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .st-input-number, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-number-wrapper .st-input-number {
  font-weight: 500;
  font-size: 16px !important;
  line-height: 20px;
  text-align: center;
  color: #232323;
  margin-left: 0;
  margin-right: 0;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-starttime, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-starttime, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-starttime, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-starttime {
  border-top: 1px solid #DEDEDE;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper #nav-tab, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper #nav-tab, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper #nav-tab, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper #nav-tab {
  margin-bottom: 20px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .guest_name_input, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .guest_name_input, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .guest_name_input, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .guest_name_input {
  border-radius: 0px 0px 20px 20px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a i, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a i, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a i, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra a i {
  margin-left: 8px;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra .extra-service-select, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra .extra-service-select, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra .extra-service-select, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-more-extra .extra-service-select {
  text-align: center;
}
.single-st_tours #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-package, .single-st_activity #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-package, .single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-package, .single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper .st-form-package {
  border-top: 1px solid #DEDEDE;
}
.single-st_tours #st-content-wrapper.st-style-elementor #form-booking-inpage .st-single-tour-search .date-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor #form-booking-inpage .st-single-tour-search .date-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor #form-booking-inpage .st-single-tour-search .date-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .st-single-tour-search .date-wrapper {
  width: 100%;
}
.single-st_tours #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book, .single-st_activity #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book, .single-st_cars #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book, .single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book {
  margin-top: 20px;
}
.single-st_tours #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book #total-text h5, .single-st_activity #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book #total-text h5, .single-st_cars #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book #total-text h5, .single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book #total-text h5 {
  margin-bottom: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 #write-review #respond .comment-form .form-group.review-items .item, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 #write-review #respond .comment-form .form-group.review-items .item, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 #write-review #respond .comment-form .form-group.review-items .item, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 #write-review #respond .comment-form .form-group.review-items .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 #write-review #respond .comment-form .form-group.review-items .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 #write-review #respond .comment-form .form-group.review-items .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 #write-review #respond .comment-form .form-group.review-items .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 #write-review #respond .comment-form .form-group.review-items .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 #write-review #respond .comment-form .form-group.review-items .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 #write-review #respond .comment-form .form-group.review-items .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 #write-review #respond .comment-form .form-group.review-items .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 #write-review #respond .comment-form .form-group.review-items .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 #write-review #respond .comment-form .form-group.review-items .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 #write-review #respond .comment-form .form-group.review-items .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 #write-review #respond .comment-form .form-group.review-items .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 #write-review #respond .comment-form .form-group.review-items .item {
  width: 100%;
  justify-content: space-between;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-avg .review-score, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-avg .review-score {
  color: #3B71FE;
  font-size: 30px;
  line-height: 40px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .infor-avg-wrapper .review-score-text, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .infor-avg-wrapper .review-score-text {
  margin-top: 6px;
  margin-bottom: 6px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top {
  width: 100%;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany {
  width: 100%;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item {
  width: 100%;
  margin-top: 10px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item:first-child, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item:first-child, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item:first-child, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item:first-child, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item:first-child, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item:first-child, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item:first-child, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item:first-child, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item:first-child, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item:first-child, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item:first-child, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item:first-child, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item:first-child, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item:first-child, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item:first-child, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item:first-child {
  margin-top: 0px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label {
  width: 140px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .progress, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .progress, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .progress, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .progress, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .progress, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .progress, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .progress, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .progress, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .progress, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .progress, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .progress, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .progress, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .progress, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .progress, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .progress, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .progress {
  margin-left: 20px;
  margin-right: 15px;
}
.single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .number, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .number, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .number, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .number, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .number, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .number, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .number, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .number, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .number, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .number, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .number, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .number, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .number, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .number, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .number, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .number {
  width: 25px;
}
@media screen and (min-width: 992px) {
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .st-review-box-top, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .st-review-box-top {
    width: 40.58%;
    padding-right: 70px;
    border-right: 1px solid #DEDEDE;
    margin-bottom: 0px;
  }
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box {
    display: flex;
  }
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany {
    width: 59.42%;
    padding-left: 70px;
  }
  .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_tours #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_activity #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-8 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-tour-9 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-4 .st-reviews .review-box .st-summany .item .label, .single-st_rental #st-content-wrapper.st-style-elementor.st-single-activity-5 .st-reviews .review-box .st-summany .item .label {
    width: 130px;
  }
}

.st-style-elementor.search-result-page.tour-layout7,
.st-style-elementor.search-result-page.activity-layout5 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .st-style-elementor.search-result-page.tour-layout7,
.st-style-elementor.search-result-page.activity-layout5 {
    padding-bottom: 50px !important;
  }
}
.st-style-elementor.search-result-page.tour-layout7 .st-banner-search-form,
.st-style-elementor.search-result-page.activity-layout5 .st-banner-search-form {
  padding: 0;
}

@media screen and (max-width: 768px) {
  .single .st-style-elementor .st-owl-slider .services-item.item-elementor {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  #st-content-wrapper.tour-layout6 .st-results .toolbar, #st-content-wrapper.activity-layout4 .st-results .toolbar {
    margin-top: 40px !important;
  }
}

.car-layout3 .relate-rooms .item-slide .services-item, .car-layout4 .relate-rooms .item-slide .services-item, .page-template-template-transfer-search .relate-rooms .item-slide .services-item {
  padding: 1px;
}
.car-layout3 .services-item.item-elementor .item .content-item, .car-layout4 .services-item.item-elementor .item .content-item, .page-template-template-transfer-search .services-item.item-elementor .item .content-item {
  padding-top: 0px;
}
.car-layout3 .services-item.item-elementor .item .content-item .title, .car-layout4 .services-item.item-elementor .item .content-item .title, .page-template-template-transfer-search .services-item.item-elementor .item .content-item .title {
  margin-bottom: 15px;
}
.car-layout3 .services-item.item-elementor .item .content-item .car-type, .car-layout4 .services-item.item-elementor .item .content-item .car-type, .page-template-template-transfer-search .services-item.item-elementor .item .content-item .car-type {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
}
.car-layout3 .services-item.item-elementor .item .content-item .price-wrapper .init, .car-layout4 .services-item.item-elementor .item .content-item .price-wrapper .init, .page-template-template-transfer-search .services-item.item-elementor .item .content-item .price-wrapper .init {
  padding-left: 4px;
}
.car-layout3 .services-item.item-elementor .item .featured-image, .car-layout4 .services-item.item-elementor .item .featured-image, .page-template-template-transfer-search .services-item.item-elementor .item .featured-image {
  padding: 12px 12px 0px 12px;
}
.car-layout3 .services-item.item-elementor .item .featured-image a:not(.service-avatar), .car-layout4 .services-item.item-elementor .item .featured-image a:not(.service-avatar), .page-template-template-transfer-search .services-item.item-elementor .item .featured-image a:not(.service-avatar) {
  border-radius: 14px;
}
.car-layout3 .services-item.item-elementor .item .section-footer, .car-layout4 .services-item.item-elementor .item .section-footer, .page-template-template-transfer-search .services-item.item-elementor .item .section-footer {
  margin-top: 20px;
  padding-top: 20px;
}
.car-layout3 .services-item.item-elementor .item .section-footer .price-wrapper, .car-layout4 .services-item.item-elementor .item .section-footer .price-wrapper, .page-template-template-transfer-search .services-item.item-elementor .item .section-footer .price-wrapper {
  min-height: unset;
}
.car-layout3 .services-item.item-elementor .car-equipments .item, .car-layout4 .services-item.item-elementor .car-equipments .item, .page-template-template-transfer-search .services-item.item-elementor .car-equipments .item {
  box-shadow: none;
  overflow: visible;
  margin-right: 16px;
}
.car-layout3 .services-item.item-elementor .car-equipments .item .ico, .car-layout4 .services-item.item-elementor .car-equipments .item .ico, .page-template-template-transfer-search .services-item.item-elementor .car-equipments .item .ico {
  width: 44px;
  height: 44px;
  padding: 12px;
  border: 1px solid #DEDEDE;
  border-radius: 6px;
}
.car-layout3 .services-item.item-elementor .car-equipments .item .ico i, .car-layout4 .services-item.item-elementor .car-equipments .item .ico i, .page-template-template-transfer-search .services-item.item-elementor .car-equipments .item .ico i {
  font-size: 18px;
  color: #727272;
}
.car-layout3 .services-item.item-elementor .car-equipments .item span.text, .car-layout4 .services-item.item-elementor .car-equipments .item span.text, .page-template-template-transfer-search .services-item.item-elementor .car-equipments .item span.text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  max-width: 44px;
}
.car-layout3 .services-item.item-elementor.list .car-equipments .item, .car-layout4 .services-item.item-elementor.list .car-equipments .item, .page-template-template-transfer-search .services-item.item-elementor.list .car-equipments .item {
  border: none;
}
.car-layout3 .services-item.item-elementor.list .content-item .car-type, .car-layout4 .services-item.item-elementor.list .content-item .car-type, .page-template-template-transfer-search .services-item.item-elementor.list .content-item .car-type {
  margin-top: 0px;
}
.car-layout3 .services-item.item-elementor.list .content-item .reviews, .car-layout4 .services-item.item-elementor.list .content-item .reviews, .page-template-template-transfer-search .services-item.item-elementor.list .content-item .reviews {
  margin-bottom: 0px !important;
  margin-top: 35px !important;
}
.car-layout3 .services-item.item-elementor.list .featured-image, .car-layout4 .services-item.item-elementor.list .featured-image, .page-template-template-transfer-search .services-item.item-elementor.list .featured-image {
  padding: 12px 12px 12px 12px;
}
.car-layout3 .services-item.item-elementor.list .featured-image .img-feature, .car-layout4 .services-item.item-elementor.list .featured-image .img-feature, .page-template-template-transfer-search .services-item.item-elementor.list .featured-image .img-feature {
  height: 100%;
  overflow: hidden;
}
.car-layout3 .services-item.item-elementor.list .featured-image img, .car-layout4 .services-item.item-elementor.list .featured-image img, .page-template-template-transfer-search .services-item.item-elementor.list .featured-image img {
  position: unset;
}
.car-layout3 .services-item.item-elementor .price-wrapper .unit, .car-layout4 .services-item.item-elementor .price-wrapper .unit, .page-template-template-transfer-search .services-item.item-elementor .price-wrapper .unit {
  padding-left: 4px;
}

.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature {
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding-top: 40px;
  padding-bottom: 40px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature + .st-hr {
  margin: 0px;
  height: 0px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item {
  margin-bottom: 0px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .icon {
  width: 20px;
  height: 20px;
  padding: 0px;
  line-height: 20px;
  border-radius: 20px;
  background: #CEF2E5;
  display: inline-block;
  text-align: center;
  margin-right: 12px;
  position: relative;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .icon i {
  font-size: 12px;
  color: #10AC58;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .icon.stt-off {
  background: #FAD6D6;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .icon.stt-off i {
  color: #DA3838;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-service-feature .item .info .name {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-booking-price .st-unit {
  line-height: 26px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-date-car {
  border-top: 1px solid #DEDEDE;
  padding-left: 0px;
  padding-right: 0px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-date-car .date-item-wrapper {
  padding: 20px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-date-car .date-item-wrapper.checkin {
  padding-top: 0px;
}
.single-st_cars #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-date-car .date-item-wrapper.checkout {
  padding-bottom: 0px;
  border-top: 1px solid #DEDEDE;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__nav:before, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__stage:before {
  background: unset;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__fullscreen-icon, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__video-close, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__video-play {
  background: unset;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__thumb, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__thumb-border {
  border-radius: 20px;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__nav:after, .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__stage:after {
  display: none;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__stage__frame {
  border-radius: 20px;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr--next:after {
  content: "\e968";
  background: none;
  font-family: "traveler-icon" !important;
  color: #FFF;
  font-family: "traveler-icon" !important;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr--prev:after {
  content: "\e966";
  background: none;
  font-family: "traveler-icon" !important;
  color: #FFF;
  font-family: "traveler-icon" !important;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr {
  border-radius: 50px;
  width: 50px;
  height: 50px;
  background: rgba(35, 35, 35, 0.4);
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr:hover {
  background-color: #FFF;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr:hover:after {
  color: #232323;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr:after {
  position: absolute;
  left: 50%;
  margin-left: -13px;
  top: unset;
  width: 27px;
  line-height: 50px;
  text-align: center;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr--prev {
  left: 20px;
}
@media screen and (max-width: 991px) {
  .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr--prev {
    left: 0px;
  }
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr--next {
  right: 20px;
}
@media screen and (max-width: 991px) {
  .single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__arr--next {
    right: 0px;
  }
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__fullscreen-icon {
  width: 50px;
  height: 50px;
  top: auto;
  bottom: 20px;
  right: 20px;
  border-radius: 50px;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__fullscreen-icon:before {
  position: absolute;
  left: 50%;
  margin-left: -13px;
  top: unset;
  width: 27px;
  line-height: 50px;
  text-align: center;
  content: "\e995";
  background: none;
  font-family: "traveler-icon" !important;
  color: #FFF;
  opacity: 1;
  z-index: 1;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__fullscreen-icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 35, 35, 0.4);
  border-radius: 50px;
}
.single-st_cars #st-content-wrapper.st-style-elementor.st-single-car-2 .st-gallery-car .fotorama__pointer .fotorama__fullscreen-icon {
  background: unset !important;
}

#st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book {
  margin-top: 0px;
}
#st-content-wrapper.st-style-elementor #form-booking-inpage .total-price-book .st-price-origin {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}

@media screen and (min-width: 1024px) {
  .st-banner-search-form.style_2 #nav-st_cartransfer, .page-template-template-transfer-search .st-banner-search-form.style_2 {
    max-width: 770px;
    margin: auto;
  }
  .st-banner-search-form.style_2 #nav-st_cartransfer .destination-search, .page-template-template-transfer-search .st-banner-search-form.style_2 .destination-search {
    width: 45%;
  }
}

@media screen and (min-width: 1024px) {
  .page-template-template-cars-search .st-banner-search-form.style_2 {
    max-width: 920px;
    margin: auto;
  }
}

@media screen and (min-width: 1024px) {
  .page-template-template-transfer-search .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search {
    width: 45%;
  }
}
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar {
  padding: 0px;
}
.page-template-template-transfer-search .st-style-elementor.search-result-page .st-results .toolbar .toolbar-action li .dropdown {
  margin-right: 0px;
}
.page-template-template-transfer-search .st-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, -webkit-transform 0.25s;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
  transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s, -webkit-transform 0.25s;
  z-index: 999;
}
.page-template-template-transfer-search .st-tooltip.form-service .input-group span {
  margin-right: 10px;
}
.page-template-template-transfer-search .show-modal {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}
.page-template-template-transfer-search .show-modal .st-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 1rem 1.5rem;
  width: 24rem;
  border-radius: 0.5rem;
}
.page-template-template-transfer-search .show-modal .st-modal-dialog .st-close-button {
  display: block;
  float: right;
  width: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
}

@media (max-width: 767px) {
  .page-template-template-transfer-search .daterangepicker.popup-date-custom-cartranfer.show-calendar {
    top: 68px !important;
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    z-index: 999999 !important;
    position: fixed;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    border-radius: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none !important;
    width: calc(100% - 30px);
  }
  .page-template-template-transfer-search .daterangepicker.popup-date-custom-cartranfer.show-calendar .calendar-time-wrapper .calendar-time {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .page-template-template-transfer-search .st-popup.popup-date {
    z-index: 999;
  }

  .page-template-template-transfer-search .st-style-elementor.search-result-page .section-footer .price-wrapper {
    margin-bottom: 14px;
  }
}
.st-estimate-distance.transfer-map-infor {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 24px;
}

.rental-grid.service-tour .services-item.list h4.title {
  margin-bottom: 20px;
}
.rental-grid.service-tour .services-item.list .featured-image img {
  height: 260px;
}

.services-item.item-elementor .item .content-item .section-footer {
  margin-top: 20px;
  padding-top: 20px;
}
.services-item.item-elementor .item .content-item .price-wrapper {
  min-height: unset;
}
.services-item.item-elementor .item .content-item .price-wrapper.price-wrapper-tour {
  min-height: 42px;
}
.services-item.item-elementor .item .content-item .amenities {
  margin-bottom: 20px;
}
.services-item.item-elementor .item .content-item .amenities .amenity {
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #727272;
  margin-right: 22px;
}
.services-item.item-elementor .item .content-item .amenities .amenity span {
  font-size: 18px;
  margin-right: 7px;
}

.search-result-page.layout-rental-5 .st-results .toolbar {
  padding-right: 0px;
}

.single-st_rental #st-content-wrapper.st-style-elementor .st-address, .single-hotel_room #st-content-wrapper.st-style-elementor .st-address {
  margin-left: 0px;
}
.single-st_rental #st-content-wrapper.st-style-elementor .st-address i, .single-hotel_room #st-content-wrapper.st-style-elementor .st-address i {
  margin-right: 5px;
  font-size: 16px;
}
.single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .form-more-extra + .total-price-book, .single-hotel_room #st-content-wrapper.st-style-elementor #form-booking-inpage .form-more-extra + .total-price-book {
  margin-top: 0px;
}
.single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .form-date-field, .single-hotel_room #st-content-wrapper.st-style-elementor #form-booking-inpage .form-date-field {
  padding: 0px;
  position: relative;
}
.single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .st_grid_date li, .single-hotel_room #st-content-wrapper.st-style-elementor #form-booking-inpage .st_grid_date li {
  border-bottom: 0px;
}
.single-st_rental #st-content-wrapper.st-style-elementor #form-booking-inpage .st_grid_date li .st-item-date, .single-hotel_room #st-content-wrapper.st-style-elementor #form-booking-inpage .st_grid_date li .st-item-date {
  padding: 20px;
}
.single-st_rental #st-content-wrapper.st-style-elementor .st-form-book-wrapper, .single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper {
  margin-top: 0px;
}

.single-st_rental.st-header-9 #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item {
  width: 100%;
}
.single-st_rental.st-header-9 #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item .rates i.grey {
  font-size: 14px;
}
.single-st_rental.st-header-9 #st-content-wrapper.st-style-elementor #write-review #respond .comment-form .form-group.review-items .item .rates i.grey.hovered {
  cursor: pointer;
  font-size: 14px;
  color: var(--main-color, #3B71FE);
}
@media screen and (max-width: 767px) {
  .single-st_rental.st-header-9 .daterangepicker.dropdown-menu .calendar.left:not(.single) {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .single-st_rental #st-content-wrapper.st-style-elementor.st-style-4 .st-form-book-wrapper {
    margin-top: 50px;
  }
}
.single-st_rental .message-wrapper button span {
  font-size: 20px;
  line-height: 1;
}

.single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .single-st_rental #st-content-wrapper.st-style-elementor .st-hotel-room-content .hotel-target-book-mobile {
    display: flex !important;
    z-index: 99;
  }
}

.room-item {
  border-radius: 20px;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
}
.room-item .thumbnail {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.room-item .thumbnail a img {
  transition: all 0.2s;
}
.room-item .thumbnail:hover a img {
  transform: scale(1.05);
}
.room-item .content {
  padding: 30px 20px;
}
.room-item .content .name {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 20px;
}
.room-item .content .name a {
  color: #232323;
}
.room-item .content .facilities {
  display: flex;
  justify-content: space-between;
}
.room-item .content .facilities .item {
  text-align: center;
  margin-bottom: 0;
}
.room-item .content .facilities .item .stt-icon {
  font-size: 22px;
  color: #727272;
  border: 1px solid #DEDEDE;
  padding: 15px;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 6px;
}
.room-item .content .facilities .item .text {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #727272;
  display: block;
}
.room-item .content .price-wrapper {
  border-top: 1px solid #DEDEDE;
  padding-top: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}
.room-item .content .price-wrapper .onsale {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-decoration: line-through;
  color: #B1BAC1;
}
.room-item .content .price-wrapper .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.room-item .content .price-wrapper .unit {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  margin-left: 3px;
}
.room-item .content .btn-show-price, .room-item .content .show-detail {
  background: #3B71FE;
  border-radius: 50px;
  padding: 13px 16px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
}

#st-content-wrapper.blog-style3 {
  padding-bottom: 50px;
}

.blog-style3 .st-blog .header {
  padding: 0px;
}
.blog-style3 .st-blog .media-responsive iframe {
  width: 100%;
  height: 450px;
}
.blog-style3 .st-blog .content .pagination ul li a.next, .blog-style3 .st-blog .content .pagination ul li a.prev {
  background: #F7F8FA;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  border-radius: 10px;
}
.blog-style3 .st-blog .content .pagination ul li a .fa {
  margin: 0 !important;
  font-size: 12px;
}
.blog-style3 .st-blog .content .pagination ul li a.page-numbers.current {
  background: #3B71FE !important;
  border: 0;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  color: #fff !important;
}
.blog-style3 .st-blog .sidebar-right {
  margin-left: 25px;
}
.blog-style3 .st-blog .sidebar-widget {
  background: #F7F8FA;
  border-radius: 20px;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.blog-style3 .st-blog .sidebar-widget:last-child {
  margin-bottom: 0;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-search label, .blog-style3 .st-blog .sidebar-widget .h4 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #232323;
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 20px;
  padding-bottom: 16px;
  width: 100%;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-search__inside-wrapper {
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 80px;
  border: 0;
  padding: 18px 6px 18px 30px;
  position: relative;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-search__inside-wrapper .wp-block-search__input {
  background: none;
  height: 26px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #83929D;
  padding: 0;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-search__inside-wrapper .wp-block-search__button {
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0;
  background: #3B71FE;
  border-radius: 50px;
  top: 6px;
  right: 6px;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-search__inside-wrapper .wp-block-search__button .search-icon {
  display: none;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-search__inside-wrapper .wp-block-search__button::after {
  content: "\e995";
  font-family: "traveler-icon";
  font-size: 14px;
  color: #fff;
}
.blog-style3 .st-blog .sidebar-widget.st_categories_new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-style3 .st-blog .sidebar-widget.st_categories_new ul li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 17px 20px 17px 16px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-bottom: 12px;
}
.blog-style3 .st-blog .sidebar-widget.st_categories_new ul li a {
  padding: 6px 15px 6px 24px;
  border-radius: 30px;
  color: #232323;
  position: relative;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}
.blog-style3 .st-blog .sidebar-widget.st_categories_new ul li a::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(0px, -50%);
}
.blog-style3 .st-blog .sidebar-widget.st_categories_new ul li span {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: right;
  color: #232323;
}
.blog-style3 .st-blog .sidebar-widget .wp-block-tag-cloud a {
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 12px 20px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 14px !important;
  line-height: 20px;
  color: #232323;
  margin-bottom: 8px;
}
.blog-style3 .st-blog .post-inner .meta ul {
  display: flex;
}

.single-post .blog-style3 .article-style3 {
  box-shadow: none;
}
.single-post .blog-style3 .article-style3 .header img {
  border-bottom-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
}
.single-post .blog-style3 .article-style3 .header .cate {
  margin-top: 50px;
  left: 0;
}
.single-post .blog-style3 .article-style3 .post-inner {
  padding: 0;
}
.single-post .blog-style3 .article-style3 .post-inner h1.title {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #232323;
  margin-top: 20px;
  margin-bottom: 0px;
}
.single-post .blog-style3 .article-style3 .post-inner .meta {
  margin-top: 20px;
}
.single-post .blog-style3 .article-style3 .tags-share .stt-icon {
  font-size: 20px;
  margin-right: 8px;
  margin-top: 14px;
}
.single-post .blog-style3 .article-style3 .tags {
  width: 80%;
}
.single-post .blog-style3 .article-style3 .tags .tag-item {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
  margin: 4px;
  display: inline-block;
}
.single-post .blog-style3 .article-style3 .share {
  margin-top: 14px;
}
.single-post .blog-style3 .article-style3 .share-item {
  margin-right: 5px;
  margin-left: 5px;
}
.single-post .blog-style3 .article-style3 .share-item .stt-icon {
  padding: 10px;
  width: 40px;
  height: 40px;
  background: #3D52A6;
  border-radius: 30px;
  color: #fff;
  font-size: 17px;
  margin-right: 0;
}
.single-post .blog-style3 .article-style3 .share-item .stt-icon.stt-icon-twitter {
  background: #58B1F7;
}
.single-post .blog-style3 .article-style3 .share-item .stt-icon.stt-icon-instagram {
  background: #D9498C;
}
.single-post .blog-style3 .article-style3 .post-content {
  margin-top: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-post .blog-style3 .article-style3 .post-content p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-post .blog-style3 .article-style3 .post-content .first-content {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #232323;
  margin-bottom: 30px;
}
.single-post .blog-style3 .article-style3 .post-content ul li {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-post .blog-style3 .article-style3 .post-content ul li::marker {
  color: #232323;
}
.single-post .blog-style3 .article-style3 .pagination {
  border-top: 1px solid #DEDEDE;
  margin-top: 50px !important;
  padding-top: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid #dedede;
  margin-bottom: 40px;
  position: relative;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links::before {
  content: "";
  width: 1px;
  height: 80px;
  background: #DEDEDE;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -40px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .nav-previous {
  width: 50%;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .nav-next {
  width: 50%;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .nav-next a {
  justify-content: right;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .nav-next a .box {
  margin-left: 0;
  margin-right: 20px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .nav-next a .box .meta-nav {
  align-self: end;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .nav-next a .box .post-title {
  text-align: right;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links a {
  display: flex;
  align-items: center;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links a img {
  max-width: 90px;
  border-radius: 10px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .box {
  display: flex;
  flex-flow: column;
  align-items: start;
  margin-left: 20px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .box .meta-nav {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #3B71FE;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .box .meta-nav .stt-icon {
  font-size: 10px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .box .meta-nav .stt-icon.stt-icon-arrow-left {
  margin-right: 8px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .box .meta-nav .stt-icon.stt-icon-arrow-right {
  margin-left: 8px;
}
.single-post .blog-style3 .article-style3 .pagination .nav-links .box .post-title {
  text-align: left;
  margin-top: 10px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
  text-transform: capitalize;
}
.single-post .blog-style3 .article-style3 #comment-wrapper h2 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #232323;
  padding: 0;
  border: 0;
  margin-bottom: 0;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li {
  padding-top: 50px;
  padding-bottom: 0;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .comment {
  position: relative;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .media .media-left {
  padding-right: 24px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .media .media-body h4 {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-bottom: 3px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .media .media-body .date {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #83929D;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .comment-item-body {
  padding-left: 74px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .comment-item-body .comment-content {
  margin-top: 15px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .comment-item-body .comment-content p {
  margin-bottom: 0;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .comment-item-body .comment-reply {
  position: absolute;
  top: 0;
  right: 0;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .comment-item-body .comment-reply a.comment-reply-link {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #3B71FE;
  text-transform: capitalize;
}
.single-post .blog-style3 .article-style3 #comment-wrapper ol li .children {
  padding-left: 74px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond {
  padding: 0;
  border: 0;
  border-radius: 0;
  margin-top: 50px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-reply-title {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #232323;
  text-transform: none;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-reply-title #cancel-comment-reply-link {
  margin-left: 20px;
  font-size: 16px;
  line-height: 20px;
  color: #3B71FE;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .form-control {
  margin-top: 8px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-form label {
  margin-top: 20px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-form label span {
  color: #DA3838;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-form .col-sm-6 {
  padding: 0 10px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  margin-right: 12px;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-form .comment-form-cookies-consent label {
  margin-top: 0;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .form-submit {
  margin-top: 30px;
  display: inline-block;
  position: relative;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .form-submit::after {
  content: "\e967";
  font-family: "traveler-icon";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  color: #fff;
}
.single-post .blog-style3 .article-style3 #comment-wrapper #respond .form-submit .submit {
  background: #3B71FE;
  border-radius: 50px;
  padding: 15px 46px 15px 22px;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  text-transform: capitalize;
  margin-top: 0;
}

.st_list_post_new .st-list-post li > a {
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .blog-style3 .st-blog .sidebar-right {
    margin-left: 0px;
  }

  .blog-style3 .st-blog .sidebar-widget .wp-block-search__inside-wrapper .wp-block-search__button {
    width: 40px;
    height: 40px;
    top: 11px;
  }

  .blog-style3 .st-blog .sidebar-widget.st_categories_new ul li a {
    font-size: 10px;
  }

  .blog-style3 .st-blog .sidebar-widget.st_categories_new ul li span {
    font-size: 12px;
  }

  .single-post .blog-style3 .article-style3 .tags {
    width: 60%;
  }

  .single-post .blog-style3 .article-style3 .post-inner h1.title,
.single-post .blog-style3 .article-style3 #comment-wrapper h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .single-post .blog-style3 .article-style3 .post-content {
    margin-top: 30px;
  }

  .single-post .blog-style3 .article-style3 .pagination .nav-links a img {
    display: none;
  }

  .single-post .blog-style3 .article-style3 .pagination {
    margin-bottom: 30px;
  }

  .single-post .blog-style3 .article-style3 #comment-wrapper #respond {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .single-post .blog-style3 .article-style3 .tags-share {
    flex-flow: column;
    align-items: start !important;
  }
  .single-post .blog-style3 .article-style3 .tags-share .tags {
    width: 100%;
    margin-bottom: 30px;
  }
  .single-post .blog-style3 .article-style3 .pagination .nav-links .nav-next a .box {
    margin-right: 0px;
    margin-left: 8px;
  }
  .single-post .blog-style3 .article-style3 .pagination .nav-links .box {
    margin-left: 0px;
    margin-right: 8px;
  }
  .single-post .blog-style3 .article-style3 .pagination .nav-links a img {
    display: none;
  }
  .single-post .blog-style3 .article-style3 #comment-wrapper h2, .single-post .blog-style3 .article-style3 #comment-wrapper #respond .comment-reply-title {
    font-size: 28px;
    line-height: 38px;
  }
  .single-post .blog-style3 .sidebar-right {
    margin-left: 0px;
  }
}
.cate.category-color {
  position: relative;
  top: 0px;
  overflow: hidden;
  display: inline-block;
  margin-top: 30px;
  left: 30px;
}
.cate.category-color ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cate.category-color ul li {
  float: left;
  margin-right: 10px;
  position: relative;
  border-radius: 30px;
}
.cate.category-color ul li a {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
  padding: 5px 10px;
  padding-left: 24px;
  color: #232323;
  display: block;
}
.cate.category-color ul li a::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translate(0px, -50%);
}

.article-style3 {
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin: 40px 0px;
}
.article-style3:first-child {
  margin-top: 0;
}
.article-style3 .header {
  border-bottom: 0;
  padding: 0;
}
.article-style3 .header img {
  border-top-left-radius: 20px !important;
  border-top-right-radius: 20px !important;
}
.article-style3 .header .st-gallery .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__arr,
.article-style3 .header .st-gallery .fotorama__wrap--no-controls.fotorama__wrap--toggle-arrows .fotorama__fullscreen-icon {
  opacity: 1 !important;
}
.article-style3 .header .st-gallery .fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--prev:not(:focus),
.article-style3 .header .st-gallery .fotorama__wrap--css3.fotorama__wrap--no-controls.fotorama__wrap--slide.fotorama__wrap--toggle-arrows .fotorama__arr--next:not(:focus) {
  transform: translate3d(0px, 0, 0);
}
.article-style3 .header .st-gallery .fotorama__fullscreen-icon {
  display: none;
}
.article-style3 .header .st-gallery .fotorama__arr {
  background: rgba(35, 35, 35, 0.4) !important;
  border-radius: 50px !important;
  width: 50px !important;
  height: 50px !important;
}
.article-style3 .header .st-gallery .fotorama__arr:hover {
  background: #fff !important;
}
.article-style3 .header .st-gallery .fotorama__arr:hover::after {
  color: #232323;
}
.article-style3 .header .st-gallery .fotorama__arr::after {
  font-family: "traveler-icon" !important;
  background: none !important;
  color: #fff;
  left: 50% !important;
  margin-left: 0 !important;
  top: 50% !important;
  font-size: 14px;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%);
}
.article-style3 .header .st-gallery .fotorama__arr--next {
  right: 20px;
}
.article-style3 .header .st-gallery .fotorama__arr--next::after {
  content: "\e968" !important;
}
.article-style3 .header .st-gallery .fotorama__arr--prev {
  left: 20px;
}
.article-style3 .header .st-gallery .fotorama__arr--prev::after {
  content: "\e966" !important;
}
.article-style3 .post-inner {
  padding: 0 30px;
  padding-bottom: 50px;
}
.article-style3 .post-inner .post-title {
  margin-top: 10px;
  margin-bottom: 20px;
}
.article-style3 .post-inner .post-title a {
  margin-top: 0;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  margin-bottom: 20px;
}
.article-style3 .post-inner .post-desciption {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.article-style3 .post-inner .post-desciption p {
  word-wrap: break-word;
}
.article-style3 .post-inner .meta {
  margin-top: 35px;
  margin-bottom: 0;
}
.article-style3 .post-inner .meta ul li {
  font-family: "DM Sans";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #83929D;
  text-transform: capitalize;
}
.article-style3 .post-inner .meta ul li a {
  text-transform: capitalize;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.article-style3 .post-inner .meta ul li a span {
  color: #83929D;
}
.article-style3 .post-inner .meta ul li img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.article-style3 .post-inner .meta ul li::after {
  content: "";
  width: 1px;
  height: 11px;
  background: #83929D;
  margin-left: 10px;
  border-radius: 0;
}
.article-style3 .post-inner .meta ul li:last-child, .article-style3 .post-inner .meta ul li:nth-child(2)::after {
  display: none;
}

.st-list-post {
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-list-post li {
  display: inline-block;
  width: 100%;
  vertical-align: top;
}
.st-list-post li > a {
  max-width: 90px;
  margin-right: 20px;
  float: left;
  min-height: 90px;
}
.st-list-post li .thumb-list-item-title {
  margin-bottom: 6px;
}
.st-list-post li .thumb-list-item-title a {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-list-post li .thumb-list-item-title a img {
  border-radius: 10px;
}
.st-list-post li .thumb-list-item-meta {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #83929D;
}

@media screen and (min-width: 1024px) {
  .st-header-9.stt-menu-transparent #st-content-wrapper.st-style-elementor.st-404-page {
    padding-top: 0px;
  }
  .st-header-9.stt-menu-transparent #st-content-wrapper.st-style-elementor.st-404-page .container-404-style-2 {
    margin-top: 70px;
  }
  .st-header-9.stt-menu-transparent #st-content-wrapper.st-style-elementor.st-404-page .st-bg-feature {
    padding-top: 55px;
  }
}
.st-checkout-page.style-2 .check-out-form .entry-content .form-login {
  padding: 15px 30px;
  font-size: 16px;
  background: var(--main-color, #3B71FE) !important;
  border-radius: 40px !important;
  color: #fff;
  font-weight: 500;
  margin-left: auto;
}
.st-checkout-page.style-2 h3.title {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
}
.st-checkout-page.style-2 .cart-info {
  border: 1px solid #DEDEDE;
  box-sizing: border-box;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 30px 24px;
}
.st-checkout-page.style-2 .cart-info .service-section {
  padding: 0;
  border-bottom: 0;
  justify-content: space-between;
  margin-bottom: 20px;
}
.st-checkout-page.style-2 .cart-info .service-section .service-left {
  width: 110px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 20px;
}
.st-checkout-page.style-2 .cart-info .service-section .service-left a img {
  transition: all 0.2s;
}
.st-checkout-page.style-2 .cart-info .service-section .service-left:hover a img {
  transform: scale(1.1);
}
.st-checkout-page.style-2 .cart-info .service-section .service-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - 110px);
}
.st-checkout-page.style-2 .cart-info .service-section .service-right .title {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 8px;
  display: inline-block;
  width: 100%;
}
.st-checkout-page.style-2 .cart-info .service-section .service-right .title a {
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .service-section .service-right .address {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #727272;
  margin-bottom: 0;
}
.st-checkout-page.style-2 .cart-info .service-section .service-right .address i {
  margin-right: 4px;
}
.st-checkout-page.style-2 .cart-info .room-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #DEDEDE;
}
.st-checkout-page.style-2 .cart-info .info-section {
  padding: 0;
  margin-bottom: 20px;
}
.st-checkout-page.style-2 .cart-info .info-section .info-heading {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
  margin-bottom: 14px;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  width: auto;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .value {
  width: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  display: flex;
  align-items: center;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .value a {
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .value .st-link {
  font-weight: 500;
  font-size: 16px !important;
  line-height: 20px;
  color: var(--main-color, #3B71FE);
  margin-left: 16px;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .detail button {
  margin: 0;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .detail .fa {
  font-family: "traveler-icon" !important;
  position: relative;
  top: 1px;
  font-size: 12px;
}
.st-checkout-page.style-2 .cart-info .info-section ul li .detail .fa:before {
  content: "\e965";
}
.st-checkout-page.style-2 .cart-info .info-section ul li.ad-info {
  margin-bottom: 8px;
}
.st-checkout-page.style-2 .cart-info .info-section ul li.ad-info ul {
  background: transparent;
  padding: 0;
}
.st-checkout-page.style-2 .cart-info .info-section ul li.ad-info ul li {
  border: none;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.st-checkout-page.style-2 .cart-info .info-section ul li.ad-info ul li .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  width: auto;
}
.st-checkout-page.style-2 .cart-info .info-section ul li.ad-info ul li .value {
  width: auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  display: flex;
  align-items: center;
}
.st-checkout-page.style-2 .cart-info .info-section ul li.ad-info ul li .value a {
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-checkout-page.style-2 .cart-info .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .value a {
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .coupon-section {
  padding: 0 0 20px 0;
  margin-bottom: 20px;
}
.st-checkout-page.style-2 .cart-info .coupon-section h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .coupon-section .alert {
  padding: 7px 10px;
  font-size: 14px;
}
.st-checkout-page.style-2 .cart-info .coupon-section .alert p {
  margin-bottom: 0;
}
.st-checkout-page.style-2 .cart-info .coupon-section form .form-group {
  display: flex;
}
.st-checkout-page.style-2 .cart-info .coupon-section form input[type=text] {
  background: #F7F8FA;
  border: 1px solid #DEDEDE;
  border-radius: 40px;
  padding: 11px 20px;
}
.st-checkout-page.style-2 .cart-info .coupon-section form input[type=text]::placeholder {
  color: #83929D;
}
.st-checkout-page.style-2 .cart-info .coupon-section form button {
  background: var(--main-color, #3B71FE) !important;
  border-radius: 40px !important;
}
.st-checkout-page.style-2 .cart-info .price-details {
  border-bottom: 1px solid #eaeef3;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
.st-checkout-page.style-2 .cart-info .price-details h5 {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .price-details .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.st-checkout-page.style-2 .cart-info .total-section {
  padding: 0;
}
.st-checkout-page.style-2 .cart-info .total-section ul li .label {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .total-section ul li .value {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .cart-info .total-section ul li.payment-amount {
  border-top: 1px solid #eaeef3;
  padding-top: 20px;
  margin-top: 20px;
}
.st-checkout-page.style-2 .cart-info .total-section ul li.payment-amount .label {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
.st-checkout-page.style-2 .cart-info .total-section ul li.payment-amount .value {
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
}
.st-checkout-page.style-2 .check-out-form {
  border: none;
  padding: 0;
  margin-top: 30px;
}
.st-checkout-page.style-2 .check-out-form .form-group label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-checkout-page.style-2 .check-out-form .payment-form {
  margin-top: 10px;
}
.st-checkout-page.style-2 .check-out-form .payment-form .title {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #232323;
  margin-bottom: 30px;
}
.st-checkout-page.style-2 .check-out-form .payment-form .input-hidden-pay {
  display: none;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck {
  margin-bottom: 15px;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item {
  padding-left: 32px;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item label .checkmark {
  border: 1px solid #83929D;
  border-radius: 5px;
  width: 20px;
  height: 20px;
  top: 2px;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item label .checkmark:after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border-color: var(--main-color, #3B71FE);
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item label a {
  color: var(--main-color, #3B71FE);
  font-weight: 500;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item label input:checked ~ .checkmark {
  background: var(--main-color, #3B71FE) !important;
  border-color: var(--main-color, #3B71FE) !important;
}
.st-checkout-page.style-2 .check-out-form .cond-form .st-icheck .st-icheck-item label input:checked ~ .checkmark:after {
  border-color: #fff;
}
.st-checkout-page.style-2 .check-out-form .btn-checkout {
  background: var(--main-color, #3B71FE);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  border-radius: 50px;
  padding: 15px 22px;
}
.st-checkout-page.style-2 .check-out-form .btn-checkout .stt-icon {
  font-weight: 300;
  position: relative;
  top: 2px;
  margin-left: 5px;
}
.st-checkout-page.style-2 .check-out-form .btn-checkout .fa {
  position: relative;
  top: 1px;
  margin-left: 5px;
}
.st-checkout-page.style-2 .check-out-form .btn-checkout.loading .fa {
  display: inline-block;
}
.st-checkout-page.style-2 .check-out-form .btn-checkout.loading .stt-icon {
  display: none;
}
.st-checkout-page.style-2 .booking-success-notice {
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 80px;
  margin-bottom: 80px;
}
.st-checkout-page.style-2 .booking-success-notice .success-icon {
  border: 10px solid rgba(10, 160, 43, 0.2);
  border-radius: 50%;
}
.st-checkout-page.style-2 .booking-success-notice .success-icon .stt-icon {
  font-size: 17px;
  color: #fff;
  background: #4CBB7F;
  width: 50px;
  height: 50px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
.st-checkout-page.style-2 .booking-success-notice .notice-success .line1 {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #232323;
  margin-bottom: 10px;
}
.st-checkout-page.style-2 .booking-success-notice .notice-success .line2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-checkout-page.style-2 .booking-success-notice .notice-success .line2 span {
  font-weight: 500;
  color: #232323;
}
.st-checkout-page.style-2 .booking-success-notice .booking-info-detail {
  border-left: 1px solid #DEDEDE;
}
.st-checkout-page.style-2 .booking-success-notice .booking-info-detail li {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .booking-success-notice .booking-info-detail li span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  min-width: 160px;
  display: inline-block;
}
.st-checkout-page.style-2 .info-form {
  margin-top: 30px;
  border: 1px solid #DEDEDE;
  border-radius: 20px;
  padding: 30px 24px;
}
.st-checkout-page.style-2 .info-form ul li .label {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
}
.st-checkout-page.style-2 .info-form ul li .value {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-checkout-page.style-2 .info-form ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.st-checkout-page.style-2 .text-center .btn.btn-primary {
  background: var(--main-color, #3B71FE);
  color: #fff;
  border-radius: 40px;
}
.st-checkout-page.style-2 .text-center .btn.btn-primary i {
  display: none;
}

@media screen and (max-width: 991px) {
  .st-checkout-page .booking-success-notice .col-left, .page-template-template-checkout-packages-new .booking-success-notice .col-left {
    margin-bottom: 30px;
  }

  .st-checkout-page .booking-success-notice .col-right .booking-info-detail {
    border: none;
    padding-left: 0;
  }

  .st-checkout-page.style-2 .order-1 {
    order: 1 !important;
    margin-bottom: 40px;
  }

  .st-checkout-page.style-2 .cart-info .service-section .service-right .title {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .st-checkout-page .booking-success-notice .col-left {
    display: block;
    margin-bottom: 40px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 40px;
  }

  .st-checkout-page.style-2 .booking-success-notice {
    padding: 80px 30px;
    margin-bottom: 50px;
  }

  .st-checkout-page.style-2 .booking-success-notice .success-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
  }

  .st-checkout-page .booking-success-notice .notice-success {
    margin-left: 0;
    text-align: center;
  }
}
.st-testimonial-modern-slider .st-testimonial .st-button-prev, .st-testimonial-modern-slider .st-testimonial .st-button-next {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .st-testimonial-modern-slider .st-testimonial .st-button-prev, .st-testimonial-modern-slider .st-testimonial .st-button-next {
    transform: translateY(-50%);
  }
}
.st-testimonial-modern-slider .st-testimonial .st-button-prev span, .st-testimonial-modern-slider .st-testimonial .st-button-next span {
  display: block;
  background: none;
  color: #232323;
  width: auto;
  height: auto;
  font-size: 14px;
  position: relative;
}
.st-testimonial-modern-slider .st-testimonial .st-button-prev {
  right: 50px;
  left: auto;
  top: -40px;
}
@media screen and (max-width: 767px) {
  .st-testimonial-modern-slider .st-testimonial .st-button-prev {
    left: -9px;
    right: auto;
    top: 50%;
  }
}
.st-testimonial-modern-slider .st-testimonial .st-button-next {
  right: 0;
  left: auto;
  top: -40px;
}
@media screen and (max-width: 767px) {
  .st-testimonial-modern-slider .st-testimonial .st-button-next {
    right: -9px;
    left: auto;
    top: 50%;
  }
}
.st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper {
  padding: 4px;
}
.st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper .item {
  padding: 48px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 24px;
}
.st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper .item .st-content {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}
.st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper .item .review-testimonial {
  font-size: 14px;
  color: #FFB21D;
  margin-bottom: 18px;
}
.st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper .item .author-meta .name {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
  margin-bottom: 0px;
}
.st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper .item .author-meta .office-testimonial {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #83929D;
}
.st-testimonial-modern-slider .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #DEDEDE;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
  border: none;
}
.st-testimonial-modern-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 10px;
  height: 10px;
  background: var(--main-color, #3B71FE);
  position: relative;
  top: 1px;
}

.st-header-9 .st-sliders.st-list-slider.style-3 .st-button-prev, .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-next {
  display: none;
}
.st-header-9 #main-footer {
  padding-bottom: 0;
}
.st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #232323;
}
.st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper .unit {
  font-size: 14px;
  line-height: 22px;
  color: #727272;
}
.st-header-9 .daterangepicker.ltr .calendar.left .calendar-table {
  padding-right: 4px;
}
.st-header-9.single #st-content-wrapper.st-style-4 .inquiry-v2 {
  margin-top: 0;
}
.st-header-9.single #st-content-wrapper.st-style-4 .inquiry-v2 .st_send-mail-form .sent-email-st {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
.st-header-9 .list-style .item-service {
  width: 100%;
}
.st-header-9 .st-checkout-page, .st-header-9 .page-template-template-checkout-packages-new {
  margin-bottom: 0;
}
.st-header-9 .services-nearby .st-owl-slider .services-item.item-elementor {
  margin-bottom: 15px;
}
@media (max-width: 1024px) {
  .st-header-9 .st-sliders.st-list-slider.style-3 .swiper-pagination {
    display: none;
  }
  .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-prev, .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-next {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
  }
  .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-prev span, .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-next span {
    color: #232323;
  }
  .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-next {
    right: -15px;
  }
  .st-header-9 .st-sliders.st-list-slider.style-3 .st-button-prev {
    left: -15px;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.left {
    padding-right: 15px;
  }
  .st-header-9 .st-search-form-calendar .calendar-time-wrapper .calendar-time.right {
    padding-left: 15px;
  }
}
@media (max-width: 1024px) and (min-width: 992px) {
  .st-header-9 .search-result-page.layout5 .st-results .page-half-map .dataarea,
.st-header-9 .search-result-page.layout5 .st-results .page-half-map .maparea,
.st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right .col-left,
.st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right .col-right {
    width: 50%;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-banner-search-form {
    padding: 0;
  }
  .st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-sub-header .day-off-week {
    width: 14.2857142857%;
    height: auto;
  }
  .st-header-9 #st-content-wrapper {
    padding-bottom: 60px;
  }
  .st-header-9 .daterangepicker.dropdown-menu {
    right: 11px !important;
  }
  .st-header-9 .st-list-destination .st-button-prev, .st-header-9 .st-list-destination .st-button-next {
    display: flex !important;
  }
}
@media (max-width: 992px) and (min-width: 768px) {
  .st-header-9 .st-style-elementor.search-result-page .banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .st-header-9 .st-style-elementor.search-result-page .banner .container {
    padding: 0;
  }
  .st-header-9 .st-style-elementor.search-result-page .banner .container .st-banner-search-form.style_2 {
    padding: 0 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .top-filter, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .top-filter, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .top-filter {
    padding: 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .top-filter ul li:not(:last-child), .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li:not(:last-child), .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .top-filter ul li:not(:last-child) {
    margin-right: 8px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-right, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .page-half-map.map-right {
    padding-left: 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .modern-search-result, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .modern-search-result, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .page-half-map .modern-search-result {
    padding-right: 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .toolbar, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .toolbar, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .page-half-map .toolbar {
    display: flex !important;
    padding-right: 15px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .toolbar .toolbar-action, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action {
    display: flex !important;
    margin-top: 60px !important;
    margin-bottom: 40px !important;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout {
    display: none;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 > .container {
    padding: 0 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 .toolbar {
    display: flex !important;
    margin-top: 60px !important;
    margin-bottom: 40px !important;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 .toolbar .toolbar-action li.layout {
    display: none;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 .toolbar .search-string {
    display: none;
  }
  .st-header-9.single-st_hotel #st-content-wrapper.st-style-4 .services-nearby h2.st-heading {
    text-align: center;
  }
  .st-header-9.single .mfp-content .mfp-figure figure img.mfp-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch {
    display: inline-block;
    margin: 0 -15px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch > .item {
    width: 50%;
    padding: 0 15px;
    float: left;
    border: 0;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch > .item .form-booking-inpage {
    border: 1px solid #DEDEDE;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08), 0px 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch > .item .item-infor {
    padding-bottom: 18px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch > .item .item-infor h2.heading {
    margin-bottom: 20px;
    padding: 0 20px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch > .item .item-infor .facilities {
    padding: 0 20px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch > .item .item-infor .facilities .st-list-facilities {
    padding-bottom: 24px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper {
    text-align: left;
    margin: 0 20px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .btn-show-price, .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .show-detail {
    float: left;
    margin: 10px 20px 30px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 .relate-rooms .st-hr {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 .services-nearby h2.st-heading {
    padding-top: 0px;
    margin-bottom: 40px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 .services-nearby .services-grid .service-list-wrapper .owl-nav {
    display: none;
  }
  .st-header-9 .st-gallery.style-slider {
    margin-top: 60px;
  }
  .st-header-9.single-hotel_room #st-content-wrapper.st-style-elementor .st-hotel-room-content {
    padding-top: 40px;
  }
  .st-header-9.single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items {
    margin-top: 40px;
    padding-bottom: 25px;
  }
  .st-header-9 .st-checkout-page.style-2 .order-1 {
    margin-bottom: 50px;
  }
  .st-header-9 .st-checkout-page.style-2 .cart-info {
    margin-top: 30px;
    padding: 30px 20px;
  }
  .st-header-9 .st-checkout-page.style-2 .booking-success-notice {
    padding: 40px 50px;
    margin-bottom: 50px;
  }
  .st-header-9 .st-checkout-page.style-2 .booking-success-notice .col-left {
    display: block;
    margin-bottom: 40px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 40px;
  }
  .st-header-9 .st-checkout-page.style-2 .booking-success-notice .success-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
  }
  .st-header-9 .st-checkout-page.style-2 .booking-success-notice .notice-success {
    text-align: center;
  }
  .st-header-9 .st-checkout-page.style-2 .booking-success-notice .col-right .booking-info-detail {
    padding: 0 20%;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .box_info_payment {
    padding: 40px 50px;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .box_info_payment .sidebar-order {
    display: flex;
    justify-content: center;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-notice-success {
    flex-flow: column;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-notice-success .icon-success {
    margin-bottom: 20px;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-notice-success .title-admin {
    margin-left: 0;
    text-align: center;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-notice-success .title-admin .st-admin-success {
    margin-bottom: 10px;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-notice-success .title-admin .st-text {
    margin-bottom: 40px;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 40px;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-notice-success::after {
    display: none;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .info-order-member {
    margin-top: 50px !important;
  }
  .st-header-9 .st-package-success-wrapper.member-package-layout2 .st-package-wrapper .package-cart {
    margin-bottom: 50px;
  }
  .st-header-9 .st-results {
    margin-top: 0;
  }
  .st-header-9 .st-list-service.slider.style_2 .st-button-prev, .st-header-9 .st-list-service.slider.style_2 .st-button-next {
    display: none !important;
  }
  .st-header-9 .relate-rooms .owl-prev, .st-header-9 .relate-rooms .owl-next, .st-header-9 .services-nearby .owl-prev, .st-header-9 .services-nearby .owl-next {
    display: none !important;
  }
  .st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-sub-header .day-off-week {
    width: 14.2857142857%;
    height: auto;
  }
  .st-header-9 #st-content-wrapper {
    padding-bottom: 60px;
  }
  .st-header-9 .daterangepicker.dropdown-menu {
    right: 11px !important;
  }
  .st-header-9 .services-nearby, .st-header-9 .relate-rooms {
    margin-bottom: 40px;
  }
  .st-header-9 .st-list-destination .st-button-prev, .st-header-9 .st-list-destination .st-button-next {
    display: flex !important;
  }
  .st-header-9 .search-result-page.layout5 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.layout6 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.tour-layout7 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.activity-layout5 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.car-layout4 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .button-filter {
    display: block;
  }
}
@media (max-width: 767px) {
  .st-header-9 .container, .st-header-9 .container-sm {
    max-width: 100%;
  }
  .st-header-9 .st-testimonial-modern-slider .st-testimonial .service-testimonial-wrapper .item {
    padding: 30px 15px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-banner-search-form,
.st-header-9 .st-style-elementor.search-result-page.tour-layout7 .st-banner-search-form,
.st-header-9 .st-style-elementor.search-result-page.activity-layout5 .st-banner-search-form,
.st-header-9 .st-style-elementor.search-result-page.car-layout4 .st-banner-search-form,
.st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-banner-search-form {
    padding: 0;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-right,
.st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right {
    padding-left: 15px;
  }
  .st-header-9 .search-result-page.layout5 .st-results .toolbar {
    display: flex !important;
  }
  .st-header-9 .st-testimonial-modern-slider .st-testimonial .st-button-prev,
.st-header-9 .st-testimonial-modern-slider .st-testimonial .st-button-next {
    display: none;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .facilities .st-list-facilities {
    justify-content: space-between;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .facilities .st-list-facilities .item {
    width: auto;
  }
  .st-header-9.single .mfp-content .mfp-figure figure img.mfp-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .price-wrapper {
    padding-top: 18px;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item .item-infor {
    padding-bottom: 0;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 #st-list-room .fetch .item .item-infor h2.heading {
    margin-bottom: 20px;
    padding-top: 0;
  }
  .st-header-9.single #st-content-wrapper.st-style-4 .services-nearby h2.st-heading {
    text-align: center;
  }
  .st-header-9 .daterangepicker.dropdown-menu .calendar .calendar-table .table-sub-header .day-off-week {
    width: 14.2857142857%;
    height: auto;
  }
  .st-header-9 .st-list-service.slider.style_2 .st-button-prev, .st-header-9 .st-list-service.slider.style_2 .st-button-next {
    display: none !important;
  }
  .st-header-9 .relate-rooms .owl-prev, .st-header-9 .relate-rooms .owl-next, .st-header-9 .services-nearby .owl-prev, .st-header-9 .services-nearby .owl-next {
    display: none !important;
  }
  .st-header-9 .st-list-destination .st-button-prev, .st-header-9 .st-list-destination .st-button-next {
    display: flex !important;
  }
  .st-header-9 #st-content-wrapper {
    padding-bottom: 50px;
  }
  .st-header-9.single-hotel_room .st-service-header2 .right {
    margin-top: 0;
  }
  .st-header-9 .daterangepicker.dropdown-menu {
    right: 11px !important;
  }
  .st-header-9 .services-nearby, .st-header-9 .relate-rooms {
    margin-bottom: 40px;
  }
  .st-header-9 .st-service-feature .item {
    margin-bottom: 20px;
  }
  .st-header-9 .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper .item-inner .render {
    display: none;
  }
  .st-header-9 .search-result-page.layout5 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.layout6 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.tour-layout6 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.activity-layout4 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.car-layout3 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.layout-rental-4 .st-results .toolbar .show-filter-mobile .button-filter, .st-header-9 .search-result-page.layout-rental-5 .st-results .toolbar .show-filter-mobile .button-filter {
    display: block;
  }
  .st-header-9.single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .st-header-9.single-st_rental #st-content-wrapper.st-style-elementor .room-featured-items .item {
    width: 50%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .st-header-9 .swiper-pagination {
    margin-top: 30px;
  }
  .st-header-9 .st-style-elementor.search-result-page .banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .st-header-9 .st-style-elementor.search-result-page .banner .container {
    padding: 0;
  }
  .st-header-9 .st-style-elementor.search-result-page .banner .container .st-banner-search-form.style_2 {
    padding: 0 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .top-filter, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .top-filter, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .top-filter {
    padding: 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .top-filter ul li:not(:last-child), .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .top-filter ul li:not(:last-child), .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .top-filter ul li:not(:last-child) {
    margin-right: 8px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map.map-right, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map.map-right, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .page-half-map.map-right {
    padding-left: 15px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .modern-search-result, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .modern-search-result, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .page-half-map .modern-search-result {
    padding-right: 15px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .page-half-map .toolbar, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .page-half-map .toolbar, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .page-half-map .toolbar {
    display: flex !important;
    padding-right: 15px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .toolbar .toolbar-action, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action {
    display: flex !important;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout5 .st-results .toolbar .toolbar-action li.layout, .st-header-9 .st-style-elementor.search-result-page.layout-rental-4 .st-results .toolbar .toolbar-action li.layout, .st-header-9 .st-style-elementor.search-result-page.layout-rental-5 .st-results .toolbar .toolbar-action li.layout {
    display: none;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 > .container {
    padding: 0 20px;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 .toolbar {
    display: flex !important;
    margin-top: 60px !important;
    margin-bottom: 40px !important;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 .toolbar .toolbar-action li.layout {
    display: none;
  }
  .st-header-9 .st-style-elementor.search-result-page.layout6 .toolbar .search-string {
    display: none;
  }
}

[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination .stt-icon, [dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest .stt-icon {
  margin-right: 0;
  margin-left: 16px;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-detination:after, [dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .field-guest:after {
  left: 0;
  right: auto;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search {
  border-left: 0;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-arrow {
  transform: rotate(180deg);
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field:after {
  right: auto;
  left: 0;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .form-date-field .date-item-wrapper .stt-icon {
  margin-right: 0;
  margin-left: 16px;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .button-search-wrapper {
  margin-left: 12px;
  margin-right: auto;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .button-search-wrapper .btn-search span {
  margin-right: 0;
  margin-left: 8px;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu li:not(.location-heading).item span:not(.stt-icon) {
  text-align: right;
}
[dir=rtl] .st-banner-search-form.style_2 .st-search-form-el .st-search-el .search-form .destination-search .dropdown-menu li:not(.location-heading).item span.stt-icon {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .services-item.item-elementor .item .featured-image .featured {
  right: 20px;
  left: auto;
}
[dir=rtl] .services-item.item-elementor .item .content-item .reviews .rate {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] .services-item.item-elementor .item .content-item .price-wrapper .price {
  margin-right: 8px;
  margin-left: 4px;
}
[dir=rtl] .search-result-page.layout5 .top-filter ul li .dropdown .stt-icon {
  margin-right: 5px;
  margin-left: 0;
}
[dir=rtl] .st-style-elementor .top-filter .dropdown-menu .dropdown-title {
  text-align: right;
}
[dir=rtl] .st-icheck-item label {
  text-align: right;
}
[dir=rtl] .st-style-elementor .top-filter .dropdown-menu .st-icheck-item {
  text-align: right;
}
[dir=rtl] .search-result-page.layout5 .st-results .toolbar .toolbar-action li .dropdown-toggle span, [dir=rtl] .search-result-page.layout6 .st-results .toolbar .toolbar-action li .dropdown-toggle span {
  margin-left: 0;
  margin-right: 10px;
}
[dir=rtl] .search-result-page.layout5 .st-results .page-half-map .col-right .toggle-map, [dir=rtl] .search-result-page.layout5 .st-results .page-half-map .col-right .close-map-new {
  left: auto;
  right: 30px;
}
[dir=rtl] .search-result-page.layout5 .st-results .page-half-map.map-right {
  padding-right: 40px;
  padding-left: 0;
}
[dir=rtl] .search-result-page.layout5 .st-results .page-half-map .modern-search-result {
  padding-left: 35px;
  padding-right: 1px;
}
[dir=rtl] .search-result-page.layout5 .st-results .toolbar, [dir=rtl] .search-result-page.layout6 .st-results .toolbar {
  padding-left: 40px;
  padding-right: 0;
}
[dir=rtl] .search-result-page.layout5 .st-results .toolbar .toolbar-action li:not(:first-child), [dir=rtl] .search-result-page.layout6 .st-results .toolbar .toolbar-action li:not(:first-child) {
  margin-right: 27px;
  margin-left: 0;
}
[dir=rtl] .search-result-page.layout5 .st-results.nomap .page-half-map.map-right {
  padding-right: 0 !important;
}
[dir=rtl] .search-result-page.layout5 .st-results .page-half-map.map-left .dataarea {
  padding-right: 40px;
  padding-left: 0;
}
[dir=rtl] .search-result-page.layout5 .st-results .page-half-map.map-left .col-right {
  direction: rtl !important;
}
[dir=rtl] .services-item.item-elementor.list.list-2 .item .content-item .content-item-right {
  border-left: none;
  border-right: 1px solid #DEDEDE;
  padding-right: 30px;
  padding-left: 0;
}
[dir=rtl] .st-service-header2 .st-review-score {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .st-service-header2 .st-review-score .score {
  margin-right: 0;
  margin-left: 12px;
}
[dir=rtl] #st-content-wrapper .form-book-wrapper .form-date-field .st_grid_date li:nth-child(1) {
  border-right: none;
  border-left: 1px solid #d7dce3;
}
[dir=rtl] .single-hotel_room #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date, [dir=rtl] .single-st_hotel #st-content-wrapper.st-style-elementor .st-form-book-wrapper .form-book-wrapper .form-date-field .date-wrapper .st-item-date {
  text-align: right;
}
[dir=rtl] .single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item:not(:last-child), [dir=rtl] .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item:not(:last-child) {
  margin-right: 0;
  margin-left: 40px;
}
[dir=rtl] .single-hotel_room #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon, [dir=rtl] .single-st_hotel #st-content-wrapper.st-style-elementor .room-featured-items .item .stt-icon {
  margin-right: 0;
  margin-left: 10px;
}
[dir=rtl] .relate-rooms .st-owl-slider {
  direction: ltr;
}
[dir=rtl] .relate-rooms .st-owl-slider .item-slide {
  direction: rtl;
}
[dir=rtl] .st-checkout-page.style-2 .cart-info .service-section .service-left {
  margin-left: 20px;
  margin-right: 0;
}
[dir=rtl] .st-checkout-page .cart-info .coupon-section form .form-group input[type=text] {
  margin-right: 0;
  margin-left: 5px;
}
[dir=rtl] .st-checkout-page .booking-success-notice .notice-success, [dir=rtl] .page-template-template-checkout-packages-new .booking-success-notice .notice-success {
  margin-right: 20px;
  margin-left: 0;
}
[dir=rtl] .st-checkout-page.style-2 .info-form ul li .label {
  text-align: right;
}

@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) {
    .elementor-widget-image, .services-item.item-elementor .item, .image.st-border-radius {
      -webkit-transform: translate3d(0px, 0px, 0px);
    }
  }
  [type=button] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
  }
}

/*# sourceMappingURL=main.css.map */@font-face {
  font-family: 'traveler-icon';
  src:  url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/cores/assets/fonts/traveler-icon.eot?cj10r);
  src:  url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/cores/assets/fonts/traveler-icon.eot?cj10r#iefix) format('embedded-opentype'),
  url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/cores/assets/fonts/traveler-icon.ttf?cj10r) format('truetype'),
  url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/cores/assets/fonts/traveler-icon.woff?cj10r) format('woff'),
  url(//itvoyagesci.com/wp-content/themes/traveler/inc/modules/layouts/cores/assets/fonts/traveler-icon.svg?cj10r#icomoon) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="stt-icon-"], [class*=" stt-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'traveler-icon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stt-icon-logoamarican-express .path1:before {
  content: "\e900";
  color: rgb(247, 248, 250);
}
.stt-icon-logoamarican-express .path2:before {
  content: "\e901";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path3:before {
  content: "\e902";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path4:before {
  content: "\e903";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path5:before {
  content: "\e904";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path6:before {
  content: "\e905";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path7:before {
  content: "\e906";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path8:before {
  content: "\e907";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path9:before {
  content: "\e908";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path10:before {
  content: "\e909";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamarican-express .path11:before {
  content: "\e90a";
  margin-left: -1.5625em;
  color: rgb(48, 111, 200);
}
.stt-icon-logoamazon .path1:before {
  content: "\e90b";
  color: rgb(247, 248, 250);
}
.stt-icon-logoamazon .path2:before {
  content: "\e90c";
  margin-left: -1.5625em;
  color: rgb(255, 146, 1);
}
.stt-icon-logoamazon .path3:before {
  content: "\e90d";
  margin-left: -1.5625em;
  color: rgb(255, 146, 1);
}
.stt-icon-logoamazon .path4:before {
  content: "\e90e";
  margin-left: -1.5625em;
  color: rgb(37, 43, 64);
}
.stt-icon-logoamazon .path5:before {
  content: "\e90f";
  margin-left: -1.5625em;
  color: rgb(37, 43, 64);
}
.stt-icon-logoamazon .path6:before {
  content: "\e910";
  margin-left: -1.5625em;
  color: rgb(37, 43, 64);
}
.stt-icon-logoamazon .path7:before {
  content: "\e911";
  margin-left: -1.5625em;
  color: rgb(37, 43, 64);
}
.stt-icon-logoamazon .path8:before {
  content: "\e912";
  margin-left: -1.5625em;
  color: rgb(37, 43, 64);
}
.stt-icon-logoamazon .path9:before {
  content: "\e913";
  margin-left: -1.5625em;
  color: rgb(37, 43, 64);
}
.stt-icon-logoamex .path1:before {
  content: "\e914";
  color: rgb(0, 111, 207);
}
.stt-icon-logoamex .path2:before {
  content: "\e915";
  margin-left: -1.5625em;
  color: rgb(255, 255, 255);
}
.stt-icon-logoapple-pay .path1:before {
  content: "\e916";
  color: rgb(247, 248, 250);
}
.stt-icon-logoapple-pay .path2:before {
  content: "\e917";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
}
.stt-icon-logoapple-pay .path3:before {
  content: "\e918";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
}
.stt-icon-logoapple-pay .path4:before {
  content: "\e919";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
}
.stt-icon-logoapple-pay .path5:before {
  content: "\e91a";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
}
.stt-icon-logoapple-pay .path6:before {
  content: "\e91b";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
}
.stt-icon-logobitcoin .path1:before {
  content: "\e91c";
  color: rgb(247, 248, 250);
}
.stt-icon-logobitcoin .path2:before {
  content: "\e91d";
  margin-left: -1.5625em;
  color: rgb(77, 77, 77);
}
.stt-icon-logobitcoin .path3:before {
  content: "\e91e";
  margin-left: -1.5625em;
  color: rgb(247, 147, 26);
}
.stt-icon-logodiners-club .path1:before {
  content: "\e91f";
  color: rgb(247, 248, 250);
}
.stt-icon-logodiners-club .path2:before {
  content: "\e920";
  margin-left: -1.5625em;
  color: rgb(0, 121, 190);
}
.stt-icon-logodiners-club .path3:before {
  content: "\e921";
  margin-left: -1.5625em;
  color: rgb(0, 121, 190);
}
.stt-icon-logodiscover .path1:before {
  content: "\e922";
  color: rgb(247, 248, 250);
}
.stt-icon-logodiscover .path2:before {
  content: "\e923";
  margin-left: -1.5625em;
  color: rgb(35, 31, 32);
}
.stt-icon-logodiscover .path3:before {
  content: "\e924";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
}
.stt-icon-logodiscover .path4:before {
  content: "\e925";
  margin-left: -1.5625em;
  color: rgb(0, 0, 0);
  opacity: 0.65;
}
.stt-icon-logodiscover .path5:before {
  content: "\e926";
  margin-left: -1.5625em;
  color: rgb(35, 31, 32);
}
.stt-icon-logodiscover .path6:before {
  content: "\e927";
  margin-left: -1.5625em;
  color: rgb(35, 31, 32);
}
.stt-icon-logodiscover .path7:before {
  content: "\e928";
  margin-left: -1.5625em;
  color: rgb(244, 129, 32);
}
.stt-icon-logoEthereum .path1:before {
  content: "\e929";
  color: rgb(247, 248, 250);
}
.stt-icon-logoEthereum .path2:before {
  content: "\e92a";
  margin-left: -1.5625em;
  color: rgb(52, 52, 52);
}
.stt-icon-logoEthereum .path3:before {
  content: "\e92b";
  margin-left: -1.5625em;
  color: rgb(140, 140, 140);
}
.stt-icon-logoEthereum .path4:before {
  content: "\e92c";
  margin-left: -1.5625em;
  color: rgb(60, 60, 59);
}
.stt-icon-logoEthereum .path5:before {
  content: "\e92d";
  margin-left: -1.5625em;
  color: rgb(140, 140, 140);
}
.stt-icon-logoEthereum .path6:before {
  content: "\e92e";
  margin-left: -1.5625em;
  color: rgb(20, 20, 20);
}
.stt-icon-logoEthereum .path7:before {
  content: "\e92f";
  margin-left: -1.5625em;
  color: rgb(57, 57, 57);
}
.stt-icon-logogoogle-pay .path1:before {
  content: "\e930";
  color: rgb(247, 248, 250);
}
.stt-icon-logogoogle-pay .path2:before {
  content: "\e931";
  margin-left: -1.5625em;
  color: rgb(95, 99, 104);
}
.stt-icon-logogoogle-pay .path3:before {
  content: "\e932";
  margin-left: -1.5625em;
  color: rgb(66, 133, 244);
}
.stt-icon-logogoogle-pay .path4:before {
  content: "\e933";
  margin-left: -1.5625em;
  color: rgb(52, 168, 83);
}
.stt-icon-logogoogle-pay .path5:before {
  content: "\e934";
  margin-left: -1.5625em;
  color: rgb(251, 188, 4);
}
.stt-icon-logogoogle-pay .path6:before {
  content: "\e935";
  margin-left: -1.5625em;
  color: rgb(234, 67, 53);
}
.stt-icon-logoJCB .path1:before {
  content: "\e936";
  color: rgb(247, 248, 250);
}
.stt-icon-logoJCB .path2:before {
  content: "\e937";
  margin-left: -1.5625em;
  color: rgb(84, 178, 48);
}
.stt-icon-logoJCB .path3:before {
  content: "\e938";
  margin-left: -1.5625em;
  color: rgb(0, 108, 185);
}
.stt-icon-logoJCB .path4:before {
  content: "\e939";
  margin-left: -1.5625em;
  color: rgb(225, 2, 56);
}
.stt-icon-logoklarna .path1:before {
  content: "\e93a";
  color: rgb(255, 179, 199);
}
.stt-icon-logoklarna .path2:before {
  content: "\e93b";
  margin-left: -1.5625em;
  color: rgb(10, 11, 9);
}
.stt-icon-logomaestro .path1:before {
  content: "\e93c";
  color: rgb(247, 248, 250);
}
.stt-icon-logomaestro .path2:before {
  content: "\e93d";
  margin-left: -1.5625em;
  color: rgb(235, 0, 27);
}
.stt-icon-logomaestro .path3:before {
  content: "\e93e";
  margin-left: -1.5625em;
  color: rgb(0, 162, 229);
}
.stt-icon-logomaestro .path4:before {
  content: "\e93f";
  margin-left: -1.5625em;
  color: rgb(115, 117, 207);
}
.stt-icon-logomaster-card .path1:before {
  content: "\e940";
  color: rgb(247, 248, 250);
}
.stt-icon-logomaster-card .path2:before {
  content: "\e941";
  margin-left: -1.5625em;
  color: rgb(237, 0, 6);
}
.stt-icon-logomaster-card .path3:before {
  content: "\e942";
  margin-left: -1.5625em;
  color: rgb(249, 160, 0);
}
.stt-icon-logomaster-card .path4:before {
  content: "\e943";
  margin-left: -1.5625em;
  color: rgb(255, 94, 0);
}
.stt-icon-logopaypal .path1:before {
  content: "\e944";
  color: rgb(247, 248, 250);
}
.stt-icon-logopaypal .path2:before {
  content: "\e945";
  margin-left: -1.5625em;
  color: rgb(0, 48, 135);
}
.stt-icon-logopaypal .path3:before {
  content: "\e946";
  margin-left: -1.5625em;
  color: rgb(48, 134, 200);
}
.stt-icon-logopaypal .path4:before {
  content: "\e947";
  margin-left: -1.5625em;
  color: rgb(1, 33, 105);
}
.stt-icon-logopaypal2 .path1:before {
  content: "\e948";
  color: rgb(247, 248, 250);
}
.stt-icon-logopaypal2 .path2:before {
  content: "\e949";
  margin-left: -1.5625em;
  color: rgb(0, 47, 135);
}
.stt-icon-logopaypal2 .path3:before {
  content: "\e94a";
  margin-left: -1.5625em;
  color: rgb(0, 47, 135);
}
.stt-icon-logopaypal2 .path4:before {
  content: "\e94b";
  margin-left: -1.5625em;
  color: rgb(0, 47, 135);
}
.stt-icon-logopaypal2 .path5:before {
  content: "\e94c";
  margin-left: -1.5625em;
  color: rgb(0, 47, 135);
}
.stt-icon-logopaypal2 .path6:before {
  content: "\e94d";
  margin-left: -1.5625em;
  color: rgb(0, 47, 135);
}
.stt-icon-logopaypal2 .path7:before {
  content: "\e94e";
  margin-left: -1.5625em;
  color: rgb(0, 47, 135);
}
.stt-icon-logopaypal2 .path8:before {
  content: "\e94f";
  margin-left: -1.5625em;
  color: rgb(1, 45, 134);
  opacity: 0.68;
}
.stt-icon-logopaypal2 .path9:before {
  content: "\e950";
  margin-left: -1.5625em;
  color: rgb(1, 45, 134);
  opacity: 0.7;
}
.stt-icon-logopaypal2 .path10:before {
  content: "\e951";
  margin-left: -1.5625em;
  color: rgb(1, 45, 134);
}
.stt-icon-logoshoppay .path1:before {
  content: "\e952";
  color: rgb(90, 49, 244);
}
.stt-icon-logoshoppay .path2:before {
  content: "\e953";
  margin-left: -1.5625em;
  color: rgb(255, 255, 255);
}
.stt-icon-logoskrill .path1:before {
  content: "\e954";
  color: rgb(247, 248, 250);
}
.stt-icon-logoskrill .path2:before {
  content: "\e955";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logoskrill .path3:before {
  content: "\e956";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logoskrill .path4:before {
  content: "\e957";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logoskrill .path5:before {
  content: "\e958";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logoskrill .path6:before {
  content: "\e959";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logoskrill .path7:before {
  content: "\e95a";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logoskrill .path8:before {
  content: "\e95b";
  margin-left: -1.5625em;
  color: rgb(134, 33, 101);
}
.stt-icon-logovisa .path1:before {
  content: "\e95c";
  color: rgb(247, 248, 250);
}
.stt-icon-logovisa .path2:before {
  content: "\e95d";
  margin-left: -1.5625em;
  color: rgb(0, 87, 159);
}
.stt-icon-logovisa .path3:before {
  content: "\e95e";
  margin-left: -1.5625em;
  color: rgb(0, 87, 159);
}
.stt-icon-logovisa .path4:before {
  content: "\e95f";
  margin-left: -1.5625em;
  color: rgb(0, 87, 159);
}
.stt-icon-logovisa .path5:before {
  content: "\e960";
  margin-left: -1.5625em;
  color: rgb(0, 87, 159);
}
.stt-icon-logovisa .path6:before {
  content: "\e961";
  margin-left: -1.5625em;
  color: rgb(250, 166, 26);
}
.stt-icon-add:before {
  content: "\e962";
}
.stt-icon-adult:before {
  content: "\e963";
}
.stt-icon-area:before {
  content: "\e964";
}
.stt-icon-arrow-down:before {
  content: "\e965";
}
.stt-icon-arrow-left:before {
  content: "\e966";
}
.stt-icon-arrow-right-1:before {
  content: "\e967";
}
.stt-icon-arrow-right:before {
  content: "\e968";
}
.stt-icon-arrow-up:before {
  content: "\e969";
}
.stt-icon-automatic:before {
  content: "\e96a";
}
.stt-icon-baby:before {
  content: "\e96b";
}
.stt-icon-bag02:before {
  content: "\e96c";
}
.stt-icon-baggage:before {
  content: "\e96d";
}
.stt-icon-bathtub:before {
  content: "\e96e";
}
.stt-icon-bed:before {
  content: "\e96f";
}
.stt-icon-calendar:before {
  content: "\e970";
}
.stt-icon-call-calling:before {
  content: "\e971";
}
.stt-icon-car-door:before {
  content: "\e972";
}
.stt-icon-category:before {
  content: "\e973";
}
.stt-icon-check:before {
  content: "\e974";
}
.stt-icon-clock:before {
  content: "\e975";
}
.stt-icon-close:before {
  content: "\e976";
}
.stt-icon-copy:before {
  content: "\e977";
}
.stt-icon-eye:before {
  content: "\e978";
}
.stt-icon-eye-slash:before {
  content: "\e979";
}
.stt-icon-facebook:before {
  content: "\e97a";
}
.stt-icon-filter:before {
  content: "\e97b";
}
.stt-icon-footprint:before {
  content: "\e97c";
}
.stt-icon-gallery:before {
  content: "\e97d";
}
.stt-icon-google-plus:before {
  content: "\e97e";
}
.stt-icon-heart1:before {
  content: "\e97f";
}
.stt-icon-heart2:before {
  content: "\e980";
}
.stt-icon-in:before {
  content: "\e981";
}
.stt-icon-instagram:before {
  content: "\e982";
}
.stt-icon-language:before {
  content: "\e983";
}
.stt-icon-like:before {
  content: "\e984";
}
.stt-icon-linkedin:before {
  content: "\e985";
}
.stt-icon-list:before {
  content: "\e986";
}
.stt-icon-location1:before {
  content: "\e987";
}
.stt-icon-location2:before {
  content: "\e988";
}
.stt-icon-manual:before {
  content: "\e989";
}
.stt-icon-map:before {
  content: "\e98a";
}
.stt-icon-menu:before {
  content: "\e98b";
}
.stt-icon-messanger:before {
  content: "\e98c";
}
.stt-icon-minus:before {
  content: "\e98d";
}
.stt-icon-moon:before {
  content: "\e98e";
}
.stt-icon-out:before {
  content: "\e98f";
}
.stt-icon-pinterest:before {
  content: "\e990";
}
.stt-icon-play:before {
  content: "\e991";
}
.stt-icon-question:before {
  content: "\e992";
}
.stt-icon-quote1:before {
  content: "\e993";
}
.stt-icon-quote2:before {
  content: "\e994";
}
.stt-icon-search-normal:before {
  content: "\e995";
}
.stt-icon-share:before {
  content: "\e996";
}
.stt-icon-sms:before {
  content: "\e997";
}
.stt-icon-star1:before {
  content: "\e998";
}
.stt-icon-star2:before {
  content: "\e999";
}
.stt-icon-star-half:before {
  content: "\e99a";
}
.stt-icon-sun:before {
  content: "\e99b";
}
.stt-icon-tag:before {
  content: "\e99c";
}
.stt-icon-twitter:before {
  content: "\e99d";
}
.stt-icon-user1:before {
  content: "\e99e";
}
.stt-icon-user2:before {
  content: "\e99f";
}
.stt-icon-user3:before {
  content: "\e9a0";
}
.stt-icon-vimeo:before {
  content: "\e9a1";
}
.stt-icon-youtube:before {
  content: "\e9a2";
}.dialog-widget-content{background-color:var(--e-a-bg-default);position:absolute;border-radius:3px;box-shadow:2px 8px 23px 3px rgba(0,0,0,.2);overflow:hidden}.dialog-message{line-height:1.5;box-sizing:border-box}.dialog-close-button{cursor:pointer;position:absolute;margin-block-start:15px;right:15px;color:var(--e-a-color-txt);font-size:15px;line-height:1;transition:var(--e-a-transition-hover)}.dialog-close-button:hover{color:var(--e-a-color-txt-hover)}.dialog-prevent-scroll{overflow:hidden;max-height:100vh}.dialog-type-lightbox{position:fixed;height:100%;width:100%;bottom:0;left:0;background-color:rgba(0,0,0,.8);z-index:9999;-webkit-user-select:none;-moz-user-select:none;user-select:none}.elementor-editor-active .elementor-popup-modal{background-color:initial}.dialog-type-alert .dialog-widget-content,.dialog-type-confirm .dialog-widget-content{margin:auto;width:400px;padding:20px}.dialog-type-alert .dialog-header,.dialog-type-confirm .dialog-header{font-size:15px;font-weight:500}.dialog-type-alert .dialog-header:after,.dialog-type-confirm .dialog-header:after{content:"";display:block;border-block-end:var(--e-a-border);padding-block-end:10px;margin-block-end:10px;margin-inline-start:-20px;margin-inline-end:-20px}.dialog-type-alert .dialog-message,.dialog-type-confirm .dialog-message{min-height:50px}.dialog-type-alert .dialog-buttons-wrapper,.dialog-type-confirm .dialog-buttons-wrapper{padding-block-start:10px;display:flex;justify-content:flex-end;gap:15px}.dialog-type-alert .dialog-buttons-wrapper .dialog-button,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button{font-size:12px;font-weight:500;line-height:1.2;padding:8px 16px;outline:none;border:none;border-radius:var(--e-a-border-radius);background-color:var(--e-a-btn-bg);color:var(--e-a-btn-color-invert);transition:var(--e-a-transition-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover{border:none}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover{background-color:var(--e-a-btn-bg-hover);color:var(--e-a-btn-color-invert)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:active,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:active{background-color:var(--e-a-btn-bg-active)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not([disabled]),.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not([disabled]){cursor:pointer}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:disabled,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:disabled{background-color:var(--e-a-btn-bg-disabled);color:var(--e-a-btn-color-disabled)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:not(.elementor-button-state) .elementor-state-icon{display:none}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt{background:transparent;color:var(--e-a-color-txt)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:hover{background:var(--e-a-bg-hover);color:var(--e-a-color-txt-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel:disabled,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt:disabled{background:transparent;color:var(--e-a-color-txt-disabled)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt-border,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt-border{border:1px solid var(--e-a-color-txt-muted)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success{background-color:var(--e-a-btn-bg-success)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-success:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-success:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-success:hover{background-color:var(--e-a-btn-bg-success-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary{background-color:var(--e-a-btn-bg-primary);color:var(--e-a-btn-color)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-take_over:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary:hover{background-color:var(--e-a-btn-bg-primary-hover);color:var(--e-a-btn-color)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt{background:transparent;color:var(--e-a-color-primary-bold)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-cancel.dialog-take_over:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.dialog-ok.dialog-cancel:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-ok:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-btn-txt.dialog-take_over:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.dialog-cancel:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-primary.e-btn-txt:hover{background:var(--e-a-bg-primary)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro{background-color:var(--e-a-btn-bg-accent)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:hover{background-color:var(--e-a-btn-bg-accent-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-accent:active,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.go-pro:active,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-accent:active,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.go-pro:active{background-color:var(--e-a-btn-bg-accent-active)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info{background-color:var(--e-a-btn-bg-info)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-info:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-info:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-info:hover{background-color:var(--e-a-btn-bg-info-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning{background-color:var(--e-a-btn-bg-warning)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-warning:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-warning:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-warning:hover{background-color:var(--e-a-btn-bg-warning-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger{background-color:var(--e-a-btn-bg-danger)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.e-danger:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.e-danger:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button.elementor-button-danger:hover{background-color:var(--e-a-btn-bg-danger-hover)}.dialog-type-alert .dialog-buttons-wrapper .dialog-button i,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button i{margin-inline-end:5px}.dialog-type-alert .dialog-buttons-wrapper .dialog-button:focus,.dialog-type-alert .dialog-buttons-wrapper .dialog-button:hover,.dialog-type-alert .dialog-buttons-wrapper .dialog-button:visited,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:focus,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:hover,.dialog-type-confirm .dialog-buttons-wrapper .dialog-button:visited{color:initial}.flatpickr-calendar{width:280px}.flatpickr-calendar .flatpickr-current-month span.cur-month{font-weight:300}.flatpickr-calendar .dayContainer{width:280px;min-width:280px;max-width:280px}.flatpickr-calendar .flatpickr-days{width:280px}.flatpickr-calendar .flatpickr-day{max-width:37px;height:37px;line-height:37px}.elementor-hidden{display:none}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;top:-10000em;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{content:"";display:block;clear:both;width:0;height:0}.e-logo-wrapper{background:var(--e-a-bg-logo);display:inline-block;padding:.75em;border-radius:50%;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-logo);font-size:1em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{margin:0;background-color:transparent}.elementor img{height:auto;max-width:100%;border:none;border-radius:0;box-shadow:none}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{max-width:100%;width:100%;margin:0;line-height:1;border:none}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;z-index:0;direction:ltr}.elementor .elementor-background-video-container{transition:opacity 1s;pointer-events:none}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.elementor .elementor-background-video{max-width:none}.elementor .elementor-html5-video{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay,.elementor .elementor-background-slideshow{height:100%;width:100%;top:0;left:0;position:absolute}.elementor .elementor-background-slideshow{z-index:0}.elementor .elementor-background-slideshow__slide__image{width:100%;height:100%;background-position:50%;background-size:cover}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order);align-self:var(--align-self)}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element:where(.e-con-full,.elementor-widget){flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);justify-content:var(--justify-content);align-items:var(--align-items);align-content:var(--align-content);gap:var(--gap)}.elementor-invisible{visibility:hidden}.elementor-align-center{text-align:center}.elementor-align-center .elementor-button{width:auto}.elementor-align-right{text-align:right}.elementor-align-right .elementor-button{width:auto}.elementor-align-left{text-align:left}.elementor-align-left .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}.elementor-custom-embed-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.elementor-custom-embed-play i{font-size:100px;color:#fff;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{height:100px;width:100px;fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3))}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-property:transform;transition-duration:10s;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-center .elementor-button{width:auto}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-left .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:1366px){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-center .elementor-button{width:auto}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-left .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-center .elementor-button{width:auto}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-left .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-center .elementor-button{width:auto}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-left .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-center .elementor-button{width:auto}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-left .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-center .elementor-button{width:auto}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-left .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-right:auto;margin-left:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-row{width:100%;display:flex}@media (max-width:1024px){.elementor-row{flex-wrap:wrap}}.elementor-widget-wrap{position:relative;width:100%;flex-wrap:wrap;align-content:flex-start}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:20px}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-bottom:0}.elementor-column{position:relative;min-height:1px;display:flex}.elementor-column-wrap{width:100%;position:relative;display:flex}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:1366px){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1366px){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9),.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9),.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}ul.elementor-icon-list-items.elementor-inline-items{display:flex;flex-wrap:wrap}ul.elementor-icon-list-items.elementor-inline-items .elementor-inline-item{word-break:break-word}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1366px){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;width:100%;word-spacing:var(--grid-column-gap);margin-bottom:calc(-1 * var(--grid-row-gap))}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-bottom:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1367px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:1366px){#elementor-device-mode:after{content:"laptop"}}@media (max-width:-1){#elementor-device-mode:after{content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}.e-con{--border-radius:0;--border-block-start-width:0px;--border-inline-end-width:0px;--border-block-end-width:0px;--border-inline-start-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-block-start:0px;--margin-inline-end:0px;--margin-block-end:0px;--margin-inline-start:0px;--padding-block-start:var(--container-default-padding-block-start,10px);--padding-inline-end:var(--container-default-padding-inline-end,10px);--padding-block-end:var(--container-default-padding-block-end,10px);--padding-inline-start:var(--container-default-padding-inline-start,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);position:var(--position);width:var(--width);min-width:0;min-height:var(--min-height);height:var(--height);border-radius:var(--border-radius);margin-block-start:var(--bc-margin-block-start,var(--margin-block-start));margin-inline-end:var(--bc-margin-inline-end,var(--margin-inline-end));margin-block-end:var(--bc-margin-block-end,var(--margin-block-end));margin-inline-start:var(--bc-margin-inline-start,var(--margin-inline-start));padding-inline-start:var(--bc-padding-inline-start,var(--padding-inline-start));padding-inline-end:var(--bc-padding-inline-end,var(--padding-inline-end));z-index:var(--z-index);overflow:var(--overflow);transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{text-align:var(--text-align);padding-block-start:var(--bc-padding-block-start,var(--padding-block-start));padding-block-end:var(--bc-padding-block-end,var(--padding-block-end))}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);align-content:var(--grid-align-content);grid-auto-flow:var(--grid-auto-flow);justify-items:var(--justify-items);align-items:var(--align-items)}.e-con-boxed.e-flex{flex-direction:column;flex-wrap:nowrap;justify-content:normal;align-items:normal;align-content:normal}.e-con-boxed.e-grid{justify-items:legacy;grid-template-columns:1fr;grid-template-rows:1fr}.e-con-boxed{text-align:initial;gap:initial}.e-con.e-flex>.e-con-inner{flex-wrap:var(--flex-wrap);justify-content:var(--justify-content);align-items:var(--align-items);align-content:var(--align-content);flex-basis:auto;flex-grow:1;flex-shrink:1;align-self:auto}.e-con.e-grid>.e-con-inner{justify-items:var(--justify-items);align-items:var(--align-items)}.e-con>.e-con-inner{gap:var(--gap);width:100%;max-width:var(--content-width);margin:0 auto;padding-inline-start:0;padding-inline-end:0;height:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-inline-end:auto;--margin-inline-start:auto;max-width:min(100%,var(--width))}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{content:var(--background-overlay);display:block;position:absolute;mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);transition:var(--overlay-transition,.3s);border-radius:var(--border-radius);border-style:var(--border-style);border-color:var(--border-color);border-block-start-width:var(--border-block-start-width);border-inline-end-width:var(--border-inline-end-width);border-block-end-width:var(--border-block-end-width);border-inline-start-width:var(--border-inline-start-width);top:calc(0px - var(--border-block-start-width));left:calc(0px - var(--border-inline-start-width));width:max(100% + var(--border-inline-end-width) + var(--border-inline-start-width),100%);height:max(100% + var(--border-block-start-width) + var(--border-block-end-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-radius:var(--border-radius);border-style:var(--border-style);border-color:var(--border-color);border-block-start-width:var(--border-block-start-width);border-inline-end-width:var(--border-inline-end-width);border-block-end-width:var(--border-block-end-width);border-inline-start-width:var(--border-inline-start-width);top:calc(0px - var(--border-block-start-width));left:calc(0px - var(--border-inline-start-width));width:max(100% + var(--border-inline-end-width) + var(--border-inline-start-width),100%);height:max(100% + var(--border-block-start-width) + var(--border-block-end-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-phone{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:wrap}}.e-con{--bc-margin-block-start:var(--margin-top);--bc-margin-block-end:var(--margin-bottom);--bc-margin-inline-start:var(--margin-left);--bc-margin-inline-end:var(--margin-right);--bc-padding-block-start:var(--padding-top);--bc-padding-block-end:var(--padding-bottom);--bc-padding-inline-start:var(--padding-left);--bc-padding-inline-end:var(--padding-right)}[dir=rtl] .e-con{--bc-margin-inline-start:var(--margin-right);--bc-margin-inline-end:var(--margin-left);--bc-padding-inline-start:var(--padding-right);--bc-padding-inline-end:var(--padding-left)}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{flex-wrap:wrap;align-items:center}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{width:100%;max-width:100%;border:1px solid #69727d;background-color:transparent;color:#1f2124;vertical-align:middle;flex-grow:1}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;font-size:inherit;font-family:inherit;font-weight:inherit;font-style:inherit;text-transform:inherit;letter-spacing:inherit;line-height:inherit;flex-basis:100%;padding-right:20px}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;position:absolute;top:50%;transform:translateY(-50%);right:10px;pointer-events:none;text-shadow:0 0 3px rgba(0,0,0,.3)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-right:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{content:"*";color:red;padding-left:.2em}.elementor-field-textual{line-height:1.4;font-size:15px;min-height:40px;padding:5px 14px;border-radius:3px}.elementor-field-textual.elementor-size-xs{font-size:13px;min-height:33px;padding:4px 12px;border-radius:2px}.elementor-field-textual.elementor-size-md{font-size:16px;min-height:47px;padding:6px 16px;border-radius:4px}.elementor-field-textual.elementor-size-lg{font-size:18px;min-height:59px;padding:7px 20px;border-radius:5px}.elementor-field-textual.elementor-size-xl{font-size:20px;min-height:72px;padding:8px 24px;border-radius:6px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-end}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{margin:10px 0;font-size:1em;line-height:1}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-weight:400;font-style:normal;vertical-align:middle;margin-right:5px}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{padding-top:0;padding-bottom:0;border:none}.elementor-form .elementor-button>span{display:flex;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element .elementor-widget-container{transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-button{display:inline-block;line-height:1;background-color:#69727d;font-size:15px;padding:12px 24px;border-radius:3px;color:#fff;fill:#fff;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;justify-content:center}.elementor-button-icon{flex-grow:0;order:5}.elementor-button-icon svg{width:1em;height:auto}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{flex-grow:1;order:10;display:inline-block}.elementor-button.elementor-size-xs{font-size:13px;padding:10px 20px;border-radius:2px}.elementor-button.elementor-size-md{font-size:16px;padding:15px 30px;border-radius:4px}.elementor-button.elementor-size-lg{font-size:18px;padding:20px 40px;border-radius:5px}.elementor-button.elementor-size-xl{font-size:20px;padding:25px 50px;border-radius:6px}.elementor-button .elementor-align-icon-right{margin-left:5px;order:15}.elementor-button .elementor-align-icon-left{margin-right:5px;order:5}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-tab-title a{color:inherit}.elementor-view-stacked .elementor-icon{padding:.5em;background-color:#69727d;color:#fff;fill:#fff}.elementor-view-framed .elementor-icon{padding:.5em;color:#69727d;border:3px solid #69727d;background-color:transparent}.elementor-icon{display:inline-block;line-height:1;transition:all .3s;color:#69727d;font-size:50px;text-align:center}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{width:1em;height:1em;position:relative;display:block}.elementor-icon i:before,.elementor-icon svg:before{position:absolute;left:50%;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container{transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.elementor-element,.elementor-lightbox{--swiper-theme-color:#000;--swiper-navigation-size:44px;--swiper-pagination-bullet-size:6px;--swiper-pagination-bullet-horizontal-gap:6px}.elementor-element .swiper-container .swiper-slide figure,.elementor-element .swiper .swiper-slide figure,.elementor-lightbox .swiper-container .swiper-slide figure,.elementor-lightbox .swiper .swiper-slide figure{line-height:0}.elementor-element .swiper-container .elementor-lightbox-content-source,.elementor-element .swiper .elementor-lightbox-content-source,.elementor-lightbox .swiper-container .elementor-lightbox-content-source,.elementor-lightbox .swiper .elementor-lightbox-content-source{display:none}.elementor-element .swiper-container .elementor-swiper-button,.elementor-element .swiper-container~.elementor-swiper-button,.elementor-element .swiper .elementor-swiper-button,.elementor-element .swiper~.elementor-swiper-button,.elementor-lightbox .swiper-container .elementor-swiper-button,.elementor-lightbox .swiper-container~.elementor-swiper-button,.elementor-lightbox .swiper .elementor-swiper-button,.elementor-lightbox .swiper~.elementor-swiper-button{position:absolute;display:inline-flex;z-index:1;cursor:pointer;font-size:25px;color:hsla(0,0%,93.3%,.9);top:50%;transform:translateY(-50%)}.elementor-element .swiper-container .elementor-swiper-button svg,.elementor-element .swiper-container~.elementor-swiper-button svg,.elementor-element .swiper .elementor-swiper-button svg,.elementor-element .swiper~.elementor-swiper-button svg,.elementor-lightbox .swiper-container .elementor-swiper-button svg,.elementor-lightbox .swiper-container~.elementor-swiper-button svg,.elementor-lightbox .swiper .elementor-swiper-button svg,.elementor-lightbox .swiper~.elementor-swiper-button svg{fill:hsla(0,0%,93.3%,.9);height:1em;width:1em}.elementor-element .swiper-container .elementor-swiper-button-prev,.elementor-element .swiper-container~.elementor-swiper-button-prev,.elementor-element .swiper .elementor-swiper-button-prev,.elementor-element .swiper~.elementor-swiper-button-prev,.elementor-lightbox .swiper-container .elementor-swiper-button-prev,.elementor-lightbox .swiper-container~.elementor-swiper-button-prev,.elementor-lightbox .swiper .elementor-swiper-button-prev,.elementor-lightbox .swiper~.elementor-swiper-button-prev{left:10px}.elementor-element .swiper-container .elementor-swiper-button-next,.elementor-element .swiper-container~.elementor-swiper-button-next,.elementor-element .swiper .elementor-swiper-button-next,.elementor-element .swiper~.elementor-swiper-button-next,.elementor-lightbox .swiper-container .elementor-swiper-button-next,.elementor-lightbox .swiper-container~.elementor-swiper-button-next,.elementor-lightbox .swiper .elementor-swiper-button-next,.elementor-lightbox .swiper~.elementor-swiper-button-next{right:10px}.elementor-element .swiper-container .elementor-swiper-button.swiper-button-disabled,.elementor-element .swiper-container~.elementor-swiper-button.swiper-button-disabled,.elementor-element .swiper .elementor-swiper-button.swiper-button-disabled,.elementor-element .swiper~.elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper-container .elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper-container~.elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper .elementor-swiper-button.swiper-button-disabled,.elementor-lightbox .swiper~.elementor-swiper-button.swiper-button-disabled{opacity:.3}.elementor-element .swiper-container .swiper-image-stretch .swiper-slide .swiper-slide-image,.elementor-element .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image,.elementor-lightbox .swiper-container .swiper-image-stretch .swiper-slide .swiper-slide-image,.elementor-lightbox .swiper .swiper-image-stretch .swiper-slide .swiper-slide-image{width:100%}.elementor-element .swiper-container .swiper-horizontal>.swiper-pagination-bullets,.elementor-element .swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper-container .swiper-pagination-custom,.elementor-element .swiper-container .swiper-pagination-fraction,.elementor-element .swiper-container~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper-container~.swiper-pagination-custom,.elementor-element .swiper-container~.swiper-pagination-fraction,.elementor-element .swiper .swiper-horizontal>.swiper-pagination-bullets,.elementor-element .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper .swiper-pagination-custom,.elementor-element .swiper .swiper-pagination-fraction,.elementor-element .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-element .swiper~.swiper-pagination-custom,.elementor-element .swiper~.swiper-pagination-fraction,.elementor-lightbox .swiper-container .swiper-horizontal>.swiper-pagination-bullets,.elementor-lightbox .swiper-container .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper-container .swiper-pagination-custom,.elementor-lightbox .swiper-container .swiper-pagination-fraction,.elementor-lightbox .swiper-container~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper-container~.swiper-pagination-custom,.elementor-lightbox .swiper-container~.swiper-pagination-fraction,.elementor-lightbox .swiper .swiper-horizontal>.swiper-pagination-bullets,.elementor-lightbox .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper .swiper-pagination-custom,.elementor-lightbox .swiper .swiper-pagination-fraction,.elementor-lightbox .swiper~.swiper-pagination-bullets.swiper-pagination-horizontal,.elementor-lightbox .swiper~.swiper-pagination-custom,.elementor-lightbox .swiper~.swiper-pagination-fraction{bottom:5px}.elementor-element .swiper-container.swiper-cube .elementor-swiper-button,.elementor-element .swiper-container.swiper-cube~.elementor-swiper-button,.elementor-element .swiper.swiper-cube .elementor-swiper-button,.elementor-element .swiper.swiper-cube~.elementor-swiper-button,.elementor-lightbox .swiper-container.swiper-cube .elementor-swiper-button,.elementor-lightbox .swiper-container.swiper-cube~.elementor-swiper-button,.elementor-lightbox .swiper.swiper-cube .elementor-swiper-button,.elementor-lightbox .swiper.swiper-cube~.elementor-swiper-button{transform:translate3d(0,-50%,1px)}.elementor-element :where(.swiper-container-horizontal)~.swiper-pagination-bullets,.elementor-lightbox :where(.swiper-container-horizontal)~.swiper-pagination-bullets{bottom:5px;left:0;width:100%}.elementor-element :where(.swiper-container-horizontal)~.swiper-pagination-bullets .swiper-pagination-bullet,.elementor-lightbox :where(.swiper-container-horizontal)~.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.elementor-element :where(.swiper-container-horizontal)~.swiper-pagination-progressbar,.elementor-lightbox :where(.swiper-container-horizontal)~.swiper-pagination-progressbar{width:100%;height:4px;left:0;top:0}.elementor-element.elementor-pagination-position-outside .swiper,.elementor-element.elementor-pagination-position-outside .swiper-container,.elementor-lightbox.elementor-pagination-position-outside .swiper,.elementor-lightbox.elementor-pagination-position-outside .swiper-container{padding-bottom:30px}.elementor-element.elementor-pagination-position-outside .swiper-container .elementor-swiper-button,.elementor-element.elementor-pagination-position-outside .swiper-container~.elementor-swiper-button,.elementor-element.elementor-pagination-position-outside .swiper .elementor-swiper-button,.elementor-element.elementor-pagination-position-outside .swiper~.elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper-container .elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper-container~.elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper .elementor-swiper-button,.elementor-lightbox.elementor-pagination-position-outside .swiper~.elementor-swiper-button{top:calc(50% - 30px / 2)}.elementor-element .elementor-swiper,.elementor-lightbox .elementor-swiper{position:relative}.elementor-element .elementor-main-swiper,.elementor-lightbox .elementor-main-swiper{position:static}.elementor-element.elementor-arrows-position-outside .swiper,.elementor-element.elementor-arrows-position-outside .swiper-container,.elementor-lightbox.elementor-arrows-position-outside .swiper,.elementor-lightbox.elementor-arrows-position-outside .swiper-container{width:calc(100% - 60px)}.elementor-element.elementor-arrows-position-outside .swiper-container .elementor-swiper-button-prev,.elementor-element.elementor-arrows-position-outside .swiper-container~.elementor-swiper-button-prev,.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,.elementor-element.elementor-arrows-position-outside .swiper~.elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper-container .elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper-container~.elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-prev,.elementor-lightbox.elementor-arrows-position-outside .swiper~.elementor-swiper-button-prev{left:0}.elementor-element.elementor-arrows-position-outside .swiper-container .elementor-swiper-button-next,.elementor-element.elementor-arrows-position-outside .swiper-container~.elementor-swiper-button-next,.elementor-element.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,.elementor-element.elementor-arrows-position-outside .swiper~.elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper-container .elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper-container~.elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper .elementor-swiper-button-next,.elementor-lightbox.elementor-arrows-position-outside .swiper~.elementor-swiper-button-next{right:0}.elementor-lightbox{--lightbox-ui-color:hsla(0,0%,93.3%,0.9);--lightbox-ui-color-hover:#fff;--lightbox-text-color:var(--lightbox-ui-color);--lightbox-header-icons-size:20px;--lightbox-navigation-icons-size:25px}.elementor-lightbox:not(.elementor-popup-modal) .dialog-header,.elementor-lightbox:not(.elementor-popup-modal) .dialog-message{text-align:center}.elementor-lightbox .dialog-header{display:none}.elementor-lightbox .dialog-widget-content{background:none;box-shadow:none;width:100%;height:100%}.elementor-lightbox .dialog-message{animation-duration:.3s;height:100%}.elementor-lightbox .dialog-message.dialog-lightbox-message{padding:0}.elementor-lightbox .dialog-lightbox-close-button{cursor:pointer;position:absolute;font-size:var(--lightbox-header-icons-size);right:.75em;margin-top:13px;padding:.25em;z-index:2;line-height:1;display:flex}.elementor-lightbox .dialog-lightbox-close-button svg{height:1em;width:1em}.elementor-lightbox .dialog-lightbox-close-button,.elementor-lightbox .elementor-swiper-button{color:var(--lightbox-ui-color);transition:all .3s;opacity:1}.elementor-lightbox .dialog-lightbox-close-button svg,.elementor-lightbox .elementor-swiper-button svg{fill:var(--lightbox-ui-color)}.elementor-lightbox .dialog-lightbox-close-button:hover,.elementor-lightbox .elementor-swiper-button:hover{color:var(--lightbox-ui-color-hover)}.elementor-lightbox .dialog-lightbox-close-button:hover svg,.elementor-lightbox .elementor-swiper-button:hover svg{fill:var(--lightbox-ui-color-hover)}.elementor-lightbox .swiper,.elementor-lightbox .swiper-container{height:100%}.elementor-lightbox .elementor-lightbox-item{display:flex;align-items:center;justify-content:center;position:relative;padding:70px;box-sizing:border-box;height:100%;margin:auto}@media (max-width:767px){.elementor-lightbox .elementor-lightbox-item{padding:70px 0}}.elementor-lightbox .elementor-lightbox-image{max-height:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none}.elementor-lightbox .elementor-lightbox-image,.elementor-lightbox .elementor-lightbox-image:hover{opacity:1;filter:none;border:none}.elementor-lightbox .elementor-lightbox-image{box-shadow:0 0 30px rgba(0,0,0,.3),0 0 8px -5px rgba(0,0,0,.3);border-radius:2px}.elementor-lightbox .elementor-video-container{width:100%;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.elementor-lightbox .elementor-video-container .elementor-video-landscape,.elementor-lightbox .elementor-video-container .elementor-video-portrait,.elementor-lightbox .elementor-video-container .elementor-video-square{width:100%;height:100%;margin:auto}.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe,.elementor-lightbox .elementor-video-container .elementor-video-portrait iframe,.elementor-lightbox .elementor-video-container .elementor-video-square iframe{border:0;background-color:#000}.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe,.elementor-lightbox .elementor-video-container .elementor-video-landscape video,.elementor-lightbox .elementor-video-container .elementor-video-portrait iframe,.elementor-lightbox .elementor-video-container .elementor-video-portrait video,.elementor-lightbox .elementor-video-container .elementor-video-square iframe,.elementor-lightbox .elementor-video-container .elementor-video-square video{aspect-ratio:var(--video-aspect-ratio,1.77777)}@supports not (aspect-ratio:1/1){.elementor-lightbox .elementor-video-container .elementor-video-landscape,.elementor-lightbox .elementor-video-container .elementor-video-portrait,.elementor-lightbox .elementor-video-container .elementor-video-square{position:relative;overflow:hidden;height:0;padding-bottom:calc(100% / var(--video-aspect-ratio, 1.77777))}.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe,.elementor-lightbox .elementor-video-container .elementor-video-landscape video,.elementor-lightbox .elementor-video-container .elementor-video-portrait iframe,.elementor-lightbox .elementor-video-container .elementor-video-portrait video,.elementor-lightbox .elementor-video-container .elementor-video-square iframe,.elementor-lightbox .elementor-video-container .elementor-video-square video{position:absolute;top:0;right:0;bottom:0;left:0}}.elementor-lightbox .elementor-video-container .elementor-video-square iframe,.elementor-lightbox .elementor-video-container .elementor-video-square video{width:min(90vh,90vw);height:min(90vh,90vw)}.elementor-lightbox .elementor-video-container .elementor-video-landscape iframe,.elementor-lightbox .elementor-video-container .elementor-video-landscape video{width:100%;max-height:90vh}.elementor-lightbox .elementor-video-container .elementor-video-portrait iframe,.elementor-lightbox .elementor-video-container .elementor-video-portrait video{height:100%;max-width:90vw}@media (min-width:1025px){.elementor-lightbox .elementor-video-container .elementor-video-landscape{width:85vw;max-height:85vh}.elementor-lightbox .elementor-video-container .elementor-video-portrait{height:85vh;max-width:85vw}}@media (max-width:1024px){.elementor-lightbox .elementor-video-container .elementor-video-landscape{width:95vw;max-height:95vh}.elementor-lightbox .elementor-video-container .elementor-video-portrait{height:95vh;max-width:95vw}}.elementor-lightbox .swiper-container .elementor-swiper-button-prev,.elementor-lightbox .swiper .elementor-swiper-button-prev{left:0}.elementor-lightbox .swiper-container .elementor-swiper-button-next,.elementor-lightbox .swiper .elementor-swiper-button-next{right:0}.elementor-lightbox .swiper-container .swiper-pagination-fraction,.elementor-lightbox .swiper .swiper-pagination-fraction{width:-moz-max-content;width:max-content;color:#fff}.elementor-lightbox .elementor-swiper-button:focus{outline-width:1px}.elementor-lightbox .elementor-swiper-button-next,.elementor-lightbox .elementor-swiper-button-prev{height:100%;display:flex;align-items:center;width:15%;justify-content:center;font-size:var(--lightbox-navigation-icons-size)}@media (max-width:767px){.elementor-lightbox .elementor-swiper-button:focus{outline:none}.elementor-lightbox .elementor-swiper-button-next,.elementor-lightbox .elementor-swiper-button-prev{width:20%}.elementor-lightbox .elementor-swiper-button-next i,.elementor-lightbox .elementor-swiper-button-prev i{padding:10px;background-color:rgba(0,0,0,.5)}.elementor-lightbox .elementor-swiper-button-prev{left:0;justify-content:flex-start}.elementor-lightbox .elementor-swiper-button-next{right:0;justify-content:flex-end}}.elementor-slideshow__counter{color:currentColor;font-size:.75em;width:-moz-max-content;width:max-content}.elementor-slideshow__footer,.elementor-slideshow__header{position:absolute;left:0;width:100%;padding:15px 20px;transition:.3s}.elementor-slideshow__footer{color:var(--lightbox-text-color)}.elementor-slideshow__header{color:var(--lightbox-ui-color);display:flex;flex-direction:row-reverse;font-size:var(--lightbox-header-icons-size);padding-left:1em;padding-right:2.6em;top:0;align-items:center;z-index:10}.elementor-slideshow__header>i,.elementor-slideshow__header>svg{cursor:pointer;padding:.25em;margin:0 .35em}.elementor-slideshow__header>i{font-size:inherit}.elementor-slideshow__header>i:hover{color:var(--lightbox-ui-color-hover)}.elementor-slideshow__header>svg{box-sizing:content-box;fill:var(--lightbox-ui-color);height:1em;width:1em}.elementor-slideshow__header>svg:hover{fill:var(--lightbox-ui-color-hover)}.elementor-slideshow__header .elementor-slideshow__counter{margin-right:auto}.elementor-slideshow__header .elementor-icon-share{z-index:5}.elementor-slideshow__share-menu{background-color:transparent;width:0;height:0;position:absolute;overflow:hidden;transition:background-color .4s}.elementor-slideshow__share-menu .elementor-slideshow__share-links a{color:#0c0d0e}.elementor-slideshow__share-links{display:block;position:absolute;min-width:200px;right:2.8em;top:3em;background-color:#fff;border-radius:3px;padding:14px 20px;transform:scale(0);opacity:0;transform-origin:90% 10%;transition:all .25s .1s;box-shadow:0 4px 15px rgba(0,0,0,.3)}.elementor-slideshow__share-links a{text-align:left;color:#3f444b;font-size:12px;line-height:2.5;display:block;opacity:0;transition:opacity .5s .1s}.elementor-slideshow__share-links a:hover{color:#000}.elementor-slideshow__share-links a i,.elementor-slideshow__share-links a svg{margin-right:.75em}.elementor-slideshow__share-links a i{font-size:1.25em}.elementor-slideshow__share-links a svg{height:1.25em;width:1.25em}.elementor-slideshow__share-links:before{content:"";display:block;position:absolute;top:1px;right:.5em;border:.45em solid transparent;border-bottom-color:#fff;transform:translateY(-100%) scaleX(.7)}.elementor-slideshow__footer{bottom:0;z-index:5;position:fixed}.elementor-slideshow__description,.elementor-slideshow__title{margin:0}.elementor-slideshow__title{font-size:16px;font-weight:700}.elementor-slideshow__description{font-size:14px}.elementor-slideshow--ui-hidden .elementor-slideshow__footer,.elementor-slideshow--ui-hidden .elementor-slideshow__header{opacity:0;pointer-events:none}.elementor-slideshow--ui-hidden .elementor-swiper-button-next,.elementor-slideshow--ui-hidden .elementor-swiper-button-prev{opacity:0}.elementor-slideshow--fullscreen-mode .elementor-video-container{width:100%}.elementor-slideshow--zoom-mode .elementor-slideshow__footer,.elementor-slideshow--zoom-mode .elementor-slideshow__header{background-color:rgba(0,0,0,.5)}.elementor-slideshow--zoom-mode .elementor-swiper-button-next,.elementor-slideshow--zoom-mode .elementor-swiper-button-prev{opacity:0;pointer-events:none}.elementor-slideshow--share-mode .elementor-slideshow__share-menu{top:0;left:0;width:100vw;height:100vh;opacity:1;cursor:default;background-color:rgba(0,0,0,.5)}.elementor-slideshow--share-mode .elementor-slideshow__share-links{transform:scale(1)}.elementor-slideshow--share-mode .elementor-slideshow__share-links,.elementor-slideshow--share-mode .elementor-slideshow__share-links a{opacity:1}.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-twitter{color:#1da1f2}.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-facebook{color:#3b5998}.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-pinterest{color:#bd081c}.elementor-slideshow--share-mode .elementor-slideshow__share-links .eicon-download-bold{color:#9da5ae}.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-twitter{fill:#1da1f2}.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-facebook{fill:#3b5998}.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-pinterest{fill:#bd081c}.elementor-slideshow--share-mode .elementor-slideshow__share-links .e-eicon-download-bold{fill:#9da5ae}.elementor-slideshow--share-mode .eicon-share-arrow{z-index:2}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none}}.elementor-shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.elementor-shape-top{top:-1px}.elementor-shape-top:not([data-negative=false]) svg{z-index:-1}.elementor-shape-bottom{bottom:-1px}.elementor-shape-bottom:not([data-negative=true]) svg{z-index:-1}.elementor-shape[data-negative=false].elementor-shape-bottom,.elementor-shape[data-negative=true].elementor-shape-top{transform:rotate(180deg)}.elementor-shape svg{display:block;width:calc(100% + 1.3px);position:relative;left:50%;transform:translateX(-50%)}.elementor-shape .elementor-shape-fill{fill:#fff;transform-origin:center;transform:rotateY(0deg)}#wp-admin-bar-elementor_edit_page>.ab-item:before{content:"\e813";font-family:eicons;top:3px;font-size:18px}#wp-admin-bar-elementor_edit_page .ab-submenu .ab-item{display:flex;width:200px}#wp-admin-bar-elementor_edit_page .elementor-edit-link-title{white-space:nowrap;text-overflow:ellipsis;overflow:hidden;width:100%}#wp-admin-bar-elementor_edit_page .elementor-edit-link-type{background:#3f444b;font-size:11px;line-height:9px;margin-top:6px;padding:4px 8px;border-radius:3px}#wp-admin-bar-elementor_inspector>.ab-item:before{content:"\f348";top:2px}#wpadminbar *{font-style:normal}.page-template-elementor_canvas.elementor-page:before{display:none}.elementor-post__thumbnail__link{transition:none}#left-area ul.elementor-icon-list-items,.elementor-edit-area .elementor-element ul.elementor-icon-list-items,.elementor .elementor-element ul.elementor-icon-list-items{padding:0}.e--ua-appleWebkit.rtl{--flex-right:flex-start}.e--ua-appleWebkit .elementor-share-buttons--align-right,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-right{--justify-content:var(--flex-right,flex-end)}.e--ua-appleWebkit .elementor-share-buttons--align-center,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-center{--justify-content:center}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid{width:auto;display:flex;flex-wrap:wrap;justify-content:var(--justify-content,space-between);margin-left:calc(-.5 * var(--grid-column-gap));margin-right:calc(-.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-justify .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-right .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-right .elementor-grid-item{margin-left:calc(.5 * var(--grid-column-gap));margin-right:calc(.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid{display:inline-block}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-left .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-left .elementor-grid-item{margin-left:0;margin-right:0}@media (max-width:1024px){.e--ua-appleWebkit .elementor-share-buttons-tablet--align-right,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-right{--justify-content:var(--flex-right,flex-end)}.e--ua-appleWebkit .elementor-share-buttons-tablet--align-center,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-tablet-center{--justify-content:center}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid{width:auto;display:flex;flex-wrap:wrap;justify-content:var(--justify-content,space-between);margin-left:calc(-.5 * var(--grid-column-gap));margin-right:calc(-.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-justify .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-tablet-right .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-right .elementor-grid-item{margin-left:calc(.5 * var(--grid-column-gap));margin-right:calc(.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid{display:inline-block}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-tablet--align-left .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-tablet-left .elementor-grid-item{margin-left:0;margin-right:0}}@media (max-width:767px){.e--ua-appleWebkit .elementor-share-buttons-mobile--align-right,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-right{--justify-content:var(--flex-right,flex-end)}.e--ua-appleWebkit .elementor-share-buttons-mobile--align-center,.e--ua-appleWebkit .elementor-widget-social-icons.e-grid-align-mobile-center{--justify-content:center}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid{width:auto;display:flex;flex-wrap:wrap;justify-content:var(--justify-content,space-between);margin-left:calc(-.5 * var(--grid-column-gap));margin-right:calc(-.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-justify .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons--align-mobile-right .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-center .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-right .elementor-grid-item{margin-left:calc(.5 * var(--grid-column-gap));margin-right:calc(.5 * var(--grid-column-gap))}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid{display:inline-block}.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-share-buttons-mobile--align-left .elementor-grid-item,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid,.e--ua-appleWebkit .elementor-grid-0.elementor-widget-social-icons.e-grid-align-mobile-left .elementor-grid-item{margin-left:0;margin-right:0}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:1366px){.elementor .elementor-hidden-laptop{display:none}}@media (min-width:1367px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}.elementor-widget-text-path{font-size:20px;text-align:var(--alignment,left)}.elementor-widget-text-path svg{width:var(--width);max-width:100%;height:auto;overflow:visible;word-spacing:var(--word-spacing);transform:rotate(var(--rotate,0)) scaleX(var(--scale-x,1)) scaleY(var(--scale-y,1))}.elementor-widget-text-path svg path{vector-effect:non-scaling-stroke;fill:var(--path-fill,transparent);stroke:var(--stroke-color,transparent);stroke-width:var(--stroke-width,1px);transition:var(--stroke-transition) stroke,var(--stroke-transition) fill}.elementor-widget-text-path svg:hover path{--path-fill:var(--path-fill-hover);--stroke-color:var(--stroke-color-hover);--stroke-width:var(--stroke-width-hover)}.elementor-widget-text-path svg text{--fill:var(--text-color);fill:var(--fill);direction:var(--direction,ltr);transition:var(--transition) stroke,var(--transition) stroke-width,var(--transition) fill}.elementor-widget-text-path svg text:hover{--color:var(--text-color-hover,var(--text-color));--fill:var(--color);color:var(--color)}.elementor-widget-n-tabs{--n-tabs-color-accent-fallback:#61ce70;--n-tabs-color-secondary-fallback:#54595f;--n-tabs-default-padding-block:15px;--n-tabs-default-padding-inline:35px;--n-tabs-background-color:transparent;--n-tabs-display:flex;--n-tabs-direction:column;--n-tabs-gap:10px;--n-tabs-heading-display:flex;--n-tabs-heading-direction:row;--n-tabs-heading-grow:initial;--n-tabs-heading-justify-content:center;--n-tabs-heading-width:initial;--n-tabs-heading-overflow-x:initial;--n-tabs-heading-wrap:nowrap;--n-tabs-border-width:1px;--n-tabs-border-color:#d5d8dc;--n-tabs-content-display:flex;--n-tabs-title-color:var(--e-global-color-secondary,var(--n-tabs-color-secondary-fallback));--n-tabs-title-color-hover:#fff;--n-tabs-title-color-active:#fff;--n-tabs-title-background-color:#f1f2f3;--n-tabs-title-background-color-hover:var(--e-global-color-accent,var(--n-tabs-color-accent-fallback));--n-tabs-title-background-color-active:var(--e-global-color-accent,var(--n-tabs-color-accent-fallback));--n-tabs-title-width:initial;--n-tabs-title-height:initial;--n-tabs-title-font-size:1rem;--n-tabs-title-white-space:initial;--n-tabs-title-justify-content-toggle:initial;--n-tabs-title-align-items-toggle:center;--n-tabs-title-justify-content:center;--n-tabs-title-align-items:center;--n-tabs-title-text-align:center;--n-tabs-title-direction:row;--n-tabs-title-gap:10px;--n-tabs-title-flex-grow:0;--n-tabs-title-flex-basis:content;--n-tabs-title-flex-shrink:initial;--n-tabs-title-order:initial;--n-tabs-title-padding-block-start:var(--n-tabs-default-padding-block);--n-tabs-title-padding-inline-end:var(--n-tabs-default-padding-inline);--n-tabs-title-padding-block-end:var(--n-tabs-default-padding-block);--n-tabs-title-padding-inline-start:var(--n-tabs-default-padding-inline);--n-tabs-title-border-radius:initial;--n-tabs-title-transition:0.3s;--n-tabs-icon-color:var(--e-global-color-secondary,var(--n-tabs-color-secondary-fallback));--n-tabs-icon-color-hover:var(--n-tabs-title-color-hover);--n-tabs-icon-color-active:#fff;--n-tabs-icon-gap:5px;width:100%;max-width:100%}.elementor-widget-n-tabs .e-n-tabs{display:var(--n-tabs-display);flex-direction:var(--n-tabs-direction);gap:var(--n-tabs-gap);text-align:start;min-width:0}.elementor-widget-n-tabs .e-n-tabs-heading{display:var(--n-tabs-heading-display);flex-basis:var(--n-tabs-heading-width);flex-direction:var(--n-tabs-heading-direction);flex-shrink:0;justify-content:var(--n-tabs-heading-justify-content);gap:var(--n-tabs-title-gap);overflow-x:var(--n-tabs-heading-overflow-x);flex-wrap:var(--n-tabs-heading-wrap);-ms-overflow-style:none;scrollbar-width:none}.elementor-widget-n-tabs .e-n-tabs-heading::-webkit-scrollbar{display:none}.elementor-widget-n-tabs .e-n-tabs-heading.e-scroll{cursor:grabbing;cursor:-webkit-grabbing}.elementor-widget-n-tabs .e-n-tabs-heading.e-scroll-active{position:relative}.elementor-widget-n-tabs .e-n-tabs-heading.e-scroll-active:before{content:"";position:absolute;inset-block:0;inset-inline:-1000vw;z-index:2}.elementor-widget-n-tabs .e-n-tabs-content{display:var(--n-tabs-content-display);flex-grow:1;min-width:0}.elementor-widget-n-tabs .e-n-tabs-content>.e-con:not(.e-active){display:none}.elementor-widget-n-tabs .e-n-tabs:not(.e-activated)>.e-n-tabs-content>.e-con:first-child{display:flex}.elementor-widget-n-tabs .e-n-tab-title{all:unset;-webkit-user-select:none;-moz-user-select:none;user-select:none;display:flex;align-items:var(--n-tabs-title-align-items-toggle,var(--n-tabs-title-align-items));flex-direction:var(--n-tabs-title-direction);justify-content:var(--n-tabs-title-justify-content-toggle,var(--n-tabs-title-justify-content));gap:var(--n-tabs-icon-gap);border-width:var(--n-tabs-border-width);position:relative;cursor:pointer;outline:none;flex-grow:var(--n-tabs-title-flex-grow);flex-basis:var(--n-tabs-title-flex-basis);flex-shrink:var(--n-tabs-title-flex-shrink);padding-block-start:var(--n-tabs-title-padding-block-start);padding-inline-end:var(--n-tabs-title-padding-inline-end);padding-block-end:var(--n-tabs-title-padding-block-end);padding-inline-start:var(--n-tabs-title-padding-inline-start);border-radius:var(--n-tabs-title-border-radius);height:var(--n-tabs-title-height);width:var(--n-tabs-title-width);white-space:var(--n-tabs-title-white-space);transition:background var(--n-tabs-title-transition),color var(--n-tabs-title-transition),border var(--n-tabs-title-transition),box-shadow var(--n-tabs-title-transition),text-shadow var(--n-tabs-title-transition),stroke var(--n-tabs-title-transition),stroke-width var(--n-tabs-title-transition),-webkit-text-stroke-width var(--n-tabs-title-transition),-webkit-text-stroke-color var(--n-tabs-title-transition),transform var(--n-tabs-title-transition)}.elementor-widget-n-tabs .e-n-tab-title:focus-visible{outline:5px auto -webkit-focus-ring-color}.elementor-widget-n-tabs .e-n-tab-title span i,.elementor-widget-n-tabs .e-n-tab-title span svg{transition:color var(--n-tabs-title-transition),fill var(--n-tabs-title-transition)}.elementor-widget-n-tabs .e-n-tab-title-text{display:flex;align-items:center;font-size:var(--n-tabs-title-font-size);text-align:var(--n-tabs-title-text-align)}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon{display:flex;align-items:center;flex-direction:column;flex-shrink:0;order:var(--n-tabs-icon-order);overflow:hidden}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon i{font-size:var(--n-tabs-icon-size,var(--n-tabs-title-font-size))}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon svg{width:var(--n-tabs-icon-size,var(--n-tabs-title-font-size));height:var(--n-tabs-icon-size,var(--n-tabs-title-font-size))}.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon:empty{display:none}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false]{background-color:var(--n-tabs-title-background-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false],.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] a{color:var(--n-tabs-title-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon i{color:var(--n-tabs-icon-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon svg{fill:var(--n-tabs-icon-color)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon i:last-child,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=false] .e-n-tab-icon svg:last-child{transform:translateY(-100vh);height:0;opacity:0}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true],.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] a{color:var(--n-tabs-title-color-active)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon i{color:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon svg{fill:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon i:first-child,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true] .e-n-tab-icon svg:first-child{transform:translateY(-100vh);height:0;opacity:0}.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:active,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:focus,.elementor-widget-n-tabs .e-n-tab-title[aria-selected=true][class*=elementor-animation-]:hover{transform:none;animation:initial}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover,.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover a{color:var(--n-tabs-title-color-hover)}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i{color:var(--n-tabs-icon-color-hover)}.elementor-widget-n-tabs [data-touch-mode=false] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg{fill:var(--n-tabs-icon-color-hover)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover a{color:var(--n-tabs-title-color-active)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i{color:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg{fill:var(--n-tabs-icon-color-active)}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i:first-child,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg:first-child{transform:translateY(-100vh);height:0;opacity:0}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:active,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:focus,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover[class*=elementor-animation-]:hover{transform:none;animation:initial}.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon i:last-child,.elementor-widget-n-tabs [data-touch-mode=true] .e-n-tab-title[aria-selected=false]:hover .e-n-tab-icon svg:last-child{transform:none;height:auto;opacity:1}.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs[data-touch-mode=false]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{background-color:var(--n-tabs-title-background-color-hover);background-image:none}.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs>.e-n-tabs-heading .e-n-tab-title[aria-selected=true],.elementor .elementor-element.elementor-widget-n-tabs>.elementor-widget-container>.e-n-tabs[data-touch-mode=true]>.e-n-tabs-heading .e-n-tab-title[aria-selected=false]:hover{background-color:var(--n-tabs-title-background-color-active);background-image:none}@media (max-width:767px){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:-1){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-mobile_extra .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:1024px){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:-1){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-tablet_extra .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}@media (max-width:1366px){.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop{--n-tabs-direction:column;--n-tabs-heading-display:contents;--n-tabs-content-display:contents}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tabs{gap:0}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tabs-content>.e-con{order:var(--n-tabs-title-order)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tab-title{order:var(--n-tabs-title-order);width:auto}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tab-title:not(:first-child){margin-block-start:var(--n-tabs-title-gap)}.elementor.elementor .elementor-widget-n-tabs.e-n-tabs-laptop .e-n-tab-title[aria-selected=true]{margin-block-end:var(--n-tabs-gap)}}.elementor-widget-n-accordion{--n-accordion-title-font-size:20px;--n-accordion-title-flex-grow:initial;--n-accordion-title-justify-content:initial;--n-accordion-title-icon-order:-1;--n-accordion-border-width:1px;--n-accordion-border-color:#d5d8dc;--n-accordion-border-style:solid;--n-accordion-item-title-flex-grow:initial;--n-accordion-item-title-space-between:0px;--n-accordion-item-title-distance-from-content:0px;--n-accordion-padding:10px;--n-accordion-border-radius:0px;--n-accordion-icon-size:15px;--n-accordion-title-normal-color:#1f2124;--n-accordion-title-hover-color:#1f2124;--n-accordion-title-active-color:#1f2124;--n-accordion-icon-normal-color:var(--n-accordion-title-normal-color);--n-accordion-icon-hover-color:var(--n-accordion-title-hover-color);--n-accordion-icon-active-color:var(--n-accordion-title-active-color);--n-accordion-icon-gap:0 10px;width:100%}.elementor-widget-n-accordion .e-n-accordion details>summary::-webkit-details-marker{display:none}.elementor-widget-n-accordion .e-n-accordion-item{display:flex;flex-direction:column;position:relative}.elementor-widget-n-accordion .e-n-accordion-item:not(:last-child){margin-block-end:var(--n-accordion-item-title-space-between)}.elementor-widget-n-accordion .e-n-accordion-item-title,:where(.elementor-widget-n-accordion .e-n-accordion-item>.e-con){border:var(--n-accordion-border-width) var(--n-accordion-border-style) var(--n-accordion-border-color)}.elementor-widget-n-accordion .e-n-accordion-item-title{display:flex;flex-direction:row;list-style:none;padding:var(--n-accordion-padding);justify-content:var(--n-accordion-title-justify-content);border-radius:var(--n-accordion-border-radius);flex-grow:var(--n-menu-title-flex-grow);gap:var(--n-accordion-icon-gap);color:var(--n-accordion-title-normal-color);align-items:center;cursor:pointer}.elementor-widget-n-accordion .e-n-accordion-item-title-header{display:flex}.elementor-widget-n-accordion .e-n-accordion-item-title-header h1,.elementor-widget-n-accordion .e-n-accordion-item-title-header h2,.elementor-widget-n-accordion .e-n-accordion-item-title-header h3,.elementor-widget-n-accordion .e-n-accordion-item-title-header h4,.elementor-widget-n-accordion .e-n-accordion-item-title-header h5,.elementor-widget-n-accordion .e-n-accordion-item-title-header h6,.elementor-widget-n-accordion .e-n-accordion-item-title-header p{margin-block-start:0;margin-block-end:0}.elementor-widget-n-accordion .e-n-accordion-item-title-text{font-size:var(--n-accordion-title-font-size);align-items:center}.elementor-widget-n-accordion .e-n-accordion-item-title-icon{display:flex;flex-direction:row;align-items:center;order:var(--n-accordion-title-icon-order);position:relative;width:-moz-fit-content;width:fit-content}.elementor-widget-n-accordion .e-n-accordion-item-title-icon span{height:var(--n-accordion-icon-size);width:auto}.elementor-widget-n-accordion .e-n-accordion-item-title-icon span>i{color:var(--n-accordion-icon-normal-color);font-size:var(--n-accordion-icon-size)}.elementor-widget-n-accordion .e-n-accordion-item-title-icon span>svg{fill:var(--n-accordion-icon-normal-color);height:var(--n-accordion-icon-size)}.elementor-widget-n-accordion .e-n-accordion-item-title>span{cursor:pointer}.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title{margin-block-end:var(--n-accordion-item-title-distance-from-content);color:var(--n-accordion-title-active-color)}.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title-icon .e-opened{display:flex}.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title-icon .e-closed{display:none}.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title-icon span>i{color:var(--n-accordion-icon-active-color)}.elementor-widget-n-accordion .e-n-accordion-item[open] .e-n-accordion-item-title-icon span>svg{fill:var(--n-accordion-icon-active-color)}.elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover .e-n-accordion-item-title{color:var(--n-accordion-title-hover-color)}.elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover .e-n-accordion-item-title-icon span>i{color:var(--n-accordion-icon-hover-color)}.elementor-widget-n-accordion .e-n-accordion-item:not([open]):hover .e-n-accordion-item-title-icon span>svg{fill:var(--n-accordion-icon-hover-color)}.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon .e-opened{display:none}.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon .e-closed{display:flex}.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span>svg{fill:var(--n-accordion-icon-normal-color)}.elementor-widget-n-accordion .e-n-accordion-item .e-n-accordion-item-title-icon span>i{color:var(--n-accordion-icon-normal-color)}.elementor-widget-n-accordion .e-n-accordion-item>span{cursor:pointer}.clearfix::before,.clearfix::after{content:" ";display:table;clear:both}.eael-testimonial-slider.nav-top-left,.eael-testimonial-slider.nav-top-right,.eael-team-slider.nav-top-left,.eael-team-slider.nav-top-right,.eael-logo-carousel.nav-top-left,.eael-logo-carousel.nav-top-right,.eael-post-carousel.nav-top-left,.eael-post-carousel.nav-top-right,.eael-product-carousel.nav-top-left,.eael-product-carousel.nav-top-right{padding-top:40px}.eael-contact-form input[type=text],.eael-contact-form input[type=email],.eael-contact-form input[type=url],.eael-contact-form input[type=tel],.eael-contact-form input[type=date],.eael-contact-form input[type=number],.eael-contact-form textarea{background:#fff;box-shadow:none;-webkit-box-shadow:none;float:none;height:auto;margin:0;outline:0;width:100%}.eael-contact-form input[type=submit]{border:0;float:none;height:auto;margin:0;padding:10px 20px;width:auto;-webkit-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-contact-form.placeholder-hide input::-webkit-input-placeholder,.eael-contact-form.placeholder-hide textarea::-webkit-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input::-moz-placeholder,.eael-contact-form.placeholder-hide textarea::-moz-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-ms-input-placeholder,.eael-contact-form.placeholder-hide textarea:-ms-input-placeholder{opacity:0;visibility:hidden}.eael-contact-form.placeholder-hide input:-moz-placeholder,.eael-contact-form.placeholder-hide textarea:-moz-placeholder{opacity:0;visibility:hidden}.eael-custom-radio-checkbox input[type=checkbox],.eael-custom-radio-checkbox input[type=radio]{-webkit-appearance:none;-moz-appearance:none;border-style:solid;border-width:0;outline:none;min-width:1px;width:15px;height:15px;background:#ddd;padding:3px}.eael-custom-radio-checkbox input[type=checkbox]:before,.eael-custom-radio-checkbox input[type=radio]:before{content:"";width:100%;height:100%;padding:0;margin:0;display:block}.eael-custom-radio-checkbox input[type=checkbox]:checked:before,.eael-custom-radio-checkbox input[type=radio]:checked:before{background:#999;-webkit-transition:all .25s linear 0s;transition:all .25s linear 0s}.eael-custom-radio-checkbox input[type=radio]{border-radius:50%}.eael-custom-radio-checkbox input[type=radio]:before{border-radius:50%}.eael-post-elements-readmore-btn{font-size:12px;font-weight:500;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out;display:inline-block}.elementor-lightbox .dialog-widget-content{width:100%;height:100%}.eael-contact-form-align-left,.elementor-widget-eael-weform.eael-contact-form-align-left .eael-weform-container{margin:0 auto 0 0}.eael-contact-form-align-center,.elementor-widget-eael-weform.eael-contact-form-align-center .eael-weform-container{float:none;margin:0 auto}.eael-contact-form-align-right,.elementor-widget-eael-weform.eael-contact-form-align-right .eael-weform-container{margin:0 0 0 auto}.eael-force-hide{display:none !important}.eael-d-none{display:none !important}.eael-d-block{display:block !important}.eael-h-auto{height:auto !important}.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating{display:none}.theme-martfury .elementor-wc-products .woocommerce ul.products li.product .product-inner .mf-rating .eael-star-rating.star-rating~.count{display:none}