@charset "UTF-8";
/*
Button
*/
.tf-admin-btn {
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  padding: 7px 22px;
  border: 1px solid #003c79;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer; }
  .tf-admin-btn i {
    margin-right: 8px;
    font-size: 18px; }
  .tf-admin-btn.tf-btn-secondary {
    background-color: #003c79;
    border-color: #003c79;
    color: #fff;
    font-weight: 600; }
  .tf-admin-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none; }

/*
Custom Modal
*/
.tf-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }
  .tf-modal.tf-modal-show {
    opacity: 1;
    visibility: visible;
    transform: scale(1); }
  .tf-modal .tf-modal-dialog {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 40px);
    max-width: 100%;
    position: relative;
    pointer-events: none; }
    @media only screen and (min-width: 576px) {
      .tf-modal .tf-modal-dialog {
        min-height: calc(100% - 40px); } }
  .tf-modal .tf-modal-content {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 80%;
    max-width: 1080px;
    pointer-events: auto;
    background-color: #f5f8ff;
    outline: 0;
    margin: 0 auto;
    border-radius: 10px;
    padding: 30px;
    overflow: hidden; }
  .tf-modal .tf-modal-close {
    color: #003162;
    cursor: pointer;
    font-size: 22px;
    position: absolute;
    top: 10px;
    right: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .tf-modal .tf-modal-close:hover {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
  .tf-modal.tf-modal-fullscreen .tf-modal-dialog {
    min-height: 100%; }
  .tf-modal.tf-modal-fullscreen .tf-modal-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    border-radius: 0;
    padding: 0; }
  .tf-modal.tf-modal-fullscreen .tf-modal-header {
    min-height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /*&:hover{
                .tf-modal-close {
                    top: 10px;
                }
            }*/ }
    .tf-modal.tf-modal-fullscreen .tf-modal-header .tf-modal-close {
      right: 30px;
      top: 20px;
      height: 50px;
      width: 50px;
      margin-left: -25px;
      line-height: 52px;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.6);
      border-radius: 50%;
      color: #fff; }

body.tf-modal-open {
  overflow: hidden; }
  body.tf-modal-open .tf-modal {
    overflow-x: hidden;
    overflow-y: auto; }
    body.tf-modal-open .tf-modal.tf-modal-fullscreen {
      overflow: hidden; }
  body.tf-modal-open:after {
    content: "";
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.4); }

/*
Ajax Loader
*/
.tf-btn-loading {
  padding-right: 40px;
  position: relative; }

.tf-btn-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -7px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  visibility: visible;
  opacity: 1;
  transition: opacity .2s ease, visibility .2s ease;
  -webkit-animation: wd-rotate 450ms infinite linear;
  animation: wd-rotate 450ms infinite linear; }

@-webkit-keyframes wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/*
Notice
*/
.tf-notice {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 24px;
  border: 1px solid #d1ebec;
  border-radius: 8px;
  background-color: #f0fafa; }
  .tf-notice .tf-notice-icon {
    margin-right: 10px;
    font-size: 20px;
    color: #069697; }
  .tf-notice .tf-notice-content {
    color: #8997a9; }
    .tf-notice .tf-notice-content h6 {
      margin: 0;
      font-weight: 500;
      color: #363e4a;
      font-size: 16px; }
    .tf-notice .tf-notice-content.has-content h6 {
      margin-bottom: 5px; }
  .tf-notice.tf-notice-success {
    border-color: #dceddd;
    background-color: #f5faf5; }
    .tf-notice.tf-notice-success .tf-notice-icon {
      color: #43a047; }
  .tf-notice.tf-notice-warning {
    border-color: #ffecb3;
    background-color: #fffdf6; }
    .tf-notice.tf-notice-warning .tf-notice-icon {
      color: #ffbf00; }
  .tf-notice.tf-notice-danger {
    border-color: #fddcda;
    background-color: #fef2f1; }
    .tf-notice.tf-notice-danger .tf-notice-icon {
      color: #f44336; }

.tf-main-wrapper {
  width: 100%;
  padding: 30px 0; }

.tf-container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1200px; }

.tf-divider {
  background: #e5e5e5;
  height: 1px; }

.gray-wrap {
  background-color: #f5f8ff; }

.section-heading {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600; }

h3.section-heading {
  font-size: 24px; }

.sp-20 {
  padding: 20px 0; }

.sp-30 {
  padding: 30px 0; }

.sp-t-30 {
  padding-top: 30px; }

.sp-40 {
  padding: 40px 0; }

.sp-t-40 {
  padding-top: 40px; }

.sp-50 {
  padding: 50px 0; }

.sp-t-50 {
  padding-top: 50px; }

.sp-70 {
  padding: 70px 0; }

.sp-t-70 {
  padding-top: 70px; }

.tf-d-b {
  display: block; }

.tf-d-ib {
  display: inline-block; }

.tf-t-c {
  text-align: center; }

.tf-d-n {
  display: none !important; }

.tf-d-g {
  display: grid !important; }

.tf-toc-wrap td {
  white-space: break-spaces; }

.fancybox-navigation .fancybox-button--arrow_left > div,
.fancybox-navigation .fancybox-button--arrow_right > div {
  background-color: #000; }

.tf-tooltip {
  position: relative; }
  .tf-tooltip .tf-top {
    top: -20px;
    left: 50%;
    transform: translate(-50%, -74%);
    padding: 10px 10px;
    color: #FFFFFF;
    background-color: #333333;
    font-weight: normal;
    font-size: 12px;
    border-radius: 4px;
    position: absolute;
    z-index: 99999999;
    box-sizing: border-box;
    border: 1px solid #333333;
    box-shadow: 0 1px 8px transparent;
    visibility: hidden;
    opacity: 0;
    text-align: center;
    line-height: 1;
    white-space: nowrap; }
    .tf-tooltip .tf-top i.tool-i {
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -12px;
      width: 24px;
      height: 12px;
      overflow: hidden; }
      .tf-tooltip .tf-top i.tool-i::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 12px;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        background-color: #333333;
        border: 1px solid #333333;
        box-shadow: 0 1px 8px transparent; }
  .tf-tooltip:hover .tf-top {
    visibility: visible;
    opacity: 1; }

.tf_button {
  background: #003162;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  border: 1px solid #003162;
  border-radius: 4px;
  padding: 10px 20px; }
  .tf_button:hover {
    background: #0054a8;
    color: #fff;
    text-decoration: none;
    border: 1px solid #006dda; }

.tf_button.btn-outline {
  background: #fff;
  border-color: #333;
  color: #333; }

.tf-btn-flip {
  opacity: 1;
  outline: 0;
  color: #fff;
  position: relative;
  text-align: center;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none; }
  .tf-btn-flip:hover:after {
    opacity: 1;
    transform: translateY(0) rotateX(0); }
  .tf-btn-flip:hover:before {
    opacity: 0;
    transform: translateY(50%) rotateX(90deg); }
  .tf-btn-flip:after {
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    color: #fff;
    display: block;
    transition: 0.5s;
    position: absolute;
    background: #003162;
    content: attr(data-back);
    transform: translateY(-50%) rotateX(90deg);
    border-radius: 4px;
    padding: 6px 20px; }
  .tf-btn-flip:before {
    top: 0;
    left: 0;
    opacity: 1;
    color: #fff;
    display: block;
    transition: 0.5s;
    position: relative;
    background: #003162;
    content: attr(data-front);
    transform: translateY(0) rotateX(0);
    border-radius: 4px;
    padding: 6px 20px; }

.tf-btn {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  width: 100%; }

.btn-styled {
  border: 1px solid #003162 !important;
  border-radius: 4px !important;
  overflow: hidden;
  position: relative;
  color: #fff !important;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  background: #003162 !important;
  padding: 10px 18px !important; }
  .btn-styled span {
    z-index: 20; }
  .btn-styled:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .25;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px; }
  .btn-styled:hover {
    color: #fff;
    background: #838383; }
    .btn-styled:hover:after {
      left: 120%;
      transition: all 1500ms cubic-bezier(0.19, 1, 0.22, 1); }

a.tf_button.btn-styled:focus {
  color: #fff; }

.tf-sml-btn {
  font-size: 13px;
  padding: 6px 12px;
  white-space: nowrap; }
  .tf-sml-btn:hover {
    background: #0054a8;
    color: #fff;
    text-decoration: none;
    border: 1px solid #006dda; }

.tf-title-wrap {
  display: flex;
  justify-content: space-between; }

.tf-title-left span.post-type {
  background: #FA5535;
  color: #fff;
  padding: 0 10px;
  font-size: 13px;
  border-radius: 25px;
  margin-bottom: 5px;
  display: inline-block; }

.tf-title-area h1 {
  font-size: 35px;
  margin-top: 0;
  margin-bottom: 6px; }

.tf-title-right {
  display: flex;
  align-items: center;
  column-gap: 5px; }

.tf-map-link a {
  font-size: 14px;
  color: #393939; }

.tf-single-rating {
  line-height: 1;
  font-size: 16px;
  cursor: pointer;
  z-index: 999;
  display: inline-block;
  background: rgba(19, 55, 116, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-sizing: border-box;
  padding: 8px;
  color: #fff;
  border-radius: 4px;
  position: relative; }
  .tf-single-rating i {
    font-size: 14px;
    color: #FFBF00; }
  .tf-single-rating span {
    margin: 0 3px 0 5px;
    font-weight: 700;
    font-size: 18px; }

.roomNameInner {
  padding-top: 20px; }

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }
  .slick-slider .slick-track {
    transform: translate3d(0, 0, 0); }
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0); }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  margin-left: -5px !important;
  margin-right: -5px !important; }
  .slick-list:focus {
    outline: none; }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before {
    display: table;
    content: ""; }
  .slick-track:after {
    display: table;
    content: "";
    clear: both; }

.slick-slide {
  margin-left: 5px !important;
  margin-right: 5px !important; }
  .slick-slide img {
    display: block; }

.slick-initialized .slick-slide {
  display: block; }
  @media only screen and (max-width: 767.98px) {
    .slick-initialized .slick-slide {
      margin: 0px !important; } }

.tf_form-row .tf_label-row {
  margin-bottom: 15px;
  display: block;
  font-size: inherit; }

.tf_form-inner input[type=text] {
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none;
  height: 45px;
  font-size: inherit !important;
  margin: 0px !important; }
  .tf_form-inner input[type=text]:focus {
    background: transparent;
    border: 0;
    outline: 0; }

.tf_form-inner select {
  width: 100% !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none;
  height: 45px;
  font-size: inherit !important;
  margin: 0px !important; }
  .tf_form-inner select:focus {
    background: transparent;
    border: 0;
    outline: 0; }

ul.tf-sidebar-checkbox {
  display: block;
  color: #000; }
  ul.tf-sidebar-checkbox label {
    margin-left: 10px; }

.tf-sidebar-filter .tf-sidebar-checkbox {
  color: #fff; }

.tf-sidebar-filter h3 {
  color: #fff; }

.tf_booking-widget {
  background: #FA5535;
  background: linear-gradient(to bottom, #FD6143 0, #FA5535 100%);
  border-color: #FA5535;
  padding: 20px !important;
  border-radius: 4px;
  font-size: 14px; }
  .tf_booking-widget #check-in-out-date {
    min-width: 150px; }
  .tf_booking-widget .tf_form-row .tf_button {
    padding: 15px 20px;
    width: 100%; }

.hero-booking .tf_booking-widget {
  color: #fff; }

.tf-hotel-side-booking .tf_form-inner {
  position: relative;
  display: grid;
  padding: 0 0 0 0;
  background: #fff;
  grid-template-columns: 38px auto;
  align-items: center;
  justify-items: center; }
  .tf-hotel-side-booking .tf_form-inner i {
    color: #bfbfbf;
    font-size: 16px; }

.tf-hotel-side-booking #check-in-out-date {
  min-width: 150px;
  padding: 0; }

h3.tf-sidebar-widget_title {
  font-size: 16px;
  margin-bottom: 10px; }

.tf_acrselection-wrap {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 12px;
  background: #fff;
  padding: 24px 24px 8px;
  min-width: 250px;
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  width: 100%;
  display: none; }

.tf_acrselection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px; }

.acr-dec {
  width: 30px;
  height: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  color: #003162;
  border-color: #003162;
  border: 1px solid #003162;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 7px 15px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
  min-height: 36px;
  min-width: 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; }
  .acr-dec:hover {
    color: #333;
    border-color: #333; }

.acr-inc {
  width: 30px;
  height: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  color: #003162;
  border-color: #003162;
  border: 1px solid #003162;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 7px 15px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
  min-height: 36px;
  min-width: 36px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; }
  .acr-inc:hover {
    color: #333;
    border-color: #333; }

.acr-select {
  display: flex;
  align-items: center;
  width: 125px; }
  .acr-select input[type=number] {
    width: 50px !important;
    padding: 0px !important;
    margin: 0px !important;
    border: 0px !important;
    box-shadow: none;
    background: transparent !important;
    text-align: center;
    -moz-appearance: textfield !important; }
    .acr-select input[type=number]:focus {
      outline: 0; }

.tf-search-form-field-icon {
  margin-right: 8px; }

.tf_destination-wrap {
  border-right: 1px solid #cccccc;
  display: table-cell;
  vertical-align: middle; }
  .tf_destination-wrap .tf_input-inner {
    padding: 0 15px; }

.tf_selectdate-wrap {
  border-right: 1px solid #cccccc;
  display: table-cell;
  vertical-align: middle;
  padding: 0 15px;
  width: 20%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .tf_selectdate-wrap .tf_input-inner {
    display: flex;
    align-items: center;
    cursor: pointer; }

.tf_selectperson-wrap {
  border-right: 1px solid #cccccc;
  display: table-cell;
  vertical-align: middle;
  padding: 0 15px;
  width: auto;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }
  .tf_selectperson-wrap .tf_input-inner {
    display: flex;
    align-items: center;
    cursor: pointer; }

.tf_submit-wrap {
  border-right: 1px solid #cccccc;
  display: table-cell;
  vertical-align: middle; }

.tf_homepage-booking .tf_form-row .tf_label-row {
  margin: 0; }

.person-sep {
  padding: 0 8px;
  position: relative;
  white-space: nowrap; }
  .person-sep:after {
    content: "";
    position: absolute;
    height: 2px;
    background: #7d7d7d;
    width: 2px;
    left: 0;
    top: 0px;
    z-index: 2;
    right: 0;
    text-align: center;
    margin: 0 auto; }

.adults-text {
  white-space: nowrap; }

.child-text {
  white-space: nowrap; }

.room-text {
  white-space: nowrap; }

.infant-text {
  white-space: nowrap; }

.tf-review-form-container {
  min-width: 600px;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important; }
  .tf-review-form-container .logged-in-as {
    display: none; }
  .tf-review-form-container .tf-rating-wrapper {
    display: grid;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    column-gap: 40px;
    row-gap: 15px;
    margin: 0 0 80px 0; }
    .tf-review-form-container .tf-rating-wrapper .tf-form-single-rating {
      display: grid;
      grid-template-columns: auto auto;
      justify-content: space-between;
      align-items: center;
      column-gap: 20px; }
      .tf-review-form-container .tf-rating-wrapper .tf-form-single-rating label {
        color: #333;
        font-style: normal;
        font-weight: 500 !important;
        font-size: 16px !important;
        line-height: 1 !important;
        text-transform: capitalize !important; }
  .tf-review-form-container .tf-form-single-rating .error {
    color: red; }
  .tf-review-form-container .tf-form-single-rating .ratings-container {
    line-height: 1;
    unicode-bidi: bidi-override;
    direction: rtl; }
    .tf-review-form-container .tf-form-single-rating .ratings-container label {
      padding: 0;
      margin: 0;
      height: auto;
      line-height: 1;
      color: transparent; }
    .tf-review-form-container .tf-form-single-rating .ratings-container > input {
      display: none; }
  .tf-review-form-container .tf-form-single-rating .ratings-container.star10 {
    width: 220px; }
  .tf-review-form-container .tf-form-single-rating .ratings-container.star5 {
    width: 110px; }
  .tf-review-form-container .ratings-container > input + label {
    text-indent: -9999px;
    font-family: "Font Awesome 5 Free";
    display: inline-block;
    overflow: hidden;
    width: 22px;
    white-space: nowrap;
    cursor: pointer;
    color: transparent; }
    .tf-review-form-container .ratings-container > input + label:before {
      text-indent: 9999px;
      display: inline-block;
      content: "\f005";
      color: #E1E1E3;
      font-size: 18px; }
    .tf-review-form-container .ratings-container > input + label:hover ~ label:before {
      content: "\f005";
      color: #FFC314;
      font-weight: 900; }
    .tf-review-form-container .ratings-container > input + label:hover:before {
      content: "\f005";
      color: #FFC314;
      font-weight: 900; }
  .tf-review-form-container .ratings-container > .star-cb-clear + label {
    text-indent: 9999px;
    text-indent: -9999px;
    width: 0.5em;
    margin-left: -0.5em; }
    .tf-review-form-container .ratings-container > .star-cb-clear + label:before {
      width: 0.5em; }
  .tf-review-form-container .ratings-container > input:checked ~ label:before {
    content: "\f005";
    color: #FFC314;
    font-weight: 900; }
  .tf-review-form-container .ratings-container:hover > input + label:before {
    content: "\f005";
    color: #E1E1E3; }
  .tf-review-form-container .ratings-container:hover > input + label:hover ~ label:before {
    content: "\f005";
    color: #FFC314;
    font-weight: 900; }
  .tf-review-form-container .ratings-container:hover > input + label:hover:before {
    content: "\f005";
    color: #FFC314;
    font-weight: 900; }
  .tf-review-form-container .review-desc textarea {
    background: #F7F7FA;
    border: 1px solid #EDEDF0;
    border-radius: 4px;
    padding: 16px 8px 16px 16px;
    height: 160px;
    outline: none;
    color: #333;
    box-shadow: none;
    width: 100%; }
  .tf-review-form-container .tf-visitor-info {
    display: grid;
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    column-gap: 40px;
    margin: 40px 0 0 0; }
    .tf-review-form-container .tf-visitor-info input {
      background: #F7F7FA;
      border: 1px solid #EDEDF0;
      box-sizing: border-box;
      border-radius: 4px;
      height: 56px;
      padding: 16px 8px 16px 16px;
      outline: none;
      color: #333;
      box-shadow: none;
      width: 100%; }
    .tf-review-form-container .tf-visitor-info .error {
      color: red; }
  .tf-review-form-container .tf-review-submit {
    margin: 25px 0 0 0; }
    .tf-review-form-container .tf-review-submit input[type="submit"] {
      background: #003162;
      color: #fff;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      border: 1px solid #003162;
      border-radius: 4px;
      padding: 10px 20px; }
      .tf-review-form-container .tf-review-submit input[type="submit"]:hover {
        background: #0054a8;
        color: #fff;
        text-decoration: none;
        border: 1px solid #006dda; }

#tourfic-rating .logged-in-as {
  text-align: center;
  margin-bottom: 25px; }

.tf-review-container .no-comments {
  display: none; }

.tf-review-container .tf-total-review {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 25px 0; }
  .tf-review-container .tf-total-review .tf-total-average {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center; }
    .tf-review-container .tf-total-review .tf-total-average div {
      width: 60px;
      height: 60px;
      background: #4F91FF;
      border-radius: 4px;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 16px;
      color: #FFFFFF;
      font-weight: 600;
      font-size: 24px;
      line-height: 32px; }
    .tf-review-container .tf-total-review .tf-total-average span {
      color: #9696A0;
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      margin: 0px 16px; }

.tf-review-container .tf-review-progress-bar {
  background: #F7F7FA;
  display: grid;
  grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  column-gap: 40px;
  row-gap: 20px;
  padding: 24px;
  border: 1px solid #EDEDF0;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0 0 25px 0; }
  .tf-review-container .tf-review-progress-bar .tf-single {
    display: grid;
    grid-template-columns: calc(50% - 15px) calc(50% - 15px) 30px;
    align-items: center; }
    .tf-review-container .tf-review-progress-bar .tf-single .tf-text {
      text-align: left;
      color: #5A5B6A;
      font-style: normal;
      font-weight: 400;
      font-size: 14px;
      line-height: 1;
      text-transform: capitalize; }
    .tf-review-container .tf-review-progress-bar .tf-single .tf-p-bar {
      width: 100%;
      height: 7px;
      background: #D8E6FF;
      border-radius: 4px;
      position: relative;
      overflow: hidden; }
      .tf-review-container .tf-review-progress-bar .tf-single .tf-p-bar .percent-progress {
        position: absolute;
        width: 0;
        background-color: #76A9FF;
        height: 100%;
        transition: width 1s ease-in-out; }
    .tf-review-container .tf-review-progress-bar .tf-single .tf-p-b-rating {
      text-align: right;
      font-style: normal;
      font-weight: 500;
      font-size: 14px;
      line-height: 1;
      color: #5A5B6A; }

.tf-review-container .no-review h4 {
  text-align: center;
  color: #828282;
  margin-bottom: 10px; }

.tf-review-container .no-review .btn-styled {
  padding: 18px 20px; }

.tf-single-review {
  display: grid;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  column-gap: 20px;
  row-gap: 40px; }
  .tf-single-review .tf-single-details {
    display: grid;
    grid-template-columns: 56px calc(100% - 72px);
    column-gap: 16px;
    background: #F7F7FA;
    padding: 25px 25px 35px;
    border-radius: 4px; }
  .tf-single-review .tf-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden; }
  .tf-single-review .tf-review-details .tf-name {
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    color: #3A3A44;
    margin: 0 0 8px 0;
    text-transform: capitalize; }
  .tf-single-review .tf-review-details .tf-date {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    color: #5A5B6A;
    letter-spacing: 0.2px;
    margin: 0 0 8px; }
  .tf-single-review .tf-review-details .tf-rating-stars {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 5px;
    align-items: center;
    justify-content: start;
    line-height: 1; }
    .tf-single-review .tf-review-details .tf-rating-stars i {
      color: #FFBF00;
      font-size: 10px;
      height: 14px; }
  .tf-single-review .tf-review-details .tf-description {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #5A5B6A;
    margin: 8px 0 0 0; }

.tf-review-pending {
  text-align: center;
  font-size: 16px;
  font-style: italic;
  font-weight: normal;
  background: #FFF4A3;
  border-radius: 4px;
  padding: 10px 10px;
  color: #333;
  margin: 30px 0 10px 0; }

.tf-faq-sec-title {
  margin-bottom: 60px;
  text-align: center; }
  .tf-faq-sec-title p {
    max-width: 480px;
    margin: auto; }

.tf-faq-content-wrapper {
  display: flex;
  gap: 35px; }

.tf-ask-question {
  background: #F7F7FA;
  padding: 30px;
  border-radius: 4px;
  flex: 2;
  text-align: center; }
  .tf-ask-question .default-enquiry-title-section {
    display: flex;
    justify-content: center;
    align-items: baseline; }
    .tf-ask-question .default-enquiry-title-section h3 {
      font-size: 22px;
      color: #3A3A44;
      margin-bottom: 10px; }
    .tf-ask-question .default-enquiry-title-section i {
      font-weight: 900;
      padding-right: 10px;
      font-size: 22px;
      color: #003162; }

.tf-faq-items-wrapper {
  flex: 5; }

#tf-faq-item {
  border-bottom: 1px solid #c8e2fc;
  margin-bottom: 10px;
  padding-bottom: 10px; }
  #tf-faq-item .tf-faq-title {
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center; }
    #tf-faq-item .tf-faq-title h4 {
      font-size: 18px !important; }
  #tf-faq-item .tf-faq-title.active {
    margin-bottom: 15px; }
  #tf-faq-item .arrow {
    transition: 0.25s ease;
    transform: rotate(-90deg);
    font-size: 20px;
    color: #4F91FF; }
  #tf-faq-item .arrow-animate {
    transform: rotate(0deg); }
  #tf-faq-item .tf-faq-desc {
    background-color: #FFFFFF;
    display: none;
    padding: 20px;
    color: #333333;
    margin-top: -2px;
    z-index: 999;
    position: relative;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; }

.tf-faq-title h4 {
  width: 100%;
  color: #000; }

.tf-slider-item {
  border: 12px solid #fff;
  box-shadow: 0px 2px 4px rgba(90, 91, 106, 0.08);
  border-radius: 4px;
  height: 450px !important;
  padding: 20px;
  display: flex !important;
  align-items: flex-end;
  margin: 0 15px 15px !important;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-left: 0 !important; }

.tf-slider-content {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border-radius: 4px;
  width: 100%;
  padding: 15px;
  color: #FFFFFF; }

.tf-slider-desc h3 {
  font-size: 20px;
  color: #FFFFFF; }
  .tf-slider-desc h3 span {
    font-size: 15px;
    line-height: 26px;
    margin-top: 5px;
    display: block;
    font-weight: 400; }

.tf-slider-desc a {
  color: #fff;
  text-decoration: none; }
  .tf-slider-desc a:hover {
    color: #FFCD3D; }

.wish-button {
  background: #f1fbf3;
  color: #333;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  padding: 5px 7px;
  border-radius: 2px;
  margin: 0;
  transition: 0.3s; }
  .wish-button:hover {
    background: #333;
    color: #f1fbf3; }

.tf-wishlists .remove-wishlist {
  cursor: pointer; }

.tf-wishlist-button {
  font-size: 24px;
  cursor: pointer;
  margin: 0 5px 0 0;
  line-height: 1;
  color: #333; }

.tf-wishlist {
  text-align: right;
  margin-bottom: 20px; }

.single-tour-wish-bt {
  color: #333;
  font-size: 24px;
  cursor: pointer; }
  .single-tour-wish-bt i {
    background: rgba(26, 43, 72, 0.6);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    padding: 10px 9px 7px 10px;
    transition: 0.3s; }

.tf-text-red {
  color: red !important; }

.tf-filter {
  padding: 10px 10px; }

.checkmark {
  position: absolute;
  top: 2px;
  left: 0px;
  height: 15px;
  width: 15px;
  background-color: #fff;
  border-radius: 2px;
  border: 1px solid #D2D2D6; }

.filter-item label {
  position: relative;
  cursor: pointer;
  width: 100%;
  display: inline-block;
  padding-left: 25px;
  line-height: 1.3; }

li.filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 0px;
  border-radius: 4px;
  margin: 5px; }

.tf-widget-title {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  height: 48px;
  background: #F5F8FF;
  border: 1px solid #EDEDF0;
  border-radius: 8px 8px 0px 0px;
  justify-content: space-between; }

.fa {
  font-family: "FontAwesome" !important; }

.far {
  font-family: "FontAwesome" !important; }

.fas {
  font-family: "FontAwesome" !important; }

.tf-single-review.tf-reviews-slider ul.slick-dots {
  margin: 0; }

.tf-product-total {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 15px; }

.tf-box-wrapper h4 {
  margin-bottom: 20px !important;
  font-family: "rubik", sans-serif;
  font-size: 16px; }

.tf-box-wrapper .al-range-slider__track {
  background: #EEE;
  height: 10px;
  box-shadow: none !important;
  margin: 30px 0px 10px 0px; }
  .tf-box-wrapper .al-range-slider__track .al-range-slider__grid {
    pointer-events: inherit !important; }

.tf-box-wrapper .al-range-slider_dark {
  padding: 0px !important; }
  .tf-box-wrapper .al-range-slider_dark .al-range-slider__bar {
    background: #003162 !important;
    box-shadow: none !important;
    pointer-events: none !important; }

.tf-box-wrapper .al-range-slider__knob {
  background: #003162 !important;
  height: 15px;
  width: 15px;
  box-shadow: none !important;
  border: 3px solid #003162 !important; }
  .tf-box-wrapper .al-range-slider__knob:first-child span {
    left: 10px !important; }

.tf-box-wrapper .al-range-slider__tooltip {
  background: #003162 !important;
  border-radius: 5px;
  box-shadow: none;
  padding: 3px 10px;
  color: #fff !important;
  font-size: 13px !important;
  margin-bottom: 0px !important; }

.tf-box-wrapper .al-range-slider__input.js-al-range-slider__input {
  display: none; }

/*
Ajax Loader Booking Availability
*/
.tf-btn-booking-loading {
  padding-right: 40px;
  position: relative; }

.tf-btn-booking-loading:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -7px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-left-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  -webkit-animation: tf-wd-rotate 450ms infinite linear;
  animation: tf-wd-rotate 450ms infinite linear; }

@-webkit-keyframes tf-wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes tf-wd-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.woocommerce-product-gallery .ct-image-container {
  width: 100% !important; }

@media only screen and (max-width: 1000px) {
  form.tf-review-form {
    gap: 20px; }
  .tf-review-form-container {
    min-width: 500px; } }

@media only screen and (min-width: 1000px) {
  .tf-review-form-container {
    min-width: 800px; } }

@media (max-width: 991px) {
  .archive_ajax_result .single-tour-wrap {
    width: 100% !important;
    flex: none;
    margin-bottom: 20px; }
  .archive_ajax_result .tourfic-single-left {
    width: 100%;
    margin-bottom: 16px; }
  .archive_ajax_result .single-tour-inner {
    margin: 0;
    height: 100%;
    padding: 20px; }
  .archive_ajax_result .tourfic-single-right {
    padding: 0;
    width: 100%;
    height: 100%; }
  .archive_ajax_result .roomrow_flex {
    padding: 0;
    flex-wrap: wrap; }
  .archive_ajax_result .roomName_flex {
    width: 100%;
    max-width: 100%; }
  .archive_ajax_result .roomPrice.roomPrice_flex.sr_discount {
    text-align: left;
    margin: 10px 0; }
  .archive_ajax_result .availability-btn-area .tf_button {
    width: 100%;
    margin-top: 15px; }
  .tf_search_result .tf-action-top {
    display: none; } }

@media (min-width: 768px) and (max-width: 991px) {
  .tf-review-container .tf-review-progress-bar {
    grid-template-columns: auto; }
  .tf-single-review {
    grid-template-columns: auto; } }

@media screen and (max-width: 767px) {
  .tf-review-form-container {
    min-width: auto; }
    .tf-review-form-container .tf-rating-wrapper {
      grid-template-columns: 100%; }
  .tf_destination-wrap {
    width: 100%;
    display: block; }
  .tf_selectdate-wrap {
    width: 100%;
    display: block;
    padding: 10px 20px !important;
    border-bottom: 1px solid #ccc; }
  .tf_selectperson-wrap {
    width: 100%;
    display: block;
    padding: 20px !important;
    border-bottom: 1px solid #ccc; }
  .tf_submit-wrap {
    width: 100%;
    display: block; }
  .tf_selectdate-wrap.tf_more_info_selections {
    padding: 20px !important; }
  .tf-container {
    width: 100%; }
  #check-in-out-date {
    width: 220px !important; }
  .tours-check-in-out.flatpickr-input.flatpickr-mobile {
    width: 200px !important;
    text-transform: uppercase;
    height: 40px;
    border: 1px solid #ddd;
    color: #777;
    text-align: center;
    background: transparent !important; } }

@media only screen and (max-width: 600px) {
  .tf-review-container .tf-review-progress-bar {
    grid-template-columns: auto; }
  .tf-single-review {
    grid-template-columns: auto; }
  .tf-single-rating {
    font-size: 14px;
    padding: 6px; }
    .tf-single-rating span {
      font-size: 14px; } }

.search-result-wrapper {
  padding: 30px 0; }

.search-result-inner {
  display: grid;
  grid-template-columns: 75% 25%; }

.tf-search-left {
  padding-right: 15px; }

.tf-search-right {
  padding-left: 15px; }

.page-template-tf_search-result .tf_form-row .tf_button {
  padding: 15px 20px;
  width: 100%; }

.single-tour-inner {
  overflow: hidden;
  width: 100%;
  min-height: 149px;
  padding: 20px;
  margin: 16px 0;
  border: 1px solid #c6c6c6;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: default;
  clear: both;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative; }

.single-tour-wrap.tf-featured .single-tour-inner {
  background: #F5F9FF;
  border-color: #dbedff;
  box-shadow: 0px 2px 4px rgba(179, 180, 202, 0.48); }

.tourfic-single-left {
  order: 1;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: main-size;
  width: 210px;
  min-height: 210px;
  position: relative; }
  .tourfic-single-left img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px; }
  .tourfic-single-left .default-tags-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 100%;
    font-size: 12px;
    margin-top: 5px !important; }
    .tourfic-single-left .default-tags-container .default-single-tag {
      padding: 6px 12px;
      display: block;
      border-radius: 50px;
      margin: 5px 4px;
      font-weight: 500;
      line-height: 1;
      text-transform: capitalize; }

.tourfic-single-right {
  order: 2;
  flex-grow: 1;
  flex-basis: 200px;
  padding: 0 0 0 16px; }

.tourfic_hotel-title {
  display: inline-block;
  margin: 0 !important;
  padding-right: 2px; }
  .tourfic_hotel-title:hover {
    color: #003162; }

.single-tour-wrap {
  transition: all 0.3s ease-out; }
  .single-tour-wrap:first-child .single-tour-inner {
    margin-top: 0; }
  .single-tour-wrap * {
    transition: all 0.3s ease-out; }

.tf_property_block_main_row {
  min-height: 50px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400; }

.tf_item_main_block {
  order: 2;
  flex-grow: 1; }

.tf-hotel__title-wrap {
  margin-bottom: 4px; }

.sr_rooms_table_block {
  margin-top: 8px; }

.tf_search_result .tf-tour-desc {
  margin-top: 8px;
  border-top: 1px solid #bdbdbd;
  padding-top: 8px; }

.room_details {
  border-top: 1px solid #bdbdbd;
  padding-top: 8px; }

.featuredRooms {
  margin: 0;
  clear: both;
  width: 100%;
  line-height: 1; }

.roomrow_flex {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 14px;
  align-items: center; }

.roomName_flex {
  flex-grow: 1;
  width: auto;
  max-width: 50%; }

.roomPrice.roomPrice_flex.sr_discount {
  text-align: right;
  max-width: 50%; }

a.page-numbers {
  background: #003162;
  color: #fff;
  padding: 5px 15px;
  text-decoration: none; }

.archive_ajax_result.loading {
  opacity: 0.3; }

.tf_posts_navigation .page-numbers.current {
  background: #c9ddfa;
  padding: 5px 15px; }

.tf-archive-shortdesc {
  line-height: 1.8;
  margin: 5px 0 10px;
  font-size: 14px;
  opacity: 0.85; }

.tf-tour-desc {
  line-height: 1.8;
  margin: 5px 0 10px;
  font-size: 14px;
  opacity: 0.85; }

.tf-archive-desc {
  margin: 0;
  padding: 0; }
  .tf-archive-desc li {
    display: inline-block;
    margin-right: 7px; }
  .tf-archive-desc i {
    color: #549501;
    font-size: 15px;
    margin-bottom: 10px; }

.availability-btn-area.tour-search {
  font-size: 14px;
  line-height: 1;
  text-align: right; }

.tf-room-price {
  margin-top: 10px; }
  .tf-room-price .amount {
    font-weight: bold;
    margin-left: 5px; }

.tf-tour-price .amount {
  font-weight: bold;
  margin-left: 5px; }

.tf-action-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd; }
  .tf-action-top .tf-result-counter-info {
    display: flex; }
    .tf-action-top .tf-result-counter-info .tf-counter-title {
      margin-right: 5px; }

.tf-list-grid {
  display: flex;
  align-items: center; }
  .tf-list-grid a {
    display: inline-flex;
    margin-left: 10px;
    font-size: 20px;
    text-decoration: none; }

.tf-archive-rating {
  width: 40px;
  height: 40px;
  line-height: 1;
  background: #003162;
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  float: right;
  margin-bottom: 3px;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: bold; }

.tf-archive-rating-wrapper h6 {
  color: #737373;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 14px;
  text-align: right; }

.archive_ajax_result.tours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; }
  .archive_ajax_result.tours-grid .single-tour-wrap {
    width: 100%;
    padding: 0 5px;
    margin-bottom: 10px; }
  .archive_ajax_result.tours-grid .single-tour-inner {
    margin: 0;
    height: 100%;
    padding: 20px; }
  .archive_ajax_result.tours-grid .tourfic-single-left {
    width: 100%;
    margin-bottom: 16px; }
  .archive_ajax_result.tours-grid .tourfic-single-right {
    padding: 0;
    width: 100%;
    height: 100%; }
  .archive_ajax_result.tours-grid .roomrow_flex {
    padding: 0;
    flex-wrap: wrap; }
  .archive_ajax_result.tours-grid .roomName_flex {
    width: 100%;
    max-width: 100%; }
  .archive_ajax_result.tours-grid .availability-btn-area .tf_button {
    margin-top: 15px; }
  .archive_ajax_result.tours-grid .roomPrice.roomPrice_flex.sr_discount {
    text-align: left;
    margin: 10px 0; }

.archive_ajax_result .tf-tour-price {
  display: flex;
  justify-content: end; }

.archive_ajax_result.tours-grid .tf-tour-price {
  justify-content: start; }

.archive_ajax_result.tours-grid .availability-btn-area.tour-search {
  text-align: left; }

/* Search result sidebar  */
.tf_widget {
  border: 1px solid #EDEDF0;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 0px !important; }
  .tf_widget .tf-hotel-result-price-range,
  .tf_widget .tf-tour-result-price-range,
  .tf_widget .tf-apartment-result-price-range {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px; }
  .tf_widget h4 {
    font-size: 20px;
    font-weight: 500; }
  .tf_widget .al-range-slider__track {
    background: #EEE;
    height: 10px;
    box-shadow: none !important;
    margin: 30px 0px 10px 0px; }
  .tf_widget .al-range-slider_dark {
    padding: 0px !important; }
    .tf_widget .al-range-slider_dark .al-range-slider__bar {
      background: #003162 !important;
      box-shadow: none !important; }
  .tf_widget .al-range-slider__knob {
    background: #003162 !important;
    height: 15px;
    width: 15px;
    box-shadow: none !important;
    border: 3px solid #003162 !important; }
    .tf_widget .al-range-slider__knob:first-child span {
      left: 10px !important; }
  .tf_widget .al-range-slider__tooltip {
    background: #003162 !important;
    border-radius: 5px;
    box-shadow: none;
    padding: 3px 10px;
    color: #fff !important;
    font-size: 13px !important;
    margin-bottom: 0px !important; }
  .tf_widget .al-range-slider__input.js-al-range-slider__input {
    display: none !important; }
  .tf_widget .tf-widget-title {
    display: flex;
    align-items: center;
    padding: 10px;
    height: 48px;
    background: #F5F8FF;
    border: 1px solid #EDEDF0;
    border-radius: 8px 8px 0px 0px;
    justify-content: space-between; }
    .tf_widget .tf-widget-title span {
      font-size: 16px;
      line-height: 24px;
      cursor: pointer;
      width: 100%; }
    .tf_widget .tf-widget-title i.fa {
      display: flex;
      align-items: end;
      justify-content: space-between; }
    .tf_widget .tf-widget-title i.fa.collapsed {
      transform: rotate(180deg); }
  .tf_widget .filter-item.active {
    background-color: #F5F8FF; }
  .tf_widget ul {
    margin: 0;
    padding: 0; }
    .tf_widget ul li.filter-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 10px;
      border-radius: 4px;
      margin: 5px; }
  .tf_widget a.see-more.btn-link {
    text-align: center;
    display: block;
    font-weight: 600; }
  .tf_widget a.see-less.btn-link {
    text-align: center;
    display: block;
    font-weight: 600;
    display: none; }
  .tf_widget a.see-more span {
    margin-left: 3px;
    vertical-align: middle; }
  .tf_widget li.filter-item.hidden {
    display: none; }

/* Create a custom checkbox */
.filter-item, .tf-room-checkbox {
  /* Style the checkmark/indicator */ }
  .filter-item label, .tf-room-checkbox label {
    position: relative;
    cursor: pointer;
    width: 100%;
    display: inline-block;
    padding-left: 25px;
    font-weight: 400 !important; }
  .filter-item .checkmark, .tf-room-checkbox .checkmark {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid #D2D2D6; }
  .filter-item input[type=checkbox], .tf-room-checkbox input[type=checkbox] {
    display: none !important; }
  .filter-item label:hover input ~ .checkmark, .tf-room-checkbox label:hover input ~ .checkmark {
    background-color: #ccc; }
  .filter-item label input:checked ~ .checkmark, .tf-room-checkbox label input:checked ~ .checkmark {
    background-color: #2196F3; }
  .filter-item .checkmark:after, .tf-room-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none; }
  .filter-item label input:checked ~ .checkmark:after, .tf-room-checkbox label input:checked ~ .checkmark:after {
    display: block; }
  .filter-item label .checkmark:after, .tf-room-checkbox label .checkmark:after {
    left: 6px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

.tf-hide-pagination {
  display: none !important; }

@media only screen and (max-width: 991px) {
  .widget_tf_hotel_filter {
    margin-top: 20px;
    margin-bottom: 20px; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-result-inner {
    grid-template-columns: 65% 35%; }
  .apartment-tags-container {
    width: 530px; } }

@media only screen and (min-width: 660px) and (max-width: 767px) {
  .search-result-inner {
    grid-template-columns: 60% 40%; } }

@media only screen and (min-width: 635px) and (max-width: 659px) {
  .archive_ajax_result {
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 2%; }
    .archive_ajax_result .single-tour-wrap {
      margin-bottom: 0px; }
  .tf_property_block_main_row {
    display: block; }
  .tf-archive-rating-wrapper {
    margin-top: 20px; }
    .tf-archive-rating-wrapper h6 {
      text-align: left; }
  .tf-archive-rating {
    float: none; } }

@media only screen and (max-width: 659px) {
  .search-result-inner {
    grid-template-columns: 100%; }
    .search-result-inner .tf-search-right {
      grid-row: 1; }
  .widget_tf_hotel_filter .tf-filter ul li {
    display: inline-block;
    padding-right: 25px;
    margin-top: 5px; }
  .tf-search-right {
    padding: 0 !important; }
  .tf-search-left {
    padding: 0 !important; } }

.tf-booking-form-tab .btn-styled {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: #333; }
  .tf-booking-form-tab .btn-styled.active {
    background-color: #003162;
    border-color: #003162;
    color: #fff; }

.tf_form-inner .autocomplete-items {
  max-height: 120px;
  overflow: scroll;
  overflow-x: hidden;
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0; }
  .tf_form-inner .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: #444; }
    .tf_form-inner .autocomplete-items div:hover {
      background-color: #e9e9e9; }

.tf_form-inner .tf-hotel-locations {
  display: none; }
  .tf_form-inner .tf-hotel-locations #ui-id-1 li i {
    margin-right: 10px; }

.tf_form-inner .tf-locations-show {
  display: block; }

.tf_form-inner .tf-tour-results {
  display: none; }
  .tf_form-inner .tf-tour-results #ui-id-2 li i {
    margin-right: 10px; }

.tf_form-inner .tf-destination-show {
  display: block; }

.tf_form-inner .tf-hotel-results {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0; }
  .tf_form-inner .tf-hotel-results #ui-id-1 li {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: #444;
    border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    text-transform: capitalize; }
    .tf_form-inner .tf-hotel-results #ui-id-1 li:hover {
      background-color: #e9e9e9; }
  .tf_form-inner .tf-hotel-results #ui-id-2 li {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: #444;
    border-left: 1px solid #d4d4d4;
    border-right: 1px solid #d4d4d4;
    text-transform: capitalize; }
    .tf_form-inner .tf-hotel-results #ui-id-2 li:hover {
      background-color: #e9e9e9; }
  .tf_form-inner .tf-hotel-results ul#ui-id-1 {
    left: 0 !important;
    width: 100% !important;
    right: 0 !important;
    margin: 0 !important;
    list-style: none;
    top: 100% !important;
    max-height: 225px;
    z-index: 99999;
    overflow-y: scroll;
    padding-left: 0px !important; }
  .tf_form-inner .tf-hotel-results ul#ui-id-2 {
    left: 0 !important;
    width: 100% !important;
    right: 0 !important;
    margin: 0 !important;
    list-style: none;
    top: 100% !important;
    max-height: 225px;
    z-index: 99999;
    overflow-y: scroll;
    padding-left: 0px !important; }

.tf_booking-widget .tf_form-row .tf_button {
  padding: 15px 20px;
  width: 100%; }

.tf_booking-widget #check-in-out-date {
  font-size: 13px;
  min-width: 150px; }

.tf_submit-wrap {
  border-right: 0;
  border-radius: 0 8px 8px 0;
  background: #003162;
  width: 15%; }
  @media only screen and (max-width: 767.98px) {
    .tf_submit-wrap {
      border-radius: 0 0 8px 8px; } }
  .tf_submit-wrap button {
    width: 100%;
    height: 100%;
    border-radius: 8px !important; }
  .tf_submit-wrap .btn-styled {
    padding: 20px 20px; }

.tf-tabcontent {
  display: none;
  border-top: none; }

button.tf-tablinks.active {
  background: #003162;
  color: #f1f1f1;
  outline: none; }

button.tf-tablinks:focus {
  outline: none; }

.tf_booking-widget.default-form {
  padding: 0 !important;
  background: none !important;
  border: none; }
  .tf_booking-widget.default-form .tf_form-inner {
    padding: 0;
    display: flex !important;
    align-items: center; }
  .tf_booking-widget.default-form .tf-label {
    display: none; }

.tf-widget-slider.recent-hotel-slider {
  overflow: hidden;
  width: 100%; }

.tf-children-age-fields {
  display: flex;
  flex-wrap: wrap; }

.tf-children-age {
  flex-grow: 1;
  width: 44%;
  margin: 5px; }
  .tf-children-age select {
    width: 100%;
    background-position-y: center; }

.single_recomended_content {
  height: 270px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.single_recomended_item {
  box-sizing: border-box;
  margin-bottom: 15px;
  float: left;
  width: 33%; }
  .single_recomended_item:hover {
    box-shadow: 0 0 1px #febb02; }
    .single_recomended_item:hover .recomended_place_info_header {
      background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 27, 65, 0.85)), color-stop(100%, rgba(0, 27, 65, 0)));
      background: linear-gradient(to bottom, rgba(0, 27, 65, 0.85) 0, rgba(0, 27, 65, 0) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00224F", endColorstr="#00001e47", GradientType=0); }

.recomended_inner .single_recomended_item {
  width: 32.33%;
  float: left;
  margin-right: 1%; }
  .recomended_inner .single_recomended_item:nth-child(3) {
    margin-right: 0; }

#recomended_section_wrapper {
  overflow: hidden; }
  #recomended_section_wrapper a {
    text-decoration: none;
    display: block; }

.recomended_place_info_header {
  text-align: center;
  padding: 10px 18px;
  background: rgba(0, 0, 0, 0.65);
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px; }
  .recomended_place_info_header h3 {
    margin: 0px;
    padding: 0px;
    color: #fff;
    font-weight: bold;
    text-decoration: none; }
  .recomended_place_info_header p {
    margin: 0px;
    padding: 0px;
    color: #fff;
    text-decoration: none; }

.tf_homepage-booking {
  display: table;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  position: relative;
  border: 1px solid #cccccc;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  height: 55px;
  margin: 24px 0 16px;
  background: #fff; }
  .tf_homepage-booking .tf_selectperson-wrap .tf_person-icon {
    margin-right: 8px; }

.tf_destination-wrap {
  border-left: 0;
  min-width: 150px;
  width: 25%; }
  .tf_destination-wrap .ui-menu-item:before {
    content: "\f3c5";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    float: left;
    font-size: 15px;
    line-height: 25px;
    margin-right: 5px; }

div#tf-locationautocomplete-list div:before {
  content: "\f3c5";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  float: left;
  font-size: 15px;
  margin-right: 5px;
  line-height: 24px; }

div#tf-destinationautocomplete-list div:before {
  content: "\f3c5";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  float: left;
  font-size: 15px;
  margin-right: 5px;
  line-height: 24px; }

.tf-widget-slider .tf-heading {
  margin: 0 0 30px 0; }

.recent-tour-slider a {
  text-decoration: none !important; }

.recent-tour-slider h3 {
  margin-bottom: 0 !important; }

.recent-tour-slider p {
  margin-top: 7px;
  margin-bottom: 0 !important; }

.recent-tour-slider .tf-slider-rating-star {
  margin-top: 7px;
  margin-bottom: 0 !important; }
  .recent-tour-slider .tf-slider-rating-star i {
    color: #FFCD3D; }

.recent-hotel-slider a {
  text-decoration: none !important; }

.recent-hotel-slider h3 {
  margin-bottom: 0 !important; }

.recent-hotel-slider p {
  margin-top: 7px;
  margin-bottom: 0 !important; }

.recent-hotel-slider .tf-slider-rating-star {
  margin-top: 7px;
  margin-bottom: 0 !important; }
  .recent-hotel-slider .tf-slider-rating-star i {
    color: #FFCD3D; }

.tf-wishlists a {
  text-decoration: none !important; }

.tf-wishlists i {
  padding-left: 10px;
  color: #0054a8; }

.tf-wishlists td {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  padding: 15px; }

.tf-recent-room-price .amount {
  font-weight: bold;
  margin-top: 5px; }

.tf_more_info_selections {
  position: relative;
  cursor: pointer; }

.tf-more-info {
  position: absolute;
  width: 620px;
  padding: 15px 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.175);
  border-radius: 0 0 4px 4px;
  border-color: #dfdfdf;
  margin-top: 0;
  background: #fff;
  right: 0;
  top: 102%;
  display: none;
  z-index: 999; }
  .tf-more-info .form-group.form-check {
    width: 33%;
    float: left; }
  .tf-more-info span {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 10px; }

.tf-more-info.show {
  display: block; }

.tf-filter-price-range .al-range-slider__track {
  background: #EEE;
  height: 10px;
  box-shadow: none !important;
  margin: 30px 0px 10px 0px; }

.tf-filter-price-range .al-range-slider_dark {
  padding: 0px !important; }
  .tf-filter-price-range .al-range-slider_dark .al-range-slider__bar {
    background: #003162;
    box-shadow: none !important; }

.tf-filter-price-range .al-range-slider__knob {
  background: #003162;
  height: 15px;
  width: 15px;
  box-shadow: none !important;
  border: 3px solid #003162; }
  .tf-filter-price-range .al-range-slider__knob:first-child span {
    left: 10px !important; }

.tf-filter-price-range .al-range-slider__tooltip {
  background: #003162;
  border-radius: 5px;
  box-shadow: none;
  padding: 3px 10px;
  color: #fff !important;
  font-size: 13px !important;
  margin-bottom: 0px !important; }

.tf-filter-price-range .al-range-slider__input.js-al-range-slider__input {
  display: none; }

.tf-shortcode-design-2-tab .tf-booking-form-tab button {
  border-radius: 0px;
  padding: 15px 20px;
  border: 0px solid; }

.tf-shortcode-design-2-tab .tf-booking-form-tab button.active {
  background-color: #b58e53; }

.tf-shortcode-design-2-tab .tf_homepage-booking {
  border-radius: 0px; }
  .tf-shortcode-design-2-tab .tf_homepage-booking .tf_submit-wrap {
    background-color: #b58e53 !important; }
    .tf-shortcode-design-2-tab .tf_homepage-booking .tf_submit-wrap .btn-styled {
      background-color: #b58e53 !important;
      border: 0px solid !important; }

.tf-shortcode-design-2-tab .tf_booking-widget-design-2 {
  background: rgba(48, 40, 28, 0.3);
  backdrop-filter: blur(15px);
  margin: 24px 0 16px; }
  .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 830px) {
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody {
        display: flow-root; } }
    .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items {
      max-height: 240px;
      position: absolute;
      background: #fcf4e8;
      box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
      overflow: auto;
      scrollbar-width: thin;
      scrollbar-color: #aaa #eee;
      padding: 8px;
      z-index: 99;
      top: 100%;
      left: 0;
      right: auto;
      border: 0px solid;
      width: 276px; }
      @media only screen and (max-width: 1024px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items {
          width: auto;
          right: 0; } }
      @media only screen and (max-width: 767.98px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items {
          top: 97px !important; } }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items::-webkit-scrollbar {
        width: 5px; }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 4px; }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items::-webkit-scrollbar-track {
        background-color: #eee; }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        margin-bottom: 4px;
        color: #444;
        display: block;
        transition: .3s all ease;
        border-bottom: 0px solid; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items div:last-child {
          margin-bottom: 0px; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items div:hover {
          background: #FAEEDC; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .autocomplete-items div::before {
          display: none; }
    .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields {
      padding: 24px 40px;
      display: flex;
      width: calc(100% - 222px); }
      @media only screen and (max-width: 1366px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields {
          padding: 24px 24px;
          width: calc(100% - 150px); } }
      @media only screen and (max-width: 830px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields {
          width: 100%; } }
      @media only screen and (max-width: 767.98px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields {
          display: flow-root; } }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf-label {
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        color: #D6D4D2;
        margin-bottom: 8px;
        display: block; }
        @media only screen and (max-width: 1366px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf-label {
            font-size: 12px; } }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields {
        width: 25%;
        padding-right: 40px;
        border-right: 1px solid #99948d; }
        @media only screen and (max-width: 1366px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields {
            padding-right: 24px; } }
        @media only screen and (max-width: 767.98px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields {
            width: 100%;
            padding-right: 0px;
            border-right: 0px solid;
            padding-bottom: 24px; } }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields .tf_label_location .tf_form_inners {
          border: .5px solid #FCF4E8;
          display: flex;
          align-items: center;
          padding: 8px 0px 8px 12px; }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields .tf_label_location .tf_form_inners svg {
            float: left; }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields .tf_label_location .tf_form_inners input {
            float: left;
            background-color: transparent;
            border: 0px solid;
            color: #D6D4D2;
            width: 80%;
            height: 30px; }
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields .tf_label_location .tf_form_inners input:focus {
              outline: none;
              box-shadow: 0px 0px 0px 0px; }
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_destination_fields .tf_label_location .tf_form_inners input::placeholder {
              color: #D6D4D2;
              opacity: 1; }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date {
        width: 22%;
        padding-left: 40px;
        padding-right: 40px;
        border-right: 1px solid #99948d; }
        @media only screen and (max-width: 1366px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date {
            padding-left: 24px;
            padding-right: 24px; } }
        @media only screen and (max-width: 767.98px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date {
            width: 30%;
            float: left;
            padding-left: 0px; } }
        @media only screen and (max-width: 575.98px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date {
            width: 25%;
            padding-right: 5px;
            padding-left: 0px; } }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf-check-in-out-date,
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf-tour-check-in-out-date,
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf-apartment-check-in-out-date {
          visibility: hidden;
          height: 0px;
          padding: 0px !important;
          width: 0px;
          position: absolute; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date label {
          display: block;
          cursor: pointer; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkin_dates,
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkout_dates {
          display: flex; }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkin_dates span.date,
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkout_dates span.date {
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            color: #FDF9F3;
            margin-right: 16px; }
            @media only screen and (max-width: 1366px) {
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkin_dates span.date,
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkout_dates span.date {
                font-size: 20px; } }
            @media only screen and (max-width: 575.98px) {
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkin_dates span.date,
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkout_dates span.date {
                margin-right: 8px; } }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkin_dates span.month,
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkout_dates span.month {
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            color: #FDF9F3; }
            @media only screen and (max-width: 1366px) {
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkin_dates span.month,
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date .tf_form_inners .tf_checkout_dates span.month {
                font-size: 12px; } }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date.tf_check_inout_dates {
        padding-left: 24px; }
        @media only screen and (max-width: 575.98px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_checkin_date.tf_check_inout_dates {
            padding-left: 5px; } }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info {
        width: 31%;
        padding-left: 40px;
        border-right: 0px solid;
        padding-right: 0px; }
        @media only screen and (max-width: 1366px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info {
            padding-left: 24px; } }
        @media only screen and (max-width: 767.98px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info {
            width: 40%;
            float: left;
            border: 0px solid;
            padding-top: 0px !important;
            padding-bottom: 0px !important;
            padding-right: 0px !important; } }
        @media only screen and (max-width: 575.98px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info {
            padding-left: 5px;
            width: 50%; } }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner {
          display: flow-root; }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners {
            display: inline-block; }
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation {
              display: flex;
              gap: 8px; }
              .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number {
                display: flex;
                align-items: center; }
                .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number span.guest,
                .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number span.room {
                  font-size: 24px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 130%;
                  color: #FDF9F3;
                  margin-right: 8px; }
                  @media only screen and (max-width: 575.98px) {
                    .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number span.guest,
                    .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number span.room {
                      margin-right: 8px; } }
                .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number span.label {
                  font-size: 16px;
                  font-style: normal;
                  font-weight: 400;
                  line-height: 130%;
                  color: #FDF9F3; }
                  @media only screen and (max-width: 1366px) {
                    .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_guest_calculation .tf_guest_number span.label {
                      font-size: 12px; } }
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_input-inner .tf_form_inners .tf_check_arrow {
              text-align: right; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_acrselection-wrap {
          background: #FDF9F3;
          box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1);
          top: 111%;
          border-radius: 0px; }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_acrselection-wrap .acr-label {
            color: #595349;
            font-family: Josefin Sans;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 130%; }
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_acrselection-wrap .acr-select {
            text-align: right;
            width: 96px; }
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_acrselection-wrap .acr-select input[type=tel] {
              width: 34px !important;
              height: 48px;
              border: 0.2px solid !important;
              font-size: 16px;
              font-style: normal;
              font-weight: 600;
              color: #595349 !important;
              text-align: center;
              padding-left: 0px !important;
              padding-right: 0px !important;
              border-radius: 20px;
              background: #FCF4E8 !important; }
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_acrselection-wrap .acr-select .acr-dec,
            .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_form_fields .tf_guest_info .tf_acrselection-wrap .acr-select .acr-inc {
              background: transparent;
              border: none;
              font-size: 31px;
              font-weight: 400;
              color: #595349;
              padding: 0px !important; }
    .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box {
      width: 222px;
      background-color: #B58E53;
      display: flex; }
      @media only screen and (max-width: 1366px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box {
          width: 150px; } }
      @media only screen and (max-width: 830px) {
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box {
          width: 100%; } }
      .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box button {
        background-color: #B58E53;
        color: #FDF9F3;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        width: 100%;
        border: 0px solid;
        cursor: pointer;
        transition: .3s all ease; }
        .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box button:hover {
          background-color: #917242 !important; }
        @media only screen and (max-width: 1366px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box button {
            font-size: 12px; } }
        @media only screen and (max-width: 830px) {
          .tf-shortcode-design-2-tab .tf_booking-widget-design-2 .tf_hotel_searching .tf_form_innerbody .tf_availability_checker_box button {
            padding: 15px 32px; } }

.tf_tf_booking-widget-wrap {
  z-index: 999; }

#tf-ask-question {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  margin: auto;
  overflow: auto scroll; }

.tf-aq-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0.5; }

.tf-aq-outer {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20%;
  width: 100%;
  max-width: 428px;
  background: #fff;
  padding: 48px 40px 32px 40px;
  border-radius: 16px;
  transform: translate(0, 0); }
  @media only screen and (max-width: 640px) {
    .tf-aq-outer {
      width: 90%; } }

span.close-aq {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 9999; }

span.close-aq:hover {
  scale: 1.2; }

div.tf-aq-inner {
  display: flex;
  flex-direction: column;
  align-self: center; }
  div.tf-aq-inner .tf-ask-question-head-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px; }
    div.tf-aq-inner .tf-ask-question-head-content h3 {
      text-align: center;
      font-family: Inter;
      font-size: 24px;
      font-style: normal;
      font-weight: 500;
      line-height: 120%; }
  div.tf-aq-inner form {
    display: flex;
    flex-direction: column;
    gap: 24px; }
    div.tf-aq-inner form .tf-ask-question-submit {
      padding: 12px 32px;
      border-radius: 4px;
      background: #003C7A;
      color: #FFF;
      font-family: inherit;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%; }
    div.tf-aq-inner form .tf-ask-question-submit:hover {
      background: #0A5AC2; }

.tf-aq-field {
  position: relative;
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column; }
  .tf-aq-field label {
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 8px; }
  .tf-aq-field input, .tf-aq-field textarea {
    max-width: 100%;
    border-radius: 4px !important;
    border: 1px solid #C0CCD8; }
  .tf-aq-field input::placeholder, .tf-aq-field textarea::placeholder {
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal; }

.tf-booking-form-tab-mobile {
  display: none; }

.tf-hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; }
  @media only screen and (max-width: 767.98px) {
    .tf-hotel-grid {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (max-width: 640px) {
    .tf-hotel-grid {
      grid-template-columns: 1fr; } }

.post-section-one {
  overflow: hidden;
  display: flex; }
  .post-section-one .tf-single-item {
    width: 32%;
    float: left;
    margin: 10px;
    padding: 15px;
    display: flex;
    border-radius: 5px;
    height: 400px;
    object-fit: cover;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0; }
    .post-section-one .tf-single-item:before {
      position: absolute;
      content: "";
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: -1;
      border-radius: 5px; }

.tf-single-item {
  width: 48%;
  float: left;
  margin: 11px;
  padding: 15px;
  display: flex;
  border-radius: 5px;
  height: 400px;
  object-fit: cover;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0; }
  .tf-single-item:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    border-radius: 5px; }

.tf-post-content {
  flex-grow: 1;
  align-self: flex-end; }

.tf-post-desc a {
  color: #fff; }
  .tf-post-desc a:hover {
    color: #ddd; }

.tf-post-desc p {
  color: #fff; }

@media screen and (max-width: 767px) {
  .tf_form-inner .autocomplete-items {
    top: 70px !important; }
  .tf_form-inner .tf-hotel-results #ui-id-1 {
    top: -255px !important; }
  .tf_form-inner .tf-hotel-results #ui-id-2 {
    top: -255px !important; }
  .tf-more-info {
    width: 100%; }
  .tf_destination-wrap {
    padding: 10px !important;
    border-bottom: 1px solid #ccc;
    width: 100%; }
    .tf_destination-wrap .tf_input-inner {
      padding: 0 10px; }
  .tf_submit-wrap {
    width: 100%; }
  .recomended_inner {
    margin-left: -15px;
    margin-right: -15px;
    clear: both; }
    .recomended_inner .single_recomended_item {
      width: 49% !important;
      float: left;
      margin-right: 0;
      padding-left: 15px;
      padding-right: 15px; }
  .tf-booking-form-tab {
    display: none; }
  .tf-booking-form-tab-mobile {
    display: block; }
  select[name="tf-booking-form-tab-select"] {
    width: 100%;
    background: transparent;
    height: 45px;
    padding: 10px !important;
    border: 1px solid #ccc;
    border-radius: 4px; }
  .post-section-one {
    flex-direction: column; }
    .post-section-one .tf-single-item {
      width: 100%;
      margin: unset;
      margin-bottom: 10px; }
  .tf-single-item {
    width: 100%;
    margin: unset;
    margin-bottom: 10px; }
  .tf-hotel-grid .tf-slider-item {
    width: 100%;
    float: left; } }

@media screen and (max-width: 450px) {
  .recomended_inner .single_recomended_item {
    width: 100% !important;
    float: none;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0; } }

body {
  margin: 0;
  padding: 0; }

.tf-template-global {
  font-family: inherit;
  color: #686E7A; }
  .tf-template-global .tf-container {
    width: auto; }
  .tf-template-global h2 {
    font-size: 30px; }
  .tf-template-global img {
    display: inline-block;
    border: none;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    max-width: 100%; }

table.tf-table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 13px 30px 0px #E0E8EE;
  border-radius: 5px; }
  @media only screen and (max-width: 767.98px) {
    table.tf-table {
      font-size: 14px; } }
  table.tf-table td {
    text-align: left;
    padding: 25px;
    line-height: 1.4; }
    @media only screen and (max-width: 767.98px) {
      table.tf-table td {
        padding: 10px; } }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      table.tf-table td {
        padding: 16px; } }
  table.tf-table td:nth-child(2) {
    border-left: 1px solid #ddd; }
  table.tf-table tr {
    border-bottom: 1px solid #ddd; }
  table.tf-table tr:last-child {
    border-bottom: 0px solid #ddd; }

.tf-btn-normal {
  color: #0E3DD8 !important;
  background-color: #fff !important;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
  display: block;
  text-align: center;
  transition: all .6s ease;
  font-family: inherit;
  border: 0px !important;
  cursor: pointer; }
  .tf-btn-normal:hover {
    background: #deddeb; }
  .tf-btn-normal.btn-primary:hover {
    background-color: #0e2e96;
    color: #fff;
    transition: all .6s ease; }
  .tf-btn-normal.btn-secondary:hover {
    background-color: #bbc4dd; }

.btn-primary {
  background-color: #0E3DD8 !important;
  color: #fff !important; }

.btn-secondary {
  background-color: #E3E7F2 !important;
  color: #060D1C !important; }

.tf-list {
  list-style: none;
  padding: 0; }
  .tf-list li {
    margin-top: 12px;
    list-style: none; }
    .tf-list li i {
      color: #0E3DD8;
      width: 24px; }

.tf-field-group.tf_form-inner,
.tf-field-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%; }
  .tf-field-group.tf_form-inner i,
  .tf-field-group i {
    position: absolute;
    left: 18px; }
  .tf-field-group.tf_form-inner .tf-field,
  .tf-field-group .tf-field {
    border: none !important;
    padding: 15px 40px !important;
    width: 100% !important;
    background-color: #F3F7FA !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    margin: 0px !important;
    color: #686E7A !important;
    font-family: inherit;
    background-image: none;
    -moz-appearance: auto !important;
    height: auto; }
    .tf-field-group.tf_form-inner .tf-field:focus,
    .tf-field-group .tf-field:focus {
      outline: none;
      border: none; }
  .tf-field-group.tf_form-inner input::placeholder,
  .tf-field-group input::placeholder {
    font-weight: 16px;
    font-size: 14px;
    color: #686E7A; }

.tf-page-content {
  flex-basis: 68%; }
  @media only screen and (max-width: 767.98px) {
    .tf-page-content {
      flex-basis: 100%; } }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-page-content {
      flex-basis: 58%; } }

.tf-sidebar {
  flex-basis: 32%;
  padding-left: 30px; }
  @media only screen and (max-width: 767.98px) {
    .tf-sidebar {
      flex-basis: 100%;
      margin-top: 0px;
      padding-left: 0px; } }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-sidebar {
      flex-basis: 40%;
      padding-left: 12px; } }

.tf-icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center; }

.tf-box-wrapper {
  background-color: #fff;
  border-radius: 5px; }

.tf-box {
  padding: 30px;
  box-shadow: 0px 13px 30px 0px #e0e8ee; }
  @media only screen and (max-width: 767.98px) {
    .tf-box {
      padding: 24px; } }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-box {
      padding: 24px; } }

.tf-flex {
  display: flex; }
  @media only screen and (max-width: 767.98px) {
    .tf-flex {
      flex-wrap: wrap; } }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-flex {
      flex-wrap: wrap; } }

.tf-flex-space-bttn {
  justify-content: space-between; }

.tf-flex-align-center {
  align-items: center; }

.tf-flex-align-top {
  align-items: flex-start; }

.tf-flex-gap-8 {
  gap: 8px; }

.tf-flex-gap-12 {
  gap: 12px; }

.tf-flex-gap-16 {
  gap: 16px; }

.tf-flex-gap-24 {
  gap: 24px; }

.tf-mt-8 {
  margin-top: 8px; }

.tf-mt-16 {
  margin-top: 16px; }

.tf-mt-24 {
  margin-top: 24px; }

.tf-mt-30 {
  margin-top: 30px; }

.tf-mb-30 {
  margin-bottom: 30px; }

.tf-mt-40 {
  margin-top: 40px; }

.tf-mb-40 {
  margin-bottom: 40px; }

.tf-mt-50 {
  margin-top: 50px; }

.tf-mb-50 {
  margin-bottom: 50px; }

.tf-pad-8 {
  padding-top: 8px; }

.tf-pad-16 {
  padding-top: 16px; }

.tf-pad-24 {
  padding-top: 24px; }

.tf-pad-30 {
  padding: 30px; }

.tf-padbtm-8 {
  padding-bottom: 8px; }

.tf-padbtm-12 {
  padding-bottom: 12px; }

.tf-padbtm-16 {
  padding-bottom: 16px; }

.tf-column-2 .tf-column {
  flex-basis: calc((100%/2) - 16px); }

.tf-column-3 {
  display: flex;
  flex-wrap: wrap; }
  .tf-column-3 .tf-column {
    flex-basis: calc((100%/3) - 16px); }
    @media only screen and (max-width: 767.98px) {
      .tf-column-3 .tf-column {
        flex-basis: calc((100%/1) - 0px); } }

.tf-column-4 {
  display: flex;
  flex-wrap: wrap; }
  .tf-column-4 .tf-column {
    flex-basis: calc((100%/4) - 16px); }
    @media only screen and (max-width: 767.98px) {
      .tf-column-4 .tf-column {
        flex-basis: calc((100%/2) - 8px); } }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-column-4 .tf-column {
        flex-basis: calc((100%/2) - 8px); } }

.tf-template-global h1,
.tf-template-global h2,
.tf-template-global h3,
.tf-template-global h4,
.tf-template-global h5,
.tf-template-global h6 {
  font-family: inherit;
  font-weight: 500;
  color: #060D1C;
  margin: 0px;
  line-height: 1.3; }

.tf-template-global p {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #686E7A;
  margin: 0px; }

/**************** TITLE ****************/
.tf-map-link a.more-hotel {
  font-weight: bold; }

.tf-wishlist-button {
  font-size: 24px;
  cursor: pointer;
  margin: 0 5px 0 0;
  line-height: 1; }

.tf-share {
  position: relative; }

.share-tour-content {
  display: none;
  position: absolute;
  min-width: 100%;
  top: 100%;
  transform: translateY(8px);
  z-index: 9999;
  left: auto;
  right: 0; }

.tf-hotel-video {
  position: absolute;
  right: 10px;
  bottom: 10px; }

.share-tour-content .tf-dropdown-content {
  margin: 0;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  min-width: 200px;
  z-index: 100;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 3px -1px rgba(0, 0, 0, 0.2); }

.share-tour-content .tf-dropdown-item-content {
  white-space: nowrap;
  display: flex;
  align-items: center;
  column-gap: 5px; }

.tf-dropdown-content li {
  display: inline-block; }

.tf-dropdown-content li a i {
  color: #1D75E3;
  font-size: 17px; }

.tf-dropdown-content li:nth-child(2) a i {
  color: #1D9BF0; }

.tf-dropdown-content li:nth-child(3) a i {
  color: #0A66C2; }

.tf-dropdown-content li:nth-child(4) a i {
  color: #CC0000; }

.share-tour-content .tf-dropdown-item {
  border: 0;
  margin: 0;
  cursor: pointer;
  padding: 12px 16px;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
  background-color: #fff;
  fill: #333;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 14px; }

.share-tour-content .tf-dropdown-item:hover {
  background-color: #f5f5f5; }

.share-tour-content .share-center-copy-form {
  display: flex;
  align-items: center;
  padding: 12px 16px; }

.share-tour-content .share-center-copy-label {
  white-space: nowrap; }

.share-tour-content .share-center-copied-message {
  display: none; }

.share-center-copy-cta.copied .share-center-copied-message {
  display: inline-block;
  font-weight: bold; }

.share-center-copy-cta.copied .share-center-copy-message {
  display: none; }

.share-tour-content #share_link_button {
  white-space: nowrap;
  font-size: 13px;
  padding: 5px 12px; }

.share-tour-content input#share_link_input {
  width: auto !important;
  flex-grow: 1;
  margin: 0 8px;
  background-color: #e6e6e6;
  padding: 0;
  border: 2px solid rgba(118, 118, 118, 0.3); }

.tf-share a {
  line-height: 1;
  font-size: 22px;
  display: block;
  margin: 0 10px 0 0;
  outline: none; }

.show-on-map .btn-styled {
  text-transform: uppercase;
  font-weight: bold; }

/**************** HERO ****************/
.hero-left .tf-top-review {
  position: absolute;
  margin: 20px; }

.hero-section-wrap {
  display: grid;
  grid-template-columns: 75% 25%; }

.hero-left {
  padding-right: 15px; }

.hero-right {
  padding-left: 15px; }

.swiper-button-next {
  background-image: unset; }

.slick-slide-item img {
  width: 100% !important; }

a.slick-slide-item-link {
  width: 100% !important; }

.single-slider-wrapper {
  position: relative; }

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  z-index: 9;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background-color: #000;
  text-align: center;
  cursor: pointer;
  padding: 6px 13px 0px 12px;
  border-radius: 4px;
  width: auto; }

.swiper-button-prev i,
.swiper-button-next i {
  font-size: 28px; }

.swiper-button-prev {
  left: 20px; }

.swiper-button-next {
  right: 20px; }

.tf-gallery-wrap .slick-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: zoom-in; }

.tf-gallery-wrap .swiper-button-prev {
  background-image: none !important; }

.show-on-map {
  margin-bottom: 20px; }

.show-on-map iframe {
  height: 130px; }

.show-on-map .btn-styled {
  background: linear-gradient(to bottom, #005cb9 0, #003162 100%);
  border: none; }

.show-on-map .btn-styled:hover {
  background: linear-gradient(to bottom, #0071e3 0, #003162 100%); }

.show-on-map i {
  padding-right: 8px;
  font-size: 15px; }

.hero-booking .widget {
  margin-bottom: 0; }

.single-tour-wrap.tf-featured .single-tour-inner {
  position: relative; }

.tf-featured-badge {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  left: -10px; }

.tf-featured-badge::before,
.tf-featured-badge::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 5px solid #003162;
  border-top-color: transparent;
  border-left-color: transparent; }

.tf-featured-badge span {
  position: absolute;
  display: block;
  width: 225px;
  padding: 10px 0;
  background-color: #003162;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #fff;
  font: 700 18px/1 'Lato', sans-serif;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  z-index: 9; }

/* top left*/
.tf-featured-badge {
  top: -10px;
  left: -10px; }

.tf-featured-badge::before {
  top: 0;
  right: 0; }

.tf-featured-badge::after {
  bottom: 0;
  left: 0; }

.tf-featured-badge span {
  right: -12px;
  top: 33px;
  transform: rotate(-45deg); }

.nearby-container {
  display: block;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px 20px 10px 20px;
  border-radius: 8px; }
  .nearby-container h3 {
    margin: 0;
    text-transform: capitalize;
    font-size: 22px !important; }
  .nearby-container ul {
    padding-left: 5px;
    font-size: 15px;
    margin: 0; }
    .nearby-container ul li {
      list-style-type: none;
      display: flex;
      justify-content: space-between;
      padding: 8px 0;
      text-transform: capitalize; }
      .nearby-container ul li i {
        padding-right: 5px;
        font-size: 14px; }

/**************** FEATURES ****************/
.tf_features {
  padding: 5px 0 30px 0; }

.tf_features .feature-list-title {
  margin: 0;
  padding-left: 8px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-size: 13px; }

.tf_features i {
  color: #549501; }

.tf_features .single-feature-box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-right: 10px;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #0000002e;
  box-shadow: -1px 1px 6px -1px #0000002e;
  margin-top: 10px; }

.tf_features .tf-feature-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }

/**************** FAQ ****************/
.hotel-faq .tf-faq-sec-title {
  text-align: left;
  margin-bottom: 20px; }

/**************** ROOMS ****************/
.tf-room-filter .tf-room-checkbox, .tf-room-filter h3 {
  color: #000;
  list-style: none; }

ul.tf-room-checkbox li {
  float: left;
  margin: 10px;
  display: flex;
  align-items: center; }

ul.tf-room-checkbox li:first-child {
  margin-left: 0; }

h3.tf-room-feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px; }

ul.tf-room-checkbox {
  margin-left: 0px; }

ul.tf-room-checkbox label {
  margin-left: 5px;
  line-height: 19px; }

.tf-room-filter {
  padding: 0 0 15px 0;
  overflow: hidden; }

.tf-room-section {
  margin-top: -20px; }

.availability-table {
  border: none;
  margin-bottom: 0; }

.availability-table thead {
  background: #003162;
  color: #fff; }

.availability-table td,
.availability-table th {
  border-left: 1px solid #c8e2fc;
  border-bottom: 1px solid #c8e2fc;
  border-top: none;
  border-right: none; }

.availability-table th {
  border-top: 1px solid #c8e2fc; }

.availability-table td.reserve {
  border-right: 1px solid #c8e2fc; }

.tf-hotel-deposit-hide {
  display: none; }

/*.tf-room-table .availability-table tbody tr:nth-child(odd) td {
    background: #fff;
}*/
.hotel-room-wrap {
  width: 100%;
  overflow-x: auto; }

.room-selection-wrap select,
.room-selection-wrap .select2-container .select2-selection--single {
  background-image: none;
  padding: 10px;
  width: 100%;
  text-align: center;
  -moz-appearance: auto; }

.availability-table td.description {
  padding: 25px; }

.availability-table td.description h3 a,
.availability-table td.description h3 {
  font-size: 20px;
  line-height: 1.5; }

.availability-table td.description h3 a {
  text-decoration: underline !important; }

.availability-table td.options ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }
  .availability-table td.options ul li {
    margin-bottom: 4px; }
    .availability-table td.options ul li .room-extra-icon {
      margin-right: 5px; }

.room-features h4,
.pax h4 {
  font-size: 16px; }

.room-features {
  margin-top: 15px; }

.room-feature-list {
  list-style: none;
  padding: 0;
  margin: 5px 0 0; }

.room-feature-list li {
  display: inline-block;
  margin-right: 8px; }

.tf-room-table td.pax {
  min-width: 80px; }

.room-detail-icon {
  text-align: center;
  margin: 15px 0 0 0; }

.room-detail-icon .room-icon-wrap {
  border: 1px solid #eaeef3;
  border-radius: 4px;
  padding: 8px 10px 4px 10px;
  margin-right: 5px; }

.room-detail-icon .room-icon-wrap i,
.room-features i {
  font-size: 16px;
  color: #5e6d77; }

.room-detail-icon .icon-text {
  font-size: 14px;
  color: #5e6d77; }

.hotel-room-availability,
.hotel-room-book {
  white-space: nowrap; }

.hotel-room-book {
  margin-top: 15px; }

#tour_room_details_loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  z-index: 999999; }

#tour-room-details-loader-img {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center; }

span.tf-price .amount {
  font-weight: bold; }

.price-per-night {
  font-size: 12px;
  white-space: nowrap; }

.bed-facilities {
  margin: 8px 0; }

.room-feature-list li {
  margin-right: 15px; }

.tf-hotel-details-qc-gallelry .tf-details-qc-slider .tf-details-qcs img {
  width: 100%; }

.tf-hotel-details-qc-gallelry .tf-details-qc-slider-nav {
  margin-top: 0px; }
  .tf-hotel-details-qc-gallelry .tf-details-qc-slider-nav .tf-details-qcs.is-active img {
    border: 5px solid #1F2937; }
  .tf-hotel-details-qc-gallelry .tf-details-qc-slider-nav .tf-details-qcs img {
    min-height: 50px;
    max-height: 50px; }

.tf-room .tf-withoutpayment-booking {
  text-align: left; }

#tf-hotel-services.tf-hotel-services-wrap {
  display: none; }

/********************** HOTEL FACILITIES - START **********************/
.tf-main-wrapper .tf-container h2 {
  margin-top: 0px; }

.tf-main-wrapper .tf-hotel-facilities-section .active {
  display: none; }

.tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container {
  padding: 32px;
  border-radius: 6px;
  background: #fff; }
  .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer; }
    .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area .section-heading {
      margin-bottom: 0; }
    .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area .tf-section-title {
      margin-bottom: 0px; }
    .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area i {
      font-size: 32px;
      color: #0E3DD8; }
    .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area .hotel-facilities-icon-down {
      display: none; }
  .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area {
    margin-top: 24px; }
    .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item {
      margin-bottom: 24px; }
      .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item .hotel-single-facility-title {
        color: #060D1C;
        font-family: inherit;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 16px; }
      .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        vertical-align: baseline;
        gap: 16px;
        margin: 0px;
        padding: 0px; }
        @media only screen and (max-width: 767.98px) {
          .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul {
            flex-direction: column; } }
        .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul li {
          display: flex;
          color: #686E7A;
          font-family: inherit;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 125%;
          vertical-align: baseline; }
          .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul li span {
            margin-right: 8px; }
            @media only screen and (max-width: 767.98px) {
              .tf-main-wrapper .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul li span {
                min-width: 16px; } }

/********************** HOTEL FACILITIES - END  **********************/
/********************** RESPONSIVE **********************/
@media only screen and (min-width: 951px) {
  .popupmap-for-mobile {
    display: none; } }

@media only screen and (max-width: 950px) {
  .hero-right .tf-hotel-location-preview {
    display: none; }
  .tf-hotel-location-preview iframe {
    height: 200px; }
  .popupmap-for-mobile {
    margin-top: 15px; } }

@media only screen and (min-width: 831px) {
  .map-for-mobile {
    display: none; } }

@media only screen and (max-width: 830px) {
  .tf_booking-widget {
    margin-bottom: 0; }
  .hero-right .show-on-map {
    display: none; }
  .map-for-mobile {
    margin-top: 15px; } }

@media only screen and (min-width: 821px) and (max-width: 991px) {
  .hero-section-wrap {
    grid-template-columns: 72% 28%; } }

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-wrap {
    grid-template-columns: 72% 28%; } }

@media only screen and (min-width: 768px) and (max-width: 820px) {
  .hero-section-wrap {
    grid-template-columns: 67% 33%; } }

@media only screen and (max-width: 767px) {
  .tf-title-area h1 {
    font-size: 28px; }
  .more-hotel.tf-d-ib {
    display: inline; }
  .hero-section-wrap {
    grid-template-columns: 60% 40%; }
  .hotel-room-wrap {
    width: auto;
    overflow-x: auto; }
  .description {
    min-width: 300px; }
  .single-feature-box {
    margin-bottom: 10px; } }

@media only screen and (max-width: 600px) {
  .tf-title-wrap {
    display: block; }
  .hero-section-wrap {
    grid-template-columns: 100%; }
  .tf-title-right {
    margin-top: 15px;
    justify-content: end; }
  .hero-left {
    padding-right: 0; }
  .hero-right {
    padding-left: 0;
    max-width: 316px;
    margin: auto; }
  .share-tour-content .tf-dropdown-content {
    min-width: 270px;
    margin-left: -170px; }
  .tf-dropdown-content li {
    display: block; }
  .share-tour-content input#share_link_input {
    width: 100% !important;
    margin: 5px 0;
    max-width: 100%;
    display: block; }
  .share-tour-content {
    left: 50px; }
  .share-tour-content .share-center-copy-form {
    display: block; } }

.tf-hero-content {
  padding: 20px;
  background-position: center center;
  background-size: cover;
  border-radius: 0 0 4px 4px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px; }
  @media only screen and (max-width: 480px) {
    .tf-hero-content {
      gap: 16px; } }

.tf-hero-top {
  display: flex;
  justify-content: space-between;
  gap: 30px; }

.tf-tours_search-wrap {
  margin-top: 150px;
  margin-bottom: 150px; }

.tf-hero-bottom-area {
  text-align: right;
  color: #fff;
  font-size: 14px;
  margin-top: 20px; }

.tf-contact-info h3 {
  margin-bottom: 30px; }

.tf-contact-info div {
  margin: 15px 0; }
  .tf-contact-info div p {
    margin: 0; }
    .tf-contact-info div p a {
      text-decoration: none;
      color: #222; }

div#tf-contact-info {
  border-radius: 8px; }

.tf-hero-btm-icon {
  display: inline-block; }
  .tf-hero-btm-icon i {
    background: rgba(26, 43, 72, 0.6);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    transition: 0.3s;
    cursor: pointer; }
    .tf-hero-btm-icon i:hover {
      background: rgba(26, 43, 72, 0.8); }

.tf-tour-booking-wrap {
  border-radius: 4px;
  padding: 10px;
  margin: 0 auto;
  background: #FFFFFFF0;
  box-shadow: 0px 5px 10px rgba(0, 44, 102, 0.2);
  width: 80%;
  font-size: 16px; }
  .tf-tour-booking-wrap .btn-styled {
    border-radius: 2px;
    width: 160px;
    font-weight: bold;
    text-transform: uppercase; }
  .tf-tour-booking-wrap form.tf_tours_booking {
    justify-content: space-evenly;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 !important; }
  .tf-tour-booking-wrap .tf_selectperson-wrap {
    color: #152B47;
    font-weight: 500;
    border: none; }
  .tf-tour-booking-wrap .tf_form-row {
    color: #152B47; }
    .tf-tour-booking-wrap .tf_form-row .tf_label-row {
      margin-bottom: 0; }
  .tf-tour-booking-wrap .tours-check-in-out {
    color: #152B47;
    padding: 0; }
  .tf-tour-booking-wrap .tf_form-inner input[type="text"] {
    background: transparent;
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 2px; }
  .tf-tour-booking-wrap .tf_form-inner select {
    background: transparent;
    border: 1px solid #ccc;
    padding: 5px 15px;
    border-radius: 2px; }
    .tf-tour-booking-wrap .tf_form-inner select:focus {
      background: transparent;
      border: 0;
      outline: 0; }
  .tf-tour-booking-wrap .tf_form-inner input[type=text]:focus {
    background: transparent;
    border: 0;
    outline: 0; }

.tour-extra a {
  color: #333; }

.tour-extra i {
  color: #003162;
  padding-right: 8px; }

#tour-extra .fancybox-button.fancybox-close-small:hover {
  color: #fff; }

.tf-tours-fixed {
  position: fixed;
  bottom: 0;
  left: 0%;
  right: 0; }
  .tf-tours-fixed .tf_selectperson-wrap {
    background: #fff;
    border-radius: 2px;
    padding: 9px 15px; }
  .tf-tours-fixed .tour-extra i {
    color: #fff; }
  .tf-tours-fixed .tour-extra a {
    color: #fff; }
  .tf-tours-fixed button[type="submit"] {
    padding: 16px; }
  .tf-tours-fixed form.tf_tours_booking {
    width: 55%; }
  .tf-tours-fixed .tf_form-inner {
    background: #fff;
    border-radius: 2px; }
  .tf-tours-fixed .btn-styled {
    border: 1px solid #fb5a3b;
    background: #fb5a3b;
    width: 180px; }

.tf-tour-booking-wrap.tf-tours-fixed {
  width: 100%;
  z-index: 9999;
  background-color: #003162eb;
  border-top: 4px solid #FB5A3B;
  padding: 8px 0; }
  .tf-tour-booking-wrap.tf-tours-fixed .tf_acrselection-wrap {
    position: absolute;
    top: unset !important;
    left: 0;
    right: auto;
    bottom: 100% !important; }
  .tf-tour-booking-wrap.tf-tours-fixed .tf_tours_booking {
    width: 100%;
    max-width: 1200px;
    margin: auto; }

.tf_tours-template-default .tf-tour-booking-wrap.tf-tours-fixed .tf_tours_booking {
  margin: 0 auto !important; }

.tf-single-tour-pricing {
  width: 200px; }
  .tf-single-tour-pricing .tf-price {
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    color: #9696A0;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    justify-content: center; }
    .tf-single-tour-pricing .tf-price span.sale-price {
      font-weight: 600;
      font-size: 24px;
      line-height: 1;
      color: #003162;
      margin: 0 8px 0 0; }
  .tf-single-tour-pricing .tf-price-tab {
    list-style: none;
    display: flex;
    line-height: 1;
    font-size: 14px;
    font-weight: 600;
    color: #5A5B6A;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 10px 0 0 0;
    border: 1px solid #D8E6FF;
    box-sizing: border-box;
    border-radius: 4px;
    cursor: pointer;
    padding: 0; }
    .tf-single-tour-pricing .tf-price-tab li {
      padding: 0;
      width: 100%;
      text-align: center;
      height: 36px;
      justify-content: center;
      align-content: center;
      display: flex;
      align-items: center;
      transition: 0.3s; }
      .tf-single-tour-pricing .tf-price-tab li:hover {
        color: #003162;
        background-color: #D8E6FF; }
      .tf-single-tour-pricing .tf-price-tab li:nth-child(2) {
        border-left: 1px solid #D8E6FF; }
      .tf-single-tour-pricing .tf-price-tab li:nth-child(3) {
        border-left: 1px solid #D8E6FF; }
    .tf-single-tour-pricing .tf-price-tab li.active {
      color: #003162;
      background: #D8E6FF; }

.tf-square-block-content {
  display: flex;
  text-align: center;
  gap: 35px; }

.tf-single-square-block {
  width: 100%;
  background: #FAFCFE;
  box-shadow: 0px 8px 16px rgba(90, 91, 106, 0.08);
  border-radius: 4px;
  color: #003162;
  border: 1px solid #F5F8FF;
  padding: 50px 20px;
  min-height: 100px; }
  .tf-single-square-block h4 {
    color: #003162; }
  .tf-single-square-block img {
    display: block;
    margin: auto;
    margin-bottom: 12px; }
  .tf-single-square-block i {
    margin-bottom: 12px;
    font-size: 32px; }
  .tf-single-square-block * {
    margin: 0; }

.tf-single-square-block.first {
  background-color: #007bff24; }

.tf-single-square-block.second {
  background: #28a74524; }

.tf-single-square-block.fifth {
  background: #e0e7ff; }
  .tf-single-square-block.fifth .repeat-dates {
    font-size: 16px;
    margin-top: 5px; }
    .tf-single-square-block.fifth .repeat-dates .repeat-date {
      margin: 5px; }

.repeat-design-default .repeat-dates {
  margin: 0; }

.tf-single-square-block.third {
  background: #ffc10724; }

.tf-single-square-block.fourth {
  background: #dc354524; }

.tf-highlight-item {
  display: flex;
  gap: 30px;
  align-items: center; }

.tf-highlight-text {
  flex: 0 0 49%; }
  .tf-highlight-text ul {
    margin: 0;
    padding: 0;
    margin-top: 15px;
    list-style-position: inside; }

.tf-highlight-image {
  flex: 0 0 49%; }
  .tf-highlight-image img {
    border-radius: 4px;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 2px 4px rgba(90, 91, 106, 0.08);
    width: 100%; }

.tf_features .feature-list-title {
  margin: 0;
  padding-left: 8px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-size: 13px; }

.tf_features i {
  color: #549501; }

.tf_features .single-feature-box {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-right: 10px;
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid #0000002e;
  box-shadow: -1px 1px 6px -1px #0000002e;
  margin-top: 10px; }

.tf_features .tf-feature-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap; }

.tf-inc-exc-wrapper {
  background-position: center center;
  background-size: cover;
  background-attachment: fixed; }

.tf-inc-exc-content {
  display: flex;
  margin: auto;
  gap: 35px; }
  .tf-inc-exc-content h4 {
    padding: 6px 0;
    margin-bottom: 10px;
    color: #fff; }
  .tf-inc-exc-content > * {
    flex: 1; }
  .tf-inc-exc-content ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .tf-inc-exc-content ul li {
      padding-left: 0px;
      position: relative;
      margin-left: 0; }
      .tf-inc-exc-content ul li i {
        margin-right: 20px; }
      .tf-inc-exc-content ul li:before {
        content: "";
        position: absolute;
        height: 16px;
        width: 16px;
        left: 0;
        background-size: contain;
        top: 8px; }
    .tf-inc-exc-content ul i.fas {
      float: left;
      vertical-align: middle;
      margin-top: 6px; }

.tf-include-section {
  background: #000000a3;
  background-image: linear-gradient(to right, rgba(253, 97, 67, 0), #003162);
  border-radius: 4px;
  padding: 20px 30px 30px;
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px); }

.tf-exclude-section {
  background: #000000a3;
  background-image: linear-gradient(to right, rgba(253, 97, 67, 0), #003162);
  border-radius: 4px;
  padding: 20px 30px 30px;
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px); }

.tf-include-section.custom-inc-icon ul li:before {
  display: none; }

.tf-exclude-section.custom-exc-icon ul li:before {
  display: none; }

.tf-travel-itinerary-content h2 {
  margin-bottom: 30px; }

#tf-accordion-wrapper {
  margin-bottom: 30px; }
  #tf-accordion-wrapper .tf-accordion-head {
    cursor: pointer;
    transition: 0.2s ease;
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0px 2px 4px rgba(90, 91, 106, 0.08);
    border-radius: 4px;
    z-index: 1;
    position: relative; }
  #tf-accordion-wrapper .arrow {
    transition: 0.25s ease;
    transform: rotate(-90deg);
    font-size: 20px;
    margin-right: 25px; }
  #tf-accordion-wrapper .arrow-animate {
    transform: rotate(0deg); }
  #tf-accordion-wrapper .tf-accordion-content {
    background-color: #FFFFFF;
    display: none;
    padding: 20px 30px;
    color: #333333;
    margin-top: -2px;
    z-index: 999;
    position: relative;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px; }

.tf-travel-time {
  background: #002C66;
  border-radius: 4px 0px 0px 4px;
  width: 130px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 4px rgba(90, 91, 106, 0.08);
  padding: 10px; }
  .tf-travel-time span {
    font-size: 18px;
    color: #FAFCFE; }

.tf-travel-itinerary-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px; }

.tf-accordion-head h4 {
  font-size: 18px;
  color: #3A3A44;
  padding-left: 25px;
  width: 100%;
  margin-bottom: 0; }
  .tf-accordion-head h4:hover {
    color: #003162; }

.tf-travel-desc {
  display: flex;
  padding-top: 20px;
  gap: 20px;
  flex-direction: row; }

.tf-ititnerary-img {
  flex-basis: 30%; }
  .tf-ititnerary-img img {
    width: 100%;
    object-fit: cover; }

.tf-accordion-content a:focus {
  outline: none; }

.trav-cont {
  display: flex; }

.tf-travel-description {
  display: flow-root;
  flex-basis: 70%; }

.ininerary-other-gallery {
  margin-bottom: 20px; }

.ininerary-gallery-single.slick-slide.slick-active {
  height: 130px !important; }

.ininerary-gallery-single > a img {
  height: 130px !important; }

#tour-map {
  margin-top: 0px; }

.tf-map-wrapper .tf-container {
  max-width: 100%;
  padding: 0; }

.tf-suggestion-wrapper .owl-nav button {
  position: absolute;
  top: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background: #FAFCFE;
  box-shadow: 0px 5px 10px rgba(0, 44, 102, 0.2);
  border-radius: 4px;
  transform: matrix(1, 0, 0, -1, 0, 0);
  color: #002C66;
  font-size: 20px;
  transition: 0.3s; }
  .tf-suggestion-wrapper .owl-nav button:hover {
    background: #002C66;
    color: #fff; }

.tf-suggestion-wrapper .owl-nav button.owl-prev {
  left: -85px; }

.tf-suggestion-wrapper .owl-nav button.owl-next {
  right: -85px; }

.tf-suggestion-sec-head {
  margin-bottom: 30px;
  text-align: center; }
  .tf-suggestion-sec-head p {
    max-width: 480px;
    margin: auto; }

.tf-suggestion-rating {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  margin-top: 30px; }
  .tf-suggestion-rating i {
    color: #FFCD3D; }

.itn-gm-m {
  background-color: #002C66 !important; }

.gm-style .marker-label {
  display: block;
  padding-top: 30px;
  padding-left: 82px;
  line-height: 1.33;
  font-family: inherit !important;
  font-weight: 600 !important;
  align-items: baseline; }
  .gm-style .marker-label:before {
    content: "\eb21";
    font-size: 16px;
    padding-right: 4px;
    margin-top: 4px;
    font-weight: 300 !important;
    font-family: 'remixicon' !important; }

.gm-style-iw {
  padding: 0px !important;
  width: 296px;
  border-radius: 12px !important; }
  .gm-style-iw .gm-style-iw-d {
    overflow: hidden !important; }
    .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-wrap {
      width: 296px;
      height: 140px;
      overflow: hidden;
      margin: 0px; }
      .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-wrap img {
        width: 100%;
        height: 140px;
        border-radius: 12px 12px 0px 0px;
        object-fit: cover; }
    .gm-style-iw .gm-style-iw-d .itinerary-map-popup .popup-arrow-active {
      display: none !important; }
    .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-icons {
      display: block;
      z-index: 99; }
      .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-icons .itinerary-map-popup-img-icon-right {
        cursor: pointer;
        user-select: none;
        position: absolute;
        top: 51px;
        right: 0; }
      .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-icons .itinerary-map-popup-img-icon-left {
        cursor: pointer;
        user-select: none;
        position: absolute;
        top: 51px;
        left: 0; }
    .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content {
      padding: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: black; }
      .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-time-wrap {
        padding: 8px 16px;
        background: #F3F4F6;
        width: 70px;
        height: auto;
        border-radius: 32px;
        text-align: center;
        margin-bottom: 4px; }
        .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-time-wrap .itinerary-map-popup-time {
          color: #454954;
          font-size: 12px;
          font-style: normal;
          font-weight: 700;
          line-height: normal; }
        .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-time-wrap .itinerary-map-popup-title {
          color: #818797;
          font-size: 12px;
          font-style: normal;
          font-weight: 400;
          line-height: 18px; }
      .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-desc {
        color: #818797;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom: 4px; }
      .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-options {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap; }
        .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-options .itinerary-map-popup-option {
          padding: 4px 8px;
          border: 1px solid #F3F4F6;
          border-radius: 32px;
          font-weight: 400;
          color: #818797; }
          .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-options .itinerary-map-popup-option .map-popup-option-icon {
            margin-right: 4px; }
          .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-content .itinerary-map-popup-options .itinerary-map-popup-option .map-popup-option-mode {
            font-size: 12px; }
  .gm-style-iw button[title~=Close] {
    top: 8px !important;
    right: 8px !important;
    background-color: #F3F4F6 !important;
    opacity: 1 !important;
    border-radius: 6px;
    height: 24px !important;
    width: 24px !important; }
    .gm-style-iw button[title~=Close] span {
      margin: auto !important; }
  .gm-style-iw button:hover {
    border-radius: 24px;
    border: 1px solid #8F94A3 !important; }
  @media only screen and (max-width: 480px) {
    .gm-style-iw .gm-style-iw {
      width: 148px !important; }
      .gm-style-iw .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-wrap {
        width: 100%; } }
  @media only screen and (max-width: 480px) {
    .gm-style-iw .gm-style-iw {
      width: 148px !important; }
      .gm-style-iw .gm-style-iw .gm-style-iw-d .itinerary-map-popup .itinerary-map-popup-img-wrap {
        width: 100%; } }

#commentform label {
  position: static !important;
  display: inline-block !important; }

.tf-withoutpayment-booking,
.tf-withoutpayment-booking-confirm {
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center; }
  .tf-withoutpayment-booking .tf-confirm-popup,
  .tf-withoutpayment-booking-confirm .tf-confirm-popup {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 776px;
    background-color: #FCFDFF;
    border-radius: 24px;
    position: relative; }
    @media only screen and (max-width: 767.98px) {
      .tf-withoutpayment-booking .tf-confirm-popup,
      .tf-withoutpayment-booking-confirm .tf-confirm-popup {
        width: 100%; } }
    .tf-withoutpayment-booking .tf-confirm-popup img,
    .tf-withoutpayment-booking-confirm .tf-confirm-popup img {
      width: 320px; }
    .tf-withoutpayment-booking .tf-confirm-popup h2,
    .tf-withoutpayment-booking-confirm .tf-confirm-popup h2 {
      color: #333D46;
      font-family: inherit;
      font-size: 48px;
      font-style: normal;
      font-weight: 600;
      line-height: 30px;
      letter-spacing: -0.96px; }
    .tf-withoutpayment-booking .tf-confirm-popup .tf-booking-times,
    .tf-withoutpayment-booking-confirm .tf-confirm-popup .tf-booking-times {
      position: absolute;
      right: 24px;
      top: 24px; }
      .tf-withoutpayment-booking .tf-confirm-popup .tf-booking-times span,
      .tf-withoutpayment-booking-confirm .tf-confirm-popup .tf-booking-times span {
        cursor: pointer; }
  .tf-withoutpayment-booking .tf-withoutpayment-popup,
  .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup {
    width: 776px;
    background-color: #FCFDFF;
    border-radius: 24px;
    text-align: left; }
    @media only screen and (max-width: 767.98px) {
      .tf-withoutpayment-booking .tf-withoutpayment-popup,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup {
        width: 100%; } }
    .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs,
    .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs {
      padding: 24px;
      border-bottom: 0.3px solid #CCCED1;
      border-radius: 24px;
      background: #FCFDFF;
      display: flex;
      justify-content: space-between;
      margin-bottom: 24px; }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
        border-radius: 8px;
        background: #C8D6E4;
        display: flex; }
        @media only screen and (max-width: 767.98px) {
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul {
            display: inline-block;
            background-color: transparent; } }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li {
          display: inline-block;
          padding: 16px 32px;
          cursor: pointer;
          color: #96AFCA; }
          @media only screen and (max-width: 767.98px) {
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li {
              padding: 8px;
              border-radius: 16px;
              border: 1px solid #CCCED1;
              font-size: 13px;
              margin: 5px 0px; } }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done {
          background-color: #96AFCA;
          color: #FCFDFF; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done:first-child,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done:first-child {
            border-radius: 8px 0px 0px 8px; }
            @media only screen and (max-width: 767.98px) {
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done:first-child,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done:first-child {
                border-radius: 16px !important;
                border: 1px solid #003C7A;
                background-color: transparent;
                color: #003C7A; } }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active {
          position: relative;
          background-color: #96AFCA;
          color: #FCFDFF;
          padding-right: 50px; }
          @media only screen and (max-width: 767.98px) {
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active {
              padding-right: 8px !important;
              border: 1px solid #003C7A;
              background-color: transparent;
              color: #003C7A; } }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:first-child,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:first-child {
            border-radius: 8px 0px 0px 8px; }
            @media only screen and (max-width: 767.98px) {
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:first-child,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:first-child {
                border-radius: 16px !important; } }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active::before,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active::before {
            content: "";
            position: absolute;
            height: 40px;
            width: 40px;
            background: #96afca;
            top: 50%;
            right: -20px;
            transform: rotate(45deg);
            margin-top: -20px;
            border-radius: 0px 10px 0px 0px; }
            @media only screen and (max-width: 767.98px) {
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active::before,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active::before {
                position: static; } }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:last-child,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:last-child {
            border-radius: 0px 8px 8px 0px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:last-child::before,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:last-child::before {
              position: static; }
            @media only screen and (max-width: 767.98px) {
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:last-child,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active:last-child {
                border-radius: 16px !important;
                border: 1px solid #003C7A;
                background-color: transparent;
                color: #003C7A; } }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-times span,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-times span {
        cursor: pointer; }
    .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery,
    .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery {
      display: flex;
      padding: 0px 24px;
      align-items: flex-start;
      align-content: flex-start;
      gap: 24px;
      align-self: stretch;
      flex-wrap: wrap;
      justify-content: space-between; }
      @media only screen and (max-width: 767.98px) {
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery {
          display: flow-root;
          max-height: 360px;
          overflow-y: auto; } }
      @media only screen and (max-width: 575.98px) {
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery {
          max-height: 280px; } }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content {
        display: none;
        width: calc(62% - 24px); }
        @media only screen and (max-width: 767.98px) {
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content {
            width: calc(100% - 0px); } }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content p,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content p {
          color: #666D74;
          font-family: inherit;
          font-size: 16px !important;
          font-style: normal !important;
          font-weight: 400 !important;
          line-height: 24px !important;
          margin-top: 0px;
          margin-bottom: 24px; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra,
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller {
          height: 230px;
          overflow-y: auto;
          scrollbar-width: thin;
          scrollbar-color: #aaa #eee;
          margin-bottom: 20px;
          padding-right: 10px; }
          @media only screen and (max-width: 767.98px) {
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller {
              padding-right: 0px;
              height: auto; } }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra scrollbar,
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller scrollbar,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra scrollbar,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller scrollbar {
            width: 5px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra scrollbar-thumb,
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller scrollbar-thumb,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra scrollbar-thumb,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller scrollbar-thumb {
            background-color: #aaa;
            border-radius: 4px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label,
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label {
            display: flex;
            padding-bottom: 15px;
            align-items: baseline; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box {
              position: relative;
              height: 13px;
              width: 20px;
              margin-right: 10px; }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box input,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box input,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box input,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box input {
                margin-right: 10px;
                display: none; }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box .checkmark,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box .checkmark,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box .checkmark,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box .checkmark {
                position: absolute;
                top: 0px;
                left: 0px;
                background-color: #FCFDFF;
                border-radius: 5px;
                border: 1px solid #666D74;
                cursor: pointer; }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box .checkmark::after,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box .checkmark::after,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box .checkmark::after,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box .checkmark::after {
                  left: 4px;
                  top: 1px;
                  width: 3px;
                  height: 7px;
                  border: solid #003C7A;
                  border-width: 0 3px 3px 0;
                  box-sizing: unset;
                  -webkit-transform: rotate(45deg);
                  -ms-transform: rotate(45deg);
                  transform: rotate(45deg); }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark {
                border: 1px solid #003C7A; }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box .checkmark:after,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box .checkmark:after,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box .checkmark:after,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box .checkmark:after {
                content: "";
                position: absolute;
                display: none; }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark:after,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark:after,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark:after,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-check-box input:checked ~ .checkmark:after {
                display: block; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content {
              padding-left: 5px; }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content h5,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content h5,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content h5,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content h5 {
                color: #666D74;
                font-family: inherit;
                font-size: 16px !important;
                font-style: normal;
                font-weight: 500 !important;
                line-height: 20px !important;
                margin: 0; }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content h5 span,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content h5 span,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content h5 span,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content h5 span {
                  font-weight: 700 !important; }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content p,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content p,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra label .tf-extra-content p,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra label .tf-extra-content p {
                color: #666D74;
                font-family: inherit;
                font-size: 16px !important;
                font-style: normal !important;
                font-weight: 400 !important;
                line-height: 20px !important;
                margin: 0 !important; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .quantity-active,
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .quantity-active,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .quantity-active,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .quantity-active {
            display: block !important; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection,
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection {
            width: 70%;
            display: none;
            margin-left: 23px;
            margin-bottom: 25px;
            margin-top: -5px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-label,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-label,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-label,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-label {
              min-width: 95px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-fields,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-fields,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-fields,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-fields {
              display: flex;
              align-items: center;
              padding: 15px !important; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-select,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-select,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-select,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-select {
              justify-content: flex-end; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-dec, .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-inc,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-dec,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-inc,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-dec,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-inc,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-dec,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-inc {
              padding: 10px;
              user-select: none;
              height: auto;
              border: 1.2px solid #003162;
              margin: 0px 0px;
              text-align: center;
              cursor: pointer;
              border-radius: 5px;
              background: #fff;
              color: #003162;
              display: inline-flex;
              align-items: center;
              justify-content: center;
              font-weight: 700;
              line-height: 10px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection input[type=number],
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection input[type=number],
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection input[type=number],
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection input[type=number] {
              width: 25% !important;
              padding: 0px !important;
              margin: 0px !important;
              border: 0px !important;
              box-shadow: none;
              background: rgba(0, 0, 0, 0) !important;
              text-align: center;
              font-size: 16px;
              font-weight: 600;
              color: #686e7a !important; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-outer-spin-button,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-inner-spin-button,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-outer-spin-button,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-inner-spin-button,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-outer-spin-button,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-inner-spin-button,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-outer-spin-button,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-extra .tf_quantity-acrselection input::-webkit-inner-spin-button {
              -webkit-appearance: none;
              margin: 0; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller,
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller {
            padding-bottom: 16px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller h4,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller h4,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller h4,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller h4 {
              color: #333D46;
              font-family: inherit;
              font-size: 16px !important;
              font-style: normal !important;
              font-weight: 500 !important;
              line-height: 20px !important; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info {
              display: grid;
              grid-template-columns: repeat(3, 1fr);
              gap: 10px; }
              @media only screen and (max-width: 575.98px) {
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info {
                  grid-template-columns: repeat(1, 1fr); } }
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info,
              .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info,
              .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info {
                width: 100%; }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info label,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info label,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info label,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info label {
                  color: #A4A4A4;
                  font-family: inherit;
                  font-size: 14px;
                  font-style: normal;
                  font-weight: 500;
                  line-height: 20px;
                  /* 142.857% */ }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="text"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="email"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info select,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="text"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="email"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info select,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="text"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="email"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info select,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="text"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="email"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info select {
                  border-radius: 4px;
                  border: 0.5px solid #666D74;
                  background: #FCFDFF;
                  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
                  height: 32px;
                  width: 100%; }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="date"] {
                  text-transform: uppercase;
                  font-size: 13px; }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="checkbox"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="radio"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="checkbox"],
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="radio"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="checkbox"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="radio"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="checkbox"],
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info input[type="radio"] {
                  margin: 0; }
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info .error-text.error-visible,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info .error-text.error-visible,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .traveller-info .traveller-single-info .error-text.error-visible,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .traveller-info .traveller-single-info .error-text.error-visible {
                  color: red;
                  font-size: 13px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .billing-details,
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .billing-details,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .billing-details,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .billing-details {
              grid-template-columns: repeat(2, 1fr); }
              @media only screen and (max-width: 575.98px) {
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .billing-details,
                .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .billing-details,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-extra .tf-single-tour-traveller .billing-details,
                .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .tf-booking-content-traveller .tf-single-tour-traveller .billing-details {
                  grid-template-columns: repeat(1, 1fr); } }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content.show,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content.show {
        display: block;
        overflow: hidden; }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery {
        width: calc(38% - 24px); }
        @media only screen and (max-width: 767.98px) {
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery {
            width: calc(100% - 0px); } }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-fixed-summery h5,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-fixed-summery h5 {
          color: #666D74;
          font-family: inherit;
          font-size: 16px !important;
          font-style: normal !important;
          font-weight: 500 !important;
          line-height: 20px !important;
          margin-bottom: 16px; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-fixed-summery h4,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-fixed-summery h4 {
          color: #333D46;
          font-family: inherit;
          font-size: 20px !important;
          font-style: normal !important;
          font-weight: 500 !important;
          line-height: 30px !important;
          letter-spacing: -0.4px;
          margin-bottom: 15px; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info {
          max-height: 230px;
          overflow-y: auto;
          scrollbar-width: thin;
          scrollbar-color: #aaa #eee; }
          @media only screen and (max-width: 767.98px) {
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info {
              padding-right: 0px;
              height: auto; } }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info scrollbar,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info scrollbar {
            width: 5px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info scrollbar-thumb,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info scrollbar-thumb {
            background-color: #aaa;
            border-radius: 4px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info h6,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info h6 {
            color: #666D74;
            font-family: inherit;
            font-size: 16px !important;
            font-style: normal !important;
            font-weight: 400 !important;
            line-height: 20px !important;
            margin-bottom: 16px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table {
            border: 0px solid; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table thead tr th,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table thead tr th {
              color: #666D74;
              font-family: inherit;
              font-size: 14px;
              font-style: normal;
              font-weight: 600;
              line-height: 28px;
              border: 0px solid;
              padding: 0px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table tbody tr td,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table tbody tr td {
              color: #666D74;
              font-family: inherit;
              font-size: 14px;
              font-style: normal;
              font-weight: 400;
              line-height: 26px;
              border: 0px solid;
              padding: 0px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table tfoot tr th,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-summery .tf-booking-traveller-info table tfoot tr th {
              color: #333D46;
              font-family: inherit;
              font-size: 16px;
              font-style: normal;
              font-weight: 700;
              line-height: 20px;
              /* 125% */
              padding-top: 15px;
              margin-top: 15px;
              border: 0px solid;
              border-top: .3px solid #CCCED1;
              padding-left: 0px;
              padding-right: 0px; }
    .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination,
    .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination {
      padding: 0 24px; }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-tax-notice,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-tax-notice {
        padding-bottom: 16px; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-tax-notice span,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-tax-notice span {
          font-size: 16px; }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher {
        padding-bottom: 16px;
        display: flex;
        align-items: center; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher h4,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher h4 {
          margin: 0;
          display: inline-block;
          color: #333D46;
          font-family: inherit;
          font-size: 16px !important;
          font-style: normal !important;
          font-weight: 500 !important;
          line-height: 24px !important; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box {
          top: 11px;
          display: flex;
          padding-left: 10px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn {
            width: 40px;
            text-align: center;
            position: relative; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn i,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn i {
              padding: 0px !important;
              font-weight: 400 !important; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn .tf-tooltip,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn .tf-tooltip {
              padding: 10px 10px;
              color: #FFFFFF;
              background-color: #333333;
              font-weight: normal;
              font-size: 13px;
              border-radius: 4px;
              position: absolute;
              z-index: 99999999;
              box-sizing: border-box;
              border: 1px solid #333333;
              box-shadow: 0 1px 8px transparent;
              visibility: hidden;
              transition: .3s all ease;
              display: none;
              text-align: center;
              line-height: 17px;
              width: 220px;
              position: absolute;
              left: 50%;
              margin-left: -110px;
              bottom: 30px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn .tooltip-title-box,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-info-btn .tooltip-title-box {
              margin-top: 3px; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tooltip-title-box:hover + .tf-tooltip,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tooltip-title-box:hover + .tf-tooltip {
          visibility: visible;
          display: block; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-tooltip::before,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .tooltip-box .tf-tooltip::before {
          content: "";
          height: 12px;
          width: 12px;
          background-color: #333333;
          position: absolute;
          top: 95%;
          left: 50%;
          margin-left: -6px;
          transform: rotate(45deg); }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch {
          position: relative;
          display: inline-block;
          width: 48px;
          height: 20px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch input,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch input {
            opacity: 0;
            width: 0;
            height: 0; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher::before,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher::before {
              position: absolute;
              content: "";
              height: 18px;
              width: 18px;
              left: 2px;
              bottom: 1px;
              background-color: #fff;
              -webkit-transition: .4s;
              transition: .4s; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher.round,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher.round {
            border-radius: 20px; }
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher.round::before,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher .switch .switcher.round::before {
              border-radius: 50%; }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher input:checked + .switcher,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher input:checked + .switcher {
        background-color: #002C66; }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher input:checked + .switcher::before,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-diposit-switcher input:checked + .switcher::before {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
        transform: translateX(26px); }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination {
        padding: 0px 0px 24px 0px;
        align-items: end;
        display: none; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a {
          text-decoration: none;
          display: inline-block; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a.tf-back-control,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a.tf-back-control {
          color: #003C7A;
          font-family: inherit;
          font-size: 14px;
          font-style: normal;
          font-weight: 700;
          line-height: 20px;
          margin-right: 24px; }
          .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a.tf-back-control i,
          .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a.tf-back-control i {
            margin-right: 10px; }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination .tf-next-control,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination .tf-next-control {
          border-radius: 4px;
          background: #003C7A;
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          padding: 10px 0px;
          color: #FCFDFF;
          font-family: inherit;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 20px;
          width: 300px;
          text-align: center; }
          @media only screen and (max-width: 575.98px) {
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination .tf-next-control,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination .tf-next-control {
              width: 100%; } }
        .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination button,
        .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination button {
          border-radius: 4px;
          background: #003C7A;
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          padding: 10px 0px;
          color: #FCFDFF;
          font-family: inherit;
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 20px;
          width: 300px;
          text-align: center;
          border: 0px solid;
          cursor: pointer; }
          @media only screen and (max-width: 575.98px) {
            .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination button,
            .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination button {
              width: 100%; } }
      .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination.show,
      .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination.show {
        display: flex; }

.tf-withoutpayment-booking.show,
.tf-withoutpayment-booking-confirm.show {
  display: flex; }

.check-in-time-div {
  display: none; }

.tours-grid .tf_posts_navigation {
  grid-column: span 2; }

@media only screen and (max-width: 1200px) {
  .tf-tour-booking-wrap {
    width: 95%; }
    .tf-tour-booking-wrap form.tf_tours_booking {
      flex-wrap: wrap; } }

@media only screen and (max-width: 1025px) {
  .tf-tour-booking-wrap {
    font-size: 14px; }
  .tf_form-inner input[type="text"] {
    font-size: 14px; }
  .tf_form-inner select {
    font-size: 14px; }
  .tf_button {
    font-size: 14px; }
  .flatpickr-calendar {
    font-size: 14px; }
  .tf-square-block-content-wrapper {
    flex-wrap: wrap;
    justify-content: center; }
  .tf-single-square-block {
    width: 300px; } }

@media only screen and (max-width: 980px) {
  .tf-faq-content-wrapper {
    display: grid; }
  .tf-slider-desc h3 {
    font-size: 18px; }
  .tf-suggestion-rating {
    font-size: 14px; } }

@media only screen and (min-width: 768px) and (max-width: 970px) {
  .tf-tours-booking-btn {
    width: 98%;
    margin: auto; }
  .tf-tour-booking-wrap .btn-styled {
    width: 98%;
    margin: auto; }
  .tf-slider-item {
    border: 7px solid #fff;
    height: 300px !important;
    padding: 15px;
    margin: 0 7px 15px !important; } }

@media only screen and (max-width: 767px) {
  .tf-highlight-item {
    display: grid; }
  .tf-travel-desc {
    display: grid; }
  .tf-accordion-content img {
    max-width: 100%; }
  .tf-travel-time {
    height: 60px; }
    .tf-travel-time span {
      font-size: 15px;
      text-align: center; }
  .tf-accordion-head h4 {
    font-size: 15px;
    padding-left: 20px; }
  .tf-tour-booking-wrap {
    max-width: 450px; }
    .tf-tour-booking-wrap .tf_form-inner input[type="text"] {
      max-width: 100%; }
    .tf-tour-booking-wrap .tf_selectperson-wrap {
      display: flex;
      justify-content: center;
      width: 95%;
      padding: 10px !important; }
    .tf-tour-booking-wrap .btn-styled {
      width: 98%;
      margin: auto; }
  .tf_form-inner select {
    max-width: 100%; }
  .tf-faq-sec-title {
    margin-bottom: 20px; }
  .tf-inc-exc-content {
    gap: 15px; }
  .tf-square-block-content {
    display: grid;
    gap: 2%;
    grid-template-columns: 48% 48%; }
  .tf-single-square-block {
    width: auto; }
  .tf-tours-booking-btn {
    width: 98%;
    margin: auto; }
  .tf-slider-item {
    border: 7px solid #fff;
    height: 250px !important;
    padding: 15px;
    margin: 0 7px 15px !important; }
  .tf-include-section {
    padding: 15px 20px 20px; }
  .tf-exclude-section {
    padding: 15px 20px 20px; }
  .tf-tour-booking-wrap.tf-tours-fixed {
    max-width: 100%; }
  .tf-ask-question {
    max-width: 450px;
    margin: auto; } }

@media only screen and (max-width: 650px) {
  .tf-title-wrap {
    display: block; }
  .tf-title-area.tf-tour-title {
    text-align: center; }
  .tf-single-tour-pricing {
    margin: 20px auto 0; } }

@media only screen and (max-width: 480px) {
  .tf-slider-desc h3 {
    font-size: 16px; }
  .tf-map-content-wrapper iframe {
    height: 320px; }
  .tf-suggestion-rating {
    font-size: 12px; }
  #tour-extra {
    padding: 10px; }
  .tf-single-square-block {
    padding: 30px 20px; }
  .tf-inc-exc-content {
    display: block; }
  .tf-include-section {
    margin-bottom: 15px; }
  #tf-accordion-wrapper {
    margin-bottom: 15px; }
  #tour-deposit .tf_button_group {
    display: block; }
    #tour-deposit .tf_button_group button:first-child {
      margin-bottom: 10px; } }

.tf-template-3.tf-apartment-single .tf-informations-secations .slick-dots {
  bottom: -32px; }
  .tf-template-3.tf-apartment-single .tf-informations-secations .slick-dots li {
    width: 16px;
    height: 16px; }
    .tf-template-3.tf-apartment-single .tf-informations-secations .slick-dots li button {
      background: transparent;
      border-radius: 30px;
      border: 1px solid #99948d;
      height: 12px;
      width: 12px; }
      .tf-template-3.tf-apartment-single .tf-informations-secations .slick-dots li button:before {
        opacity: 0;
        font-size: 0;
        width: 6px;
        height: 6px;
        background: #b58e53;
        top: 50%;
        left: 50%;
        border-radius: 100%;
        transform: translate(-50%, -50%); }
    .tf-template-3.tf-apartment-single .tf-informations-secations .slick-dots li.slick-active button {
      background: transparent;
      border: 1px solid #b58e53;
      height: 16px;
      width: 16px; }
      .tf-template-3.tf-apartment-single .tf-informations-secations .slick-dots li.slick-active button:before {
        opacity: 1; }

.tf-template-3.tf-apartment-single .tf-apartment-rooms-section {
  margin-left: 32px;
  margin-right: 32px; }
  .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details {
    border-radius: 4px;
    background: #FCF4E8;
    padding: 24px 24px 28px 24px; }
    .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details h4 {
      color: #595349;
      font-size: 20px !important;
      font-style: normal !important;
      font-weight: 700 !important;
      line-height: 130%;
      /* 26px */
      margin: 0 0 16px 0; }
    .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-track {
      margin: 0 !important; }
      .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-track .slick-slide {
        margin: 0px 5px !important; }
    .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .tf-apartment-room-item .tf-apartment-room-item-thumb a {
      text-decoration: none; }
      .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .tf-apartment-room-item .tf-apartment-room-item-thumb a img {
        height: 200px;
        border-radius: 4px;
        object-fit: cover; }
    .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .tf-apartment-room-item .tf-apartment-room-item-content {
      margin-top: 16px; }
      .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .tf-apartment-room-item .tf-apartment-room-item-content a {
        text-decoration: none; }
        .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .tf-apartment-room-item .tf-apartment-room-item-content a span {
          color: #595349;
          font-size: 16px !important;
          font-style: normal !important;
          font-weight: 600 !important;
          line-height: 130%;
          /* 20.8px */ }
      .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .tf-apartment-room-item .tf-apartment-room-item-content p {
        margin: 8px 0 0 0;
        color: #99948D;
        font-size: 16px !important;
        font-style: normal !important;
        font-weight: 400 !important;
        line-height: 130%;
        /* 20.8px */ }
    .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-dots {
      bottom: -36px; }
      .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-dots li {
        width: 16px;
        height: 16px; }
        .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-dots li button {
          background: transparent;
          border-radius: 30px;
          border: 1px solid #99948d;
          height: 12px;
          width: 12px; }
          .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-dots li button:before {
            opacity: 0;
            font-size: 0;
            width: 6px;
            height: 6px;
            background: #b58e53;
            top: 50%;
            left: 50%;
            border-radius: 100%;
            transform: translate(-50%, -50%); }
        .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-dots li.slick-active button {
          background: transparent;
          border: 1px solid #b58e53;
          height: 16px;
          width: 16px; }
          .tf-template-3.tf-apartment-single .tf-apartment-rooms-section .tf-apartment-room-details .slick-dots li.slick-active button:before {
            opacity: 1; }

@media only screen and (max-width: 767.98px) {
  .tf-template-3.tf-apartment-single .tf-aprtment-rules-section {
    padding-left: 16px;
    padding-right: 16px; } }

.tf-template-3.tf-apartment-single .tf-aprtment-rules-section h2 {
  color: #595349;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120%;
  margin-bottom: 24px !important; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3.tf-apartment-single .tf-aprtment-rules-section h2 {
      font-size: 24px !important; } }

.tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc {
  display: flex;
  gap: 26px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc {
      flex-wrap: wrap; } }
  .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules {
    width: 50%; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules {
        width: 100%; } }
    .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      gap: 16px;
      flex-wrap: wrap; }
      .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules ul li {
        display: flex;
        gap: 8px; }
        .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules ul li .rules-icon {
          width: 16px; }
        .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules ul li .rules-content span {
          color: #595349;
          font-size: 16px !important;
          font-style: normal !important;
          font-weight: 600 !important;
          line-height: 130% !important;
          /* 20.8px */
          margin: 0 0 8px 0px;
          display: block; }
        .tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc .aprtment-single-rules ul li .rules-content p {
          color: #99948D;
          font-size: 16px !important;
          font-style: normal !important;
          font-weight: 400 !important;
          line-height: 130% !important;
          /* 20.8px */
          margin: 0; }

.tf-template-3.tf-apartment-single .tf-aprtment-rules-section .aprtment-inc-exc.tf-inc-exc-full .aprtment-single-rules {
  width: 100%; }

@media only screen and (max-width: 767.98px) {
  .tf-template-3.tf-apartment-single .tf-place-offer-section {
    padding-left: 16px;
    padding-right: 16px; } }

.tf-template-3.tf-apartment-single .tf-place-offer-section h2 {
  color: #595349;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120%;
  margin-bottom: 24px !important; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3.tf-apartment-single .tf-place-offer-section h2 {
      font-size: 24px !important; } }

.tf-template-3.tf-apartment-single .tf-place-offer-section .place-offer-items {
  display: grid;
  gap: 8px 16px;
  grid-template-columns: 1fr 1fr 1fr 1fr; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3.tf-apartment-single .tf-place-offer-section .place-offer-items {
      grid-template-columns: 1fr 1fr; } }
  .tf-template-3.tf-apartment-single .tf-place-offer-section .place-offer-items .tf-apt-amenity {
    display: flex;
    gap: 9px;
    align-items: center; }
    .tf-template-3.tf-apartment-single .tf-place-offer-section .place-offer-items .tf-apt-amenity .tf-apt-amenity-icon {
      line-height: 11px; }
      .tf-template-3.tf-apartment-single .tf-place-offer-section .place-offer-items .tf-apt-amenity .tf-apt-amenity-icon img {
        height: 16px !important;
        width: 16px !important; }
    .tf-template-3.tf-apartment-single .tf-place-offer-section .place-offer-items .tf-apt-amenity span {
      color: #99948D;
      font-size: 14px !important;
      font-style: normal;
      font-weight: 400 !important;
      line-height: 13px; }

.tf-template-3.tf-apartment-single #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates {
  flex-wrap: wrap;
  margin-bottom: 32px; }
  .tf-template-3.tf-apartment-single #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf_label-row {
    margin-top: 8px; }

.tf-apartment-title {
  padding-bottom: 40px; }
  .tf-apartment-title .tf-title-wrap {
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end; }
    @media only screen and (max-width: 767.98px) {
      .tf-apartment-title .tf-title-wrap {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column; } }
  .tf-apartment-title .tf-title-left-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 32px; }
    .tf-apartment-title .tf-title-left-bottom a {
      text-decoration: none; }
    .tf-apartment-title .tf-title-left-bottom .tf-single-rating {
      color: #607085;
      background-color: transparent;
      padding: 0;
      font-size: 12px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .tf-apartment-title .tf-title-left-bottom .tf-single-rating i {
        color: #ffbf00;
        font-size: 16px;
        margin-top: -3px; }
      .tf-apartment-title .tf-title-left-bottom .tf-single-rating span {
        font-size: 14px;
        font-weight: 500;
        color: #8997A9;
        margin: 0 4px; }
  .tf-apartment-title .tf-title-right {
    -webkit-flex: 0 0 350px;
    -ms-flex: 0 0 350px;
    flex: 0 0 350px;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 24px; }
    @media only screen and (max-width: 767.98px) {
      .tf-apartment-title .tf-title-right {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
        margin-top: 24px; } }
    .tf-apartment-title .tf-title-right a {
      text-decoration: none; }
    .tf-apartment-title .tf-title-right .tf-wishlist-button {
      font-size: 14px;
      cursor: pointer;
      line-height: 1;
      color: #8997A9;
      display: flex;
      align-items: center;
      gap: 8px; }
      .tf-apartment-title .tf-title-right .tf-wishlist-button i {
        font-size: 24px; }
    .tf-apartment-title .tf-title-right .tf-share {
      position: relative; }
      .tf-apartment-title .tf-title-right .tf-share a {
        line-height: 1;
        font-size: 14px;
        display: flex;
        align-items: center;
        outline: none;
        color: #8997A9;
        gap: 8px; }
      .tf-apartment-title .tf-title-right .tf-share .share-tour-content {
        display: none;
        position: absolute;
        min-width: 100%;
        top: 100%;
        transform: translateY(8px);
        z-index: 99999;
        left: auto;
        right: 0; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-content {
          margin: 0;
          background: #fff;
          border-radius: 4px;
          overflow: hidden;
          min-width: 200px;
          z-index: 100;
          box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.12), 0 2px 3px -1px rgba(0, 0, 0, 0.2); }
          .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-content li {
            display: inline-block; }
            .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-content li a i {
              color: #1D75E3;
              font-size: 17px; }
            .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-content li:nth-child(2) a i {
              color: #1D9BF0; }
            .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-content li:nth-child(3) a i {
              color: #0A66C2; }
            .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-content li:nth-child(4) a i {
              color: #CC0000; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-item-content {
          white-space: nowrap;
          display: flex;
          align-items: center;
          column-gap: 5px; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-item {
          border: 0;
          margin: 0;
          cursor: pointer;
          padding: 12px 16px;
          white-space: nowrap;
          text-decoration: none;
          color: #333;
          background-color: #fff;
          fill: #333;
          display: flex;
          align-items: center;
          font-weight: 400;
          font-size: 14px; }
          .tf-apartment-title .tf-title-right .tf-share .share-tour-content .tf-dropdown-item:hover {
            background-color: #f5f5f5; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content .share-center-copy-form {
          display: flex;
          align-items: center;
          padding: 12px 16px; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content .share-center-copy-label {
          white-space: nowrap; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content .share-center-copied-message {
          display: none; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content #share_link_button {
          white-space: nowrap;
          font-size: 13px;
          padding: 5px 12px; }
        .tf-apartment-title .tf-title-right .tf-share .share-tour-content input#share_link_input {
          width: auto !important;
          flex-grow: 1;
          margin: 0 8px;
          background-color: #e6e6e6;
          padding: 0;
          border: 2px solid rgba(118, 118, 118, 0.3); }
      .tf-apartment-title .tf-title-right .tf-share .share-center-copy-cta.copied .share-center-copied-message {
        display: inline-block;
        font-weight: bold; }
      .tf-apartment-title .tf-title-right .tf-share .share-center-copy-cta.copied .share-center-copy-message {
        display: none; }
  .tf-apartment-title h1 {
    color: #2A3343;
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 8px; }
  .tf-apartment-title .tf-map-link {
    color: #607085;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.2px; }
    .tf-apartment-title .tf-map-link .more-apartment {
      color: #607085;
      font-weight: 600; }

.tf-apartment {
  /* Rooms */ }
  .tf-apartment .btn-primary {
    color: #F8F9FB;
    text-align: center;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 500;
    line-height: 24px !important;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #2979FF;
    box-shadow: 0px 1px 1px 0px rgba(0, 60, 121, 0.16); }
  .tf-apartment .section-heading {
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 32px !important;
    margin: 0 0 16px 0;
    color: #2A3343; }
  .tf-apartment .tf-apt-hero-section {
    margin-bottom: 40px; }
  .tf-apartment .tf-apt-hero-wrapper {
    position: relative; }
    .tf-apartment .tf-apt-hero-wrapper > img {
      width: 100%;
      border-radius: 8px;
      height: auto; }
    .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      gap: 24px; }
      @media only screen and (max-width: 575.98px) {
        .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery {
          gap: 16px; } }
      .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery img {
        object-fit: cover;
        width: 100%;
        border-radius: 8px;
        height: auto; }
      .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-left {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; }
        .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-left.has-right {
          -webkit-flex: 0 0 calc(70% - 12px);
          -ms-flex: 0 0 calc(70% - 12px);
          flex: 0 0 calc(70% - 12px); }
          @media only screen and (max-width: 991.98px) {
            .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-left.has-right {
              -webkit-flex: 0 0 calc(50% - 12px);
              -ms-flex: 0 0 calc(50% - 12px);
              flex: 0 0 calc(50% - 12px); } }
        .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-left .hero-first-image {
          height: 424px; }
          @media only screen and (max-width: 575.98px) {
            .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-left .hero-first-image {
              height: 300px; } }
      .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right {
        -webkit-flex: 0 0 calc(30% - 12px);
        -ms-flex: 0 0 calc(30% - 12px);
        flex: 0 0 calc(30% - 12px);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 24px; }
        @media only screen and (max-width: 991.98px) {
          .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right {
            -webkit-flex: 0 0 calc(50% - 12px);
            -ms-flex: 0 0 calc(50% - 12px);
            flex: 0 0 calc(50% - 12px); } }
        @media only screen and (max-width: 575.98px) {
          .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right {
            gap: 16px; } }
        .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right .hero-second-image,
        .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right .hero-third-image {
          height: 200px; }
          @media only screen and (max-width: 575.98px) {
            .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right .hero-second-image,
            .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right .hero-third-image {
              height: 142px; } }
        .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right .has-more {
          position: relative; }
          .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .tf-apt-hero-right .has-more::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: #000;
            opacity: .5;
            border-radius: 8px; }
      .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .hero-first-image,
      .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .hero-second-image,
      .tf-apartment .tf-apt-hero-wrapper .tf-apt-hero-gallery .hero-third-image {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex; }
    .tf-apartment .tf-apt-hero-wrapper .gallery-all-photos {
      position: absolute;
      right: 15px;
      bottom: 15px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      z-index: 2; }
      .tf-apartment .tf-apt-hero-wrapper .gallery-all-photos a.tf_button {
        max-width: 130px;
        border-radius: 4px !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        background: rgba(255, 255, 255, 0.6) !important; }
  .tf-apartment .tf-apartment-content-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px; }
    @media only screen and (max-width: 991.98px) {
      .tf-apartment .tf-apartment-content-wrapper {
        flex-direction: column-reverse; } }
  .tf-apartment .tf-apartment-left {
    width: calc(66.66% - 32px); }
    @media only screen and (max-width: 991.98px) {
      .tf-apartment .tf-apartment-left {
        width: 100%; } }
  .tf-apartment .tf-apartment-right {
    width: 33.33%; }
    @media only screen and (max-width: 991.98px) {
      .tf-apartment .tf-apartment-right {
        width: 100%; } }
  .tf-apartment .tf-apt-highlights {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px; }
    .tf-apartment .tf-apt-highlights.slick-dotted {
      padding-bottom: 70px; }
    .tf-apartment .tf-apt-highlights .slick-dots {
      bottom: 24px; }
      .tf-apartment .tf-apt-highlights .slick-dots li {
        width: 16px;
        height: 16px; }
        .tf-apartment .tf-apt-highlights .slick-dots li button {
          background: #ddd;
          border-radius: 30px;
          border: 1px solid #ddd;
          height: 16px;
          width: 16px; }
          .tf-apartment .tf-apt-highlights .slick-dots li button:before {
            opacity: 0;
            font-size: 0;
            width: 6px;
            height: 6px;
            background: #003162;
            top: 50%;
            left: 50%;
            border-radius: 100%;
            transform: translate(-50%, -50%); }
        .tf-apartment .tf-apt-highlights .slick-dots li.slick-active button {
          background: transparent;
          border: 1px solid #003162; }
          .tf-apartment .tf-apt-highlights .slick-dots li.slick-active button:before {
            opacity: 1; }
    .tf-apartment .tf-apt-highlights .tf-apt-highlight {
      -webkit-flex: 0 0 calc(100% / 3 - 11px);
      -ms-flex: 0 0 calc(100% / 3 - 11px);
      flex: 0 0 calc(100% / 3 - 11px);
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 16px;
      min-height: 72px;
      box-sizing: border-box; }
      @media only screen and (max-width: 575.98px) {
        .tf-apartment .tf-apt-highlights .tf-apt-highlight {
          -webkit-flex: 0 0 100%;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%; } }
      .tf-apartment .tf-apt-highlights .tf-apt-highlight .tf-apt-highlight-top {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 16px;
        margin-bottom: 8px; }
      .tf-apartment .tf-apt-highlights .tf-apt-highlight .tf-apt-highlight-icon {
        -webkit-flex: 0 0 25px;
        -ms-flex: 0 0 25px;
        flex: 0 0 25px; }
        .tf-apartment .tf-apt-highlights .tf-apt-highlight .tf-apt-highlight-icon i {
          font-size: 24px;
          line-height: 1;
          color: #607085; }
      .tf-apartment .tf-apt-highlights .tf-apt-highlight h4 {
        color: #607085;
        margin: 0;
        font-size: 20px !important;
        font-weight: 500 !important; }
      .tf-apartment .tf-apt-highlights .tf-apt-highlight p {
        color: #828C99;
        font-size: 14px !important;
        line-height: 22px !important;
        font-weight: 400;
        margin: 0; }
  .tf-apartment .tf-apartment-rooms {
    margin-bottom: 80px; }
    .tf-apartment .tf-apartment-rooms .slick-list {
      margin: 0 -12px !important; }
    .tf-apartment .tf-apartment-rooms .slick-track {
      margin: 0 !important; }
    .tf-apartment .tf-apartment-rooms .slick-arrow {
      display: inline-block;
      z-index: 999;
      right: 0;
      top: 80px;
      height: 40px;
      width: 40px; }
      .tf-apartment .tf-apartment-rooms .slick-arrow svg {
        padding: 8px;
        border-radius: 50%;
        border: 1px solid #E1E5EA;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: 0px 5px 10px 0px rgba(0, 44, 102, 0.2); }
    .tf-apartment .tf-apartment-rooms .slick-prev {
      left: 0; }
    .tf-apartment .tf-apartment-rooms .slick-arrow::before {
      display: none; }
    .tf-apartment .tf-apartment-rooms .tf-apartment-default-design-room-slider::after {
      content: '';
      position: absolute;
      top: 0;
      right: -1px;
      width: 100%;
      height: 100%;
      background: linear-gradient(270deg, #FFF -0.06%, rgba(255, 255, 255, 0) 15.54%);
      border-radius: 8px; }
    .tf-apartment .tf-apartment-rooms .slick-dots {
      bottom: 0; }
      .tf-apartment .tf-apartment-rooms .slick-dots li {
        width: 16px;
        height: 16px; }
        .tf-apartment .tf-apartment-rooms .slick-dots li button {
          background: #ddd;
          border-radius: 30px;
          border: 1px solid #ddd;
          height: 16px;
          width: 16px; }
          .tf-apartment .tf-apartment-rooms .slick-dots li button:before {
            opacity: 0;
            font-size: 0;
            width: 6px;
            height: 6px;
            background: #003162;
            top: 50%;
            left: 50%;
            border-radius: 100%;
            transform: translate(-50%, -50%); }
        .tf-apartment .tf-apartment-rooms .slick-dots li.slick-active button {
          background: transparent;
          border: 1px solid #003162; }
          .tf-apartment .tf-apartment-rooms .slick-dots li.slick-active button:before {
            opacity: 1; }
    .tf-apartment .tf-apartment-rooms .tf-apartment-room-item {
      margin: 0 12px !important; }
      .tf-apartment .tf-apartment-rooms .tf-apartment-room-item .tf-apartment-room-item-thumb {
        overflow: hidden;
        border-radius: 8px;
        margin-bottom: 8px; }
        .tf-apartment .tf-apartment-rooms .tf-apartment-room-item .tf-apartment-room-item-thumb img {
          height: 170px;
          object-fit: cover;
          width: 100%;
          transition: all 0.3s ease-in-out; }
        .tf-apartment .tf-apartment-rooms .tf-apartment-room-item .tf-apartment-room-item-thumb:hover img {
          transform: scale(1.1); }
      .tf-apartment .tf-apartment-rooms .tf-apartment-room-item .tf-apartment-room-item-content a {
        text-decoration: none; }
      .tf-apartment .tf-apartment-rooms .tf-apartment-room-item .tf-apartment-room-item-content h3 {
        font-style: normal;
        font-weight: 400 !important;
        line-height: 28px;
        letter-spacing: 0.2px;
        font-size: 18px !important;
        color: #2A3343;
        margin: 0; }
      .tf-apartment .tf-apartment-rooms .tf-apartment-room-item .tf-apartment-room-item-content p {
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.2px;
        font-size: 14px !important;
        color: #8997A9;
        margin: 0; }
  .tf-apartment .tf-apartment-amenities-section {
    margin-bottom: 80px; }
    .tf-apartment .tf-apartment-amenities-section .tf-apartment-amenities-inner {
      border-radius: 8px;
      border: 1px solid #F0F2F4;
      background: var(--Slate-0, #F8F9FB);
      padding: 24px 40px; }
    .tf-apartment .tf-apartment-amenities-section .tf-apartment-amenities {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: 16px; }
      .tf-apartment .tf-apartment-amenities-section .tf-apartment-amenities .tf-apt-amenity {
        -webkit-flex: 0 0 calc(100% / 2 - 11px);
        -ms-flex: 0 0 calc(100% / 2 - 11px);
        flex: 0 0 calc(100% / 2 - 11px);
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        gap: 16px;
        margin-bottom: 5px;
        color: #607085; }
        .tf-apartment .tf-apartment-amenities-section .tf-apartment-amenities .tf-apt-amenity .tf-apt-amenity-icon {
          display: -webkit-box;
          display: -moz-box;
          display: -ms-flexbox;
          display: -webkit-flex;
          display: flex;
          -webkit-align-items: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-flex: 0 0 24px;
          -ms-flex: 0 0 24px;
          flex: 0 0 24px;
          height: 24px; }
          .tf-apartment .tf-apartment-amenities-section .tf-apartment-amenities .tf-apt-amenity .tf-apt-amenity-icon i {
            font-size: 24px;
            color: #607085; }
    .tf-apartment .tf-apartment-amenities-section .tf-apartment-amenities-more .tf-modal-btn {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-justify-content: flex-end;
      justify-content: flex-end;
      gap: 4px;
      font-size: 14px;
      font-weight: 500;
      color: #2A3343;
      cursor: pointer;
      text-decoration: none; }
  .tf-apartment #tf-amenities-modal h2.section-heading {
    margin-bottom: 24px; }
  .tf-apartment .tf-apartment-amenity-cat {
    border-bottom: 1px solid #ddd;
    margin-bottom: 24px; }
    .tf-apartment .tf-apartment-amenity-cat:last-child {
      border-bottom: none;
      margin-bottom: 0; }
    .tf-apartment .tf-apartment-amenity-cat h3 {
      font-size: 20px !important;
      color: #363e4a;
      margin-bottom: 16px; }
  .tf-apartment .apt-description {
    margin-bottom: 48px; }
    .tf-apartment .apt-description p {
      margin: 0 0 20px 0;
      color: #607085;
      font-size: 14px;
      font-weight: 400;
      line-height: 24px !important;
      letter-spacing: 0.2px; }

#tf_apt_room_details_qv .room-detail-icon .icon-text {
  margin-top: 5px; }

.tf-map-link a.more-hotel {
  font-weight: bold; }

.tf-map-link p {
  margin-bottom: 0;
  font-size: 16px; }

.show-on-map .btn-styled {
  text-transform: uppercase;
  font-weight: bold; }

.host-details {
  background: #F5F8FF;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid #ebf2ff;
  margin-bottom: 25px; }
  .host-details .host-top {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 11px;
    align-items: center;
    margin-bottom: 24px; }
    .host-details .host-top img {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 40px;
      border: 1px solid #f0f2f4; }
  .host-details .host-meta {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    .host-details .host-meta h4 {
      font-size: 24px;
      font-style: normal;
      font-weight: 600;
      line-height: 1.33;
      color: #607085;
      margin: 0; }
    .host-details .host-meta .tf-apartment-joined-text {
      font-size: 12px;
      font-style: normal;
      font-weight: 400;
      line-height: 16px;
      letter-spacing: 0.2px;
      margin: 0;
      color: #8997A9;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex; }
      .host-details .host-meta .tf-apartment-joined-text span {
        letter-spacing: 0.2px;
        padding-left: 8px;
        font-weight: normal; }
    .host-details .host-meta i {
      color: #FFC314; }
    .host-details .host-meta span {
      font-weight: bold; }
  .host-details .host-bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    gap: 8px; }
    .host-details .host-bottom h5 {
      font-size: 18px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.33;
      letter-spacing: 0.5px;
      color: #607085;
      margin: 0; }
    .host-details .host-bottom p {
      color: #8997A9;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 0.2px;
      margin: 0 !important; }
    .host-details .host-bottom ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .host-details .host-bottom ul li {
        padding: 8px 0 !important;
        color: #8997A9; }
        .host-details .host-bottom ul li span {
          text-align: right;
          float: right;
          font-weight: 500;
          font-size: 14px;
          line-height: 24px;
          letter-spacing: 0.5px;
          color: #607085; }
        .host-details .host-bottom ul li:last-child {
          margin-bottom: 0px; }
    .host-details .host-bottom .tf-apartment-contact-button {
      padding: 11px 24px;
      border-radius: 4px;
      background-color: #fff !important;
      color: #2979FF !important;
      border: 1px solid #2979FF;
      text-decoration: none; }
      .host-details .host-bottom .tf-apartment-contact-button i {
        padding-right: 8px; }
      .host-details .host-bottom .tf-apartment-contact-button:hover {
        background-color: #2979FF;
        color: #fff; }

#apartment-map {
  margin-bottom: 80px; }

.tf-map-content-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px; }
  .tf-map-content-wrapper.tf-map-content-full .tf-apartment-map {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }
  .tf-map-content-wrapper.tf-map-content-full .about-location {
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%; }
  .tf-map-content-wrapper .tf-apartment-map {
    -webkit-flex: 0 0 calc(50% - 12px);
    -ms-flex: 0 0 calc(50% - 12px);
    flex: 0 0 calc(50% - 12px); }
    @media only screen and (max-width: 767.98px) {
      .tf-map-content-wrapper .tf-apartment-map {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; } }
    .tf-map-content-wrapper .tf-apartment-map h3 {
      font-weight: 600;
      font-size: 24px;
      line-height: 32px;
      color: #363e4a;
      margin-bottom: 24px; }
    .tf-map-content-wrapper .tf-apartment-map #apartment-location {
      border-radius: 8px; }
    .tf-map-content-wrapper .tf-apartment-map iframe {
      border-radius: 8px; }
  .tf-map-content-wrapper .about-location {
    -webkit-flex: 0 0 calc(50% - 52px);
    -ms-flex: 0 0 calc(50% - 52px);
    flex: 0 0 calc(50% - 52px);
    padding-left: 40px; }
    @media only screen and (max-width: 767.98px) {
      .tf-map-content-wrapper .about-location {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding-left: 0; } }
    .tf-map-content-wrapper .about-location .surroundings_sec_title {
      font-weight: 600 !important;
      font-size: 24px !important;
      line-height: 32px !important;
      color: #2A3343;
      margin: 0 0 8px 0; }
    .tf-map-content-wrapper .about-location .surroundings_subtitle {
      color: #8997A9;
      font-size: 16px;
      margin: 0 0 30px 0;
      font-style: normal;
      font-weight: 400;
      line-height: 24px;
      letter-spacing: 0.2px; }
    .tf-map-content-wrapper .about-location .tf-apartment-surronding-criteria {
      margin-bottom: 30px; }
    .tf-map-content-wrapper .about-location .tf-apartment-surronding-criteria-label {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      font-size: 18px;
      font-weight: 500;
      color: #2A3343; }
      .tf-map-content-wrapper .about-location .tf-apartment-surronding-criteria-label i {
        margin-right: 8px;
        color: #607085; }
    .tf-map-content-wrapper .about-location .tf-apartment-surronding-places {
      margin: 0;
      padding: 0;
      list-style: none; }
      .tf-map-content-wrapper .about-location .tf-apartment-surronding-places li {
        padding: 8px 0 8px 32px;
        border-bottom: 1px solid #f0f2f4;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        color: #607085;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.2px; }

.tf-house-rules {
  margin-bottom: 80px; }
  .tf-house-rules .tf-house-rules-wrapper {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    padding: 24px;
    background-color: #f8f9fb;
    border: 1px solid #f0f2f4;
    border-radius: 8px; }
    .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules,
    .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules {
      list-style: none;
      -webkit-flex: 0 0 calc(50% - 15px);
      -ms-flex: 0 0 calc(50% - 15px);
      flex: 0 0 calc(50% - 15px);
      padding-left: 30px;
      margin: 0;
      box-sizing: border-box; }
      @media only screen and (max-width: 767.98px) {
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules {
          -webkit-flex: 0 0 100%;
          -ms-flex: 0 0 100%;
          flex: 0 0 100%; } }
      .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li,
      .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li {
        margin: 16px 0;
        position: relative; }
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li h6,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li h6 {
          margin: 0 0 5px 0;
          font-weight: 500;
          font-size: 18px !important;
          line-height: 24px;
          color: #2979FF; }
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li span,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li span {
          color: #607085;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px; }
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li::before,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li::before {
          content: '\f058';
          font-family: 'Font Awesome 5 Free';
          position: absolute;
          top: 0;
          left: -29px;
          font-size: 20px;
          line-height: 20px;
          color: #2979ff; }
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li::after,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li::after {
          content: '';
          position: absolute;
          left: -20px;
          top: 17px;
          width: 2px;
          height: 99%;
          background: #2979ff; }
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li:first-child,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li:first-child {
          margin-top: 0; }
        .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li:last-child,
        .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li:last-child {
          margin-bottom: 0; }
          .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li:last-child::after,
          .tf-house-rules .tf-house-rules-wrapper .tf-included-house-rules li:last-child::after {
            display: none; }
    .tf-house-rules .tf-house-rules-wrapper.tf-house-rules-full .tf-not-included-house-rules,
    .tf-house-rules .tf-house-rules-wrapper.tf-house-rules-full .tf-included-house-rules {
      -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; }
    .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li h6 {
      color: #f44336; }
    .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li::before {
      content: '\f057';
      color: #f44336; }
    .tf-house-rules .tf-house-rules-wrapper .tf-not-included-house-rules li::after {
      background: #f44336; }

.tf-apartment-faq {
  margin-bottom: 24px; }
  .tf-apartment-faq .tf-faq-sec-title {
    margin-bottom: 20px;
    text-align: left; }
    .tf-apartment-faq .tf-faq-sec-title h4 {
      margin: 0; }
    .tf-apartment-faq .tf-faq-sec-title p {
      max-width: 100%; }
  .tf-apartment-faq .tf-faq-content-wrapper {
    background: #F8F9FB;
    border: 1px solid #F0F2F4;
    border-radius: 8px;
    padding: 40px; }
  .tf-apartment-faq .tf-faq-items-wrapper {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    gap: 16px; }
  .tf-apartment-faq #tf-faq-item {
    border-radius: 8px;
    border-bottom: none !important;
    padding: 8px 0;
    margin-bottom: 0; }
    .tf-apartment-faq #tf-faq-item .tf-faq-title {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 8px; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title h4 {
        font-size: 16px !important;
        font-style: normal;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0.5px;
        margin: 0 !important; }
        .tf-apartment-faq #tf-faq-item .tf-faq-title h4:hover {
          color: #2979FF; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title .tf-faq-minus {
        display: none; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title svg rect {
        fill: #607085; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title.active .tf-faq-plus {
        display: none; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title.active .tf-faq-minus {
        display: inline-block; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title.active h4 {
        color: #2979FF; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title.active svg rect {
        fill: #607085; }
      .tf-apartment-faq #tf-faq-item .tf-faq-title:hover svg rect {
        fill: #2979FF; }
    .tf-apartment-faq #tf-faq-item .tf-faq-desc {
      background-color: transparent;
      padding: 0; }
  .tf-apartment-faq .tf-faq-desc p {
    margin-bottom: 20px; }
  .tf-apartment-faq .tf-faq-items-wrapper #tf-faq-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0; }

.tf-ask-question.apartment-question {
  background: transparent;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 80px; }
  @media only screen and (max-width: 767.98px) {
    .tf-ask-question.apartment-question {
      max-width: 100%;
      padding: 0; } }
  .tf-ask-question.apartment-question h3::before {
    display: none; }

.single-tf_apartment #tf-ask-question input[type="text"],
.single-tf_apartment #tf-ask-question input[type="email"],
.single-tf_apartment #tf-ask-question textarea {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 16px;
  background-color: #fff;
  color: #607085;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.3s ease-in-out; }
  .single-tf_apartment #tf-ask-question input[type="text"]:focus,
  .single-tf_apartment #tf-ask-question input[type="email"]:focus,
  .single-tf_apartment #tf-ask-question textarea:focus {
    outline: none;
    border-color: #2979ff; }

.single-tf_apartment #tf-ask-question textarea {
  height: 120px; }

.apartment-question .tf-question-left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px; }
  .apartment-question .tf-question-left .tf-apartment-question-icon {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .apartment-question .tf-question-left i {
    align-self: flex-start;
    font-size: 40px; }
  .apartment-question .tf-question-left .default-enquiry-title-section {
    justify-content: flex-start; }
  .apartment-question .tf-question-left h4 {
    margin: 0;
    font-size: 20px !important;
    color: #2A3343;
    font-weight: 600 !important;
    line-height: 32px !important; }
  .apartment-question .tf-question-left p {
    color: #607085;
    margin: 0;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.2px; }

.apartment-question .apartment-qa-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  gap: 30px; }
  @media only screen and (max-width: 575.98px) {
    .apartment-question .apartment-qa-wrapper {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.apartment-question .tf-btn {
  width: auto; }
  @media only screen and (max-width: 575.98px) {
    .apartment-question .tf-btn {
      width: 100%; } }

.apartment-qa-wrapper .btn-styled {
  display: inline-block; }

.apartment-toc {
  margin-bottom: 48px; }
  .apartment-toc .tf-toc-wrap {
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #F0F2F4; }
    @media only screen and (max-width: 767.98px) {
      .apartment-toc .tf-toc-wrap {
        padding: 20px; } }
    .apartment-toc .tf-toc-wrap p:last-child {
      margin-bottom: 0; }

.tf-apartment-review {
  margin-bottom: 80px; }
  .tf-apartment-review .tf-review-container .tf-total-review {
    margin: 0 0 24px 0; }
    .tf-apartment-review .tf-review-container .tf-total-review .tf-total-average div {
      border-radius: 8px;
      background-color: #2979FF; }
    .tf-apartment-review .tf-review-container .tf-total-review .tf-total-average span {
      color: #8997A9; }
  .tf-apartment-review .tf-review-progress-bar {
    background: #F8F9FB;
    border-radius: 8px;
    border: 1px solid #EBF2FF;
    column-gap: 200px;
    row-gap: 16px;
    grid-template-columns: calc(50% - 100px) calc(50% - 100px); }
    @media only screen and (max-width: 767.98px) {
      .tf-apartment-review .tf-review-progress-bar {
        grid-template-columns: 1fr; } }
    .tf-apartment-review .tf-review-progress-bar .tf-single {
      grid-template-columns: 102px calc(100% - 212px) 30px !important;
      column-gap: 40px; }
  .tf-apartment-review .tf-single-review {
    background-color: transparent; }
    .tf-apartment-review .tf-single-review .tf-single-details {
      background-color: transparent; }
    .tf-apartment-review .tf-single-review .tf-review-details .tf-rating-stars {
      font-size: 14px; }
    .tf-apartment-review .tf-single-review .tf-review-details .tf-apartment-show-more {
      font-size: 14px;
      font-style: normal;
      font-weight: 500;
      line-height: 1.7;
      letter-spacing: 0.5px;
      color: #2A3343;
      cursor: pointer;
      user-select: none; }
    .tf-apartment-review .tf-single-review .tf-review-details .tf-full-description {
      margin-top: 8px; }
    .tf-apartment-review .tf-single-review p {
      margin: 0 0 8px 0;
      color: #607085;
      font-size: 14px; }

.show-all-review-wrap {
  padding: 8px 24px;
  border-radius: 4px;
  background: #F5F8FF;
  border: 1px solid #2979FF;
  width: 200px;
  margin: auto; }
  .show-all-review-wrap .tf-apaartment-show-all {
    color: #2979FF;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.5px;
    user-select: none;
    cursor: pointer; }

.tf-related-apartment .slick-track {
  margin: 0 !important; }

.tf-related-apartment .slick-arrow {
  z-index: 999; }

.tf-related-apartment .slick-dotted.slick-slider {
  margin-bottom: 0;
  padding-bottom: 40px; }

.tf-related-apartment .slick-dots {
  bottom: 0; }
  .tf-related-apartment .slick-dots li {
    width: 16px;
    height: 16px; }
    .tf-related-apartment .slick-dots li button {
      background: #ddd;
      border-radius: 30px;
      border: 1px solid #ddd;
      height: 16px;
      width: 16px; }
      .tf-related-apartment .slick-dots li button:before {
        opacity: 0;
        font-size: 0;
        width: 6px;
        height: 6px;
        background: #003162;
        top: 50%;
        left: 50%;
        border-radius: 100%;
        transform: translate(-50%, -50%); }
    .tf-related-apartment .slick-dots li.slick-active button {
      background: transparent;
      border: 1px solid #003162; }
      .tf-related-apartment .slick-dots li.slick-active button:before {
        opacity: 1; }

.tf-related-apartment .tf-apartment-item {
  margin: 0 8px !important; }
  .tf-related-apartment .tf-apartment-item .tf-apartment-item-thumb {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 8px; }
    .tf-related-apartment .tf-apartment-item .tf-apartment-item-thumb img {
      height: 170px;
      object-fit: cover;
      width: 100%;
      transition: all 0.3s ease-in-out; }
    .tf-related-apartment .tf-apartment-item .tf-apartment-item-thumb:hover img {
      transform: scale(1.1); }
  .tf-related-apartment .tf-apartment-item .tf-related-apartment-content a {
    text-decoration: none; }
  .tf-related-apartment .tf-apartment-item .tf-related-apartment-content h3 {
    font-size: 18px !important;
    color: #2A3343;
    margin: 0; }
  .tf-related-apartment .tf-apartment-item .tf-related-apartment-content span {
    font-size: 14px !important;
    color: #8997A9;
    margin: 0; }

.admin-bar .fancybox-infobar,
.admin-bar .fancybox-toolbar {
  top: 32px; }

#tf-apartment-booking {
  border: 1px solid #f0f2f4;
  box-shadow: 0px 2px 10px rgba(26, 156, 255, 0.2);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 40px; }
  #tf-apartment-booking h5 {
    color: #2A3343;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin: 0 0 16px 0; }
  #tf-apartment-booking .tf-apartment-form-header {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px; }
    #tf-apartment-booking .tf-apartment-form-header .tf-apartment-price-per-night {
      margin: 0; }
      #tf-apartment-booking .tf-apartment-form-header .tf-apartment-price-per-night span.tf-apartment-base-price,
      #tf-apartment-booking .tf-apartment-form-header .tf-apartment-price-per-night span.tf-apartment-base-price span {
        color: #2A3343;
        font-size: 24px;
        font-style: normal;
        font-weight: 600;
        line-height: 32px; }
      #tf-apartment-booking .tf-apartment-form-header .tf-apartment-price-per-night span {
        color: #607085;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
        letter-spacing: 0.2px; }
    #tf-apartment-booking .tf-apartment-form-header .tf-top-review a {
      text-decoration: none; }
    #tf-apartment-booking .tf-apartment-form-header .tf-single-rating {
      color: #8997A9;
      background-color: transparent;
      padding: 0;
      font-size: 10px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      #tf-apartment-booking .tf-apartment-form-header .tf-single-rating i {
        color: #ffbf00;
        font-size: 16px;
        margin-top: -3px; }
      #tf-apartment-booking .tf-apartment-form-header .tf-single-rating span {
        font-size: 14px;
        font-weight: 500;
        color: #8997A9;
        margin: 0 4px; }
  #tf-apartment-booking .tf-apartment-form-fields {
    background: #f5f8ff;
    border: 1px solid #F0F2F4;
    border-radius: 8px;
    margin-bottom: 16px; }
    #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates * {
        box-sizing: border-box; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-in-date,
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-out-date {
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding: 8px 16px;
        text-align: center; }
        #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-in-date .tf-label,
        #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-out-date .tf-label {
          text-transform: uppercase;
          display: inline-block;
          color: #2A3343;
          text-align: center;
          font-size: 10px;
          font-style: normal;
          font-weight: 700;
          line-height: 16px;
          /* 160% */
          letter-spacing: 0.2px; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-err-msg {
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        text-align: center;
        font-size: 14px; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .form-control,
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates #check-in-date,
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates #check-out-date {
        border: none;
        background-color: transparent;
        padding: 0;
        width: 100% !important;
        color: #607085;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        /* 150% */
        letter-spacing: 0.2px;
        cursor: pointer;
        text-align: center; }
        #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .form-control:focus,
        #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates #check-in-date:focus,
        #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates #check-out-date:focus {
          outline: none; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-out-date .tf_label-row {
        position: relative; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-out-date .form-control {
        opacity: 0;
        position: absolute;
        bottom: 0;
        left: 0; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-in-date {
        border-right: 1px solid #F0F2F4; }
      #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates #check-in-out-date {
        width: 100%;
        opacity: 0;
        position: absolute;
        bottom: 0; }
    #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row {
      border-top: 1px solid #F0F2F4;
      padding: 8px 16px; }
      #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row label {
        margin-bottom: 0; }
      #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf-label {
        text-transform: uppercase;
        display: inline-block;
        color: #2A3343;
        font-size: 10px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
        letter-spacing: 0.2px; }
      #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap {
        padding: 0 !important;
        border: none;
        width: 100%;
        color: #607085; }
        #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf_acrselection-wrap {
          left: 0;
          right: 0;
          width: auto; }
        #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf_input-inner {
          color: #607085;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 24px;
          letter-spacing: 0.2px; }
    #tf-apartment-booking .tf-apartment-form-fields .tf-err-msg {
      color: #f44336;
      font-weight: 500; }
  #tf-apartment-booking .tf-btn {
    height: auto; }
  #tf-apartment-booking .btn-styled {
    border-radius: 8px !important;
    background: #2979FF;
    padding: 12px 24px;
    box-shadow: 0px 1px 1px 0px rgba(0, 60, 121, 0.16);
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 24px;
    letter-spacing: 0.5px; }
  #tf-apartment-booking .tf-apartment-price-list {
    margin: 15px 0 0 !important;
    padding: 0; }
    #tf-apartment-booking .tf-apartment-price-list li {
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      margin-bottom: 8px;
      color: #607085; }
      #tf-apartment-booking .tf-apartment-price-list li .tf-price-list-label {
        color: #607085; }
      #tf-apartment-booking .tf-apartment-price-list li .tf-price-list-price {
        font-weight: 500; }
      #tf-apartment-booking .tf-apartment-price-list li.total-price-wrap {
        padding-top: 10px;
        margin-top: 16px;
        border-top: 1px solid #f5f5f4;
        font-weight: 500;
        color: #363e4a; }
      #tf-apartment-booking .tf-apartment-price-list li:last-child {
        margin-bottom: 0px; }

.tf-host-rating-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px; }
  .tf-host-rating-wrapper .tf-host-rating {
    font-weight: 600; }
  .tf-host-rating-wrapper h6 {
    margin-bottom: 0; }

.tf-template-global {
  background-color: inherit;
  padding: 60px 0px; }
  .tf-template-global .tf-btn {
    height: auto; }
  .tf-template-global .tf-template-section:last-child {
    margin-bottom: 0px !important; }
  .tf-template-global .tf-section-title {
    margin-bottom: 15px; }

.tf-tour-single {
  margin-bottom: 50px; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-tour-single {
      margin-bottom: 60px; } }

.tf-template-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px 12px; }

.tf-single-head .tf-head-info {
  align-items: baseline; }

.tf-single-head h1 {
  color: #000;
  font-size: 38px; }

.tf-single-head i {
  color: #0E3DD8; }

.tf-single-head a {
  text-decoration: none;
  color: #686E7A; }

@media only screen and (min-width: 767.99px) and (max-width: 991px) {
  .tf-single-details-wrapper .tf-single-details-inner {
    justify-content: space-between; } }

.tf-single-details-wrapper .tf-single-details-inner .tf-tour-details-left {
  flex-basis: 68%;
  width: 68%; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-single-details-wrapper .tf-single-details-inner .tf-tour-details-left {
      flex-basis: 58%;
      width: 58%; } }
  @media only screen and (max-width: 767.98px) {
    .tf-single-details-wrapper .tf-single-details-inner .tf-tour-details-left {
      flex-basis: 100%;
      width: 58%; } }

.tf-single-details-wrapper .tf-single-details-inner .tf-tour-details-right {
  flex-basis: 32%;
  width: 32%; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-single-details-wrapper .tf-single-details-inner .tf-tour-details-right {
      flex-basis: 40%;
      padding-left: 12px;
      width: 40%; } }
  @media only screen and (max-width: 767.98px) {
    .tf-single-details-wrapper .tf-single-details-inner .tf-tour-details-right {
      flex-basis: 100%;
      width: 58%;
      margin-top: 30px; } }

.tf-tour-design-1 .tf-single-details-wrapper .tf-tour-details-right {
  top: 0;
  align-self: flex-start; }
  @media only screen and (max-width: 767.98px) {
    .tf-tour-design-1 .tf-single-details-wrapper .tf-tour-details-right {
      position: static; } }

.tf-list {
  list-style: none;
  padding: 0;
  margin: 0; }
  .tf-list li {
    margin-top: 12px;
    list-style: none;
    display: flex;
    align-items: baseline; }
    .tf-list li i {
      color: #0E3DD8;
      width: 24px;
      margin-right: 5px; }

.tf-head-info .tf-icon {
  height: 50px;
  width: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px; }

.tf-head-info .tf-icon:hover {
  cursor: pointer; }

.tf-head-info .tf-icon:hover i {
  transform: scale(1.2);
  color: #0E3DD8; }

.tf-head-info .tf-icon i {
  transition: all .3s ease;
  height: 50px;
  width: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }

.tf-head-info .tf-share a {
  font-size: 16px;
  text-decoration: none; }

@media only screen and (max-width: 640px) {
  .tf-head-info .share-tour-content {
    left: auto !important;
    right: 0px; } }

@media only screen and (max-width: 480px) {
  .tf-head-info .share-tour-content {
    left: 0 !important;
    right: auto !important; } }

.tf-head-info .share-tour-content .tf-dropdown-share-content {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px 10px;
  width: 280px;
  text-align: center;
  box-shadow: 0px 13px 30px 0px #e0e8ee; }
  .tf-head-info .share-tour-content .tf-dropdown-share-content h4 {
    font-size: 14px !important;
    color: #0E3DD8;
    font-weight: 600;
    margin-bottom: 10px;
    display: block; }
  .tf-head-info .share-tour-content .tf-dropdown-share-content ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .tf-head-info .share-tour-content .tf-dropdown-share-content ul li {
      display: inline-block; }
      .tf-head-info .share-tour-content .tf-dropdown-share-content ul li a {
        display: inline-block;
        padding: 10px 9px; }
        .tf-head-info .share-tour-content .tf-dropdown-share-content ul li a i {
          font-size: 22px; }
        .tf-head-info .share-tour-content .tf-dropdown-share-content ul li a:hover {
          background: transparent !important; }
      .tf-head-info .share-tour-content .tf-dropdown-share-content ul li button {
        padding: 10px 8px !important;
        background-color: transparent !important;
        border: 0px solid;
        font-size: 22px !important;
        cursor: pointer; }
        .tf-head-info .share-tour-content .tf-dropdown-share-content ul li button span {
          color: #0E3DD8; }
      @media only screen and (max-width: 640px) {
        .tf-head-info .share-tour-content .tf-dropdown-share-content ul li input {
          display: contents !important; } }

.tf-head-info .tf-title-meta {
  align-items: baseline; }

.tf-head-title h1 {
  margin-bottom: 6px; }

.tf-booking-form .tf-field-group #check-in-out-date {
  width: 100% !important; }

.tf-booking-form .tf-booking-person .tf-field {
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px !important; }
  .tf-booking-form .tf-booking-person .tf-field .acr-label {
    align-items: center; }
    .tf-booking-form .tf-booking-person .tf-field .acr-label i {
      position: static;
      margin-right: 5px; }

.tf-ask-enquiry {
  text-align: center; }
  .tf-ask-enquiry i {
    text-align: center;
    background-color: #ECF2FF;
    border-radius: 50%;
    color: #0E3DD8;
    margin-bottom: 25px;
    font-size: 30px;
    height: 80px;
    width: 80px;
    text-align: center;
    line-height: 80px; }
  .tf-ask-enquiry p {
    margin-top: 5px;
    margin-bottom: 25px; }
  .tf-ask-enquiry .tf-btn a:hover {
    background-color: #003C7A !important; }

.tf-hero-gallery {
  width: 100%;
  display: inline-block; }
  .tf-hero-gallery img {
    width: 100%;
    border-radius: 5px;
    height: auto; }
  .tf-hero-gallery .tf-gallery-featured {
    position: relative;
    margin-bottom: 10px; }
    .tf-hero-gallery .tf-gallery-featured > img {
      min-height: 474px;
      max-height: 474px;
      object-fit: cover; }
      @media only screen and (min-width: 767.99px) and (max-width: 991px) {
        .tf-hero-gallery .tf-gallery-featured > img {
          min-height: auto;
          max-height: auto; } }
    .tf-hero-gallery .tf-gallery-featured .featured-column {
      background: #fff;
      border-radius: 5px; }
      .tf-hero-gallery .tf-gallery-featured .featured-column a {
        display: flex;
        gap: 8px;
        text-decoration: none;
        color: #000;
        line-height: 1em;
        padding: 10px 12px;
        border-radius: 5px;
        transition: all .6s ease; }
        .tf-hero-gallery .tf-gallery-featured .featured-column a:hover {
          background-color: #deddeb;
          transition: all .6s ease; }
    .tf-hero-gallery .tf-gallery-featured .featured-meta-gallery-videos {
      display: flex;
      position: absolute;
      top: calc(0px - -25px);
      right: calc(0px - -25px);
      gap: 24px; }
      @media only screen and (max-width: 767.98px) {
        .tf-hero-gallery .tf-gallery-featured .featured-meta-gallery-videos {
          gap: 5px;
          right: calc(0px - -15px); } }
    .tf-hero-gallery .tf-gallery-featured .tf-single-review-box {
      position: absolute;
      top: calc(0px - -25px);
      left: calc(0px - -25px);
      gap: 24px; }
      @media only screen and (max-width: 767.98px) {
        .tf-hero-gallery .tf-gallery-featured .tf-single-review-box {
          gap: 5px;
          left: calc(0px - -15px); } }
      .tf-hero-gallery .tf-gallery-featured .tf-single-review-box .tf-single-rating {
        background-color: #5F79A1;
        padding: 9px 8px !important;
        font-size: 16px !important;
        text-decoration: none; }
        .tf-hero-gallery .tf-gallery-featured .tf-single-review-box .tf-single-rating span {
          font-weight: 600; }
        .tf-hero-gallery .tf-gallery-featured .tf-single-review-box .tf-single-rating:hover {
          color: #fff; }
  .tf-hero-gallery .tf-without-gallery-featured > img {
    min-height: 596px;
    max-height: 596px; }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-hero-gallery .tf-without-gallery-featured > img {
        min-height: auto;
        max-height: auto; } }
  .tf-hero-gallery .tf-gallery {
    display: flex;
    gap: 10px; }
    .tf-hero-gallery .tf-gallery a {
      width: 20%;
      display: inline-block;
      float: left;
      display: none;
      position: relative; }
      .tf-hero-gallery .tf-gallery a img {
        height: 100%;
        min-height: 112px;
        max-height: 112px;
        object-fit: cover; }
    .tf-hero-gallery .tf-gallery a.tf-gallery-more {
      position: relative; }
      .tf-hero-gallery .tf-gallery a.tf-gallery-more::before {
        content: "View More → ";
        position: absolute;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1;
        background: #0000009c;
        font-size: 16px; }
        @media only screen and (max-width: 767.98px) {
          .tf-hero-gallery .tf-gallery a.tf-gallery-more::before {
            text-align: center;
            font-size: 12px; } }
  .tf-hero-gallery .tf-gallery a:nth-child(1) {
    display: block; }
  .tf-hero-gallery .tf-gallery a:nth-child(2) {
    display: block; }
  .tf-hero-gallery .tf-gallery a:nth-child(3) {
    display: block; }
  .tf-hero-gallery .tf-gallery a:nth-child(4) {
    display: block; }
  .tf-hero-gallery .tf-gallery a:nth-child(5) {
    display: block; }

.tf-trip-info {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }
  .tf-trip-info .person-info.active {
    background: #F3F7FA; }
  .tf-trip-info ul {
    padding: 0;
    list-style: none; }
  .tf-trip-info li {
    font-size: 14px;
    font-family: inherit;
    color: #686E7A;
    margin-top: 8px;
    align-items: center; }
    .tf-trip-info li i {
      margin-right: 10px;
      width: 10px; }
  .tf-trip-info .person-info {
    border: 1px solid #E3E6F0;
    border-radius: 5px;
    box-shadow: 0px 9px 12px 0px #0e132305;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    width: 50px;
    height: 60px;
    margin-top: 0px; }
    .tf-trip-info .person-info:hover {
      cursor: pointer; }
    .tf-trip-info .person-info p {
      font-size: 12px;
      font-weight: 500;
      color: #000; }
    .tf-trip-info .person-info i {
      color: #0E3DD8;
      margin-right: 0px; }
  .tf-trip-info .tf-trip-pricing {
    flex-direction: column;
    text-align: right;
    color: #686E7A;
    font-size: 14px;
    display: none; }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-trip-info .tf-trip-pricing {
        text-align: left; } }
    .tf-trip-info .tf-trip-pricing .tf-price-amount {
      color: #060D1C;
      font-size: 26px;
      margin: 4px 0px;
      font-weight: 500; }
      @media only screen and (max-width: 767.98px) {
        .tf-trip-info .tf-trip-pricing .tf-price-amount {
          font-size: 22px; } }
  .tf-trip-info .tf-trip-pricing.active {
    display: flex; }

.tf-trip-description h2 {
  font-size: 30px; }

.repeat-fixed-dates {
  max-width: 100%;
  min-height: 100px;
  background-color: #fff;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }
  .repeat-fixed-dates .repeated-title-section {
    display: flex;
    gap: 10px;
    align-items: center; }
    .repeat-fixed-dates .repeated-title-section i {
      color: #0E3DD8; }
  .repeat-fixed-dates .repeat-dates {
    display: grid;
    grid-template-columns: repeat(6, 15%);
    padding-left: 0;
    justify-content: space-around; }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .repeat-fixed-dates .repeat-dates {
        grid-template-columns: repeat(4, 25%); } }
    @media only screen and (max-width: 767.98px) {
      .repeat-fixed-dates .repeat-dates {
        grid-template-columns: repeat(auto-fit, 30%); } }
    @media only screen and (max-width: 375px) {
      .repeat-fixed-dates .repeat-dates {
        grid-template-columns: repeat(auto-fit, 45%); } }
  .repeat-fixed-dates .repeat-dates .repeat-date-list {
    list-style: none;
    display: inline-block;
    background-color: #fff;
    padding: 8px 12px;
    margin-top: 15px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0px 0px 15px 2px #E0E8EE; }

.tf-trip-feature-blocks .tf-feature-block {
  background: #fff;
  box-shadow: 0px 0px 24px 5px #E0E8EE;
  border-radius: 5px;
  padding: 20px;
  width: 100%; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-trip-feature-blocks .tf-feature-block {
      padding: 24px; } }
  .tf-trip-feature-blocks .tf-feature-block i {
    color: #0E3DD8; }
  .tf-trip-feature-blocks .tf-feature-block h3 {
    font-size: 14px;
    color: #060D1C; }
  .tf-trip-feature-blocks .tf-feature-block p {
    font-size: 12px;
    color: #686E7A;
    margin-top: 8px; }
  .tf-trip-feature-blocks .tf-feature-block .repeat-dates {
    display: block;
    padding-left: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-top: 5px; }
    .tf-trip-feature-blocks .tf-feature-block .repeat-dates .repeat-date-list {
      list-style: none;
      background-color: #fff;
      padding: 0px 8px;
      margin: 10px 5px;
      text-align: center;
      border-radius: 5px;
      font-size: 15px;
      box-shadow: 0px 0px 8px 2px #E0E8EE; }

.tf-features-block-inner {
  flex-wrap: nowrap !important; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-features-block-inner {
      flex-wrap: wrap !important; } }
  @media only screen and (min-width: 320px) and (max-width: 360px) {
    .tf-features-block-inner {
      flex-wrap: wrap !important; } }
  @media only screen and (max-width: 767.98px) {
    .tf-features-block-inner {
      flex-wrap: wrap !important; } }
  .tf-features-block-inner .tf-column {
    width: 100% !important;
    flex-basis: auto; }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-features-block-inner .tf-column {
        flex-basis: calc(50% - 16px) !important; } }
    @media only screen and (max-width: 767.98px) {
      .tf-features-block-inner .tf-column {
        flex-basis: calc(50% - 16px) !important; } }
    @media only screen and (min-width: 320px) and (max-width: 360px) {
      .tf-features-block-inner .tf-column {
        flex-basis: calc(100% - 16px) !important; } }

.tf-tour-features ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  list-style-type: none;
  gap: 5px; }
  .tf-tour-features ul li {
    display: inline-flex;
    justify-content: flex-start;
    background-color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    text-transform: capitalize;
    margin: 5px 16px 10px 0px;
    box-shadow: 0px 0px 24px 5px #E0E8EE;
    font-size: 15px;
    font-weight: 300; }
    .tf-tour-features ul li .tf-tour-features-icon {
      margin-right: 8px; }

.tf-highlights-wrapper {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }
  .tf-highlights-wrapper .tf-highlights-inner {
    gap: 40px;
    align-items: flex-start; }
    .tf-highlights-wrapper .tf-highlights-inner .tf-highlights-icon img {
      height: 100%;
      max-width: none; }
  .tf-highlights-wrapper .highlights-list ul {
    padding: 0;
    margin-top: 20px; }
  .tf-highlights-wrapper .highlights-list li {
    margin-top: 12px;
    line-height: 1.3; }
    .tf-highlights-wrapper .highlights-list li i {
      color: #0E3DD8;
      width: 24px; }

.tf-inex-wrapper .tf-inex {
  width: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }
  .tf-inex-wrapper .tf-inex h3 {
    font-size: 24px; }
  .tf-inex-wrapper .tf-inex ul li {
    margin-top: 0px;
    margin-bottom: 12px; }
    .tf-inex-wrapper .tf-inex ul li:last-child {
      margin-bottom: 0px; }

.tf-itinerary-wrapper .tf-itinerary-box {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }
  @media only screen and (max-width: 767.98px) {
    .tf-itinerary-wrapper .tf-itinerary-box {
      padding: 40px 24px; } }

.tf-itinerary-wrapper .tf-single-itinerary-item {
  padding-left: 40px;
  border-bottom: 1px solid #EBF0F4;
  padding-bottom: 24px;
  padding-top: 24px; }
  .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-title:hover {
    cursor: pointer; }
  @media only screen and (max-width: 767.98px) {
    .tf-itinerary-wrapper .tf-single-itinerary-item {
      padding-left: 30px; } }
  .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box {
    display: none; }
    @media only screen and (max-width: 767.98px) {
      .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box {
        margin-left: -30px; } }
    .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .tf-itinerary-content-img {
      flex-basis: 20%; }
      @media only screen and (max-width: 767.98px) {
        .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .tf-itinerary-content-img {
          flex-basis: 100%; } }
      .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .tf-itinerary-content-img img {
        border-radius: 6px; }
    .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .tf-itinerary-content-details {
      flex-basis: 80%; }
      .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .tf-itinerary-content-details p {
        margin-bottom: 5px; }
      @media only screen and (max-width: 767.98px) {
        .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .tf-itinerary-content-details {
          flex-basis: 100%; } }
    .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box img {
      width: 100%; }
    .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery {
      margin-top: 20px;
      display: flex;
      gap: 10px; }
      .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a {
        width: 20%;
        display: inline-block;
        float: left;
        display: none;
        position: relative; }
        .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a img {
          height: 91px;
          border-radius: 5px;
          object-fit: cover; }
        .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a:nth-child(1), .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a:nth-child(2), .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a:nth-child(3), .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a:nth-child(4), .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a:nth-child(5) {
          display: block; }
      .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a.tf-gallery-more {
        position: relative; }
        .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a.tf-gallery-more::before {
          content: "View More → ";
          position: absolute;
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          width: 100%;
          z-index: 1;
          background: #0000009c;
          font-size: 16px; }
          @media only screen and (max-width: 767.98px) {
            .tf-itinerary-wrapper .tf-single-itinerary-item .tf-itinerary-content-box .ininerary-other-gallery a.tf-gallery-more::before {
              text-align: center;
              font-size: 12px; } }
  .tf-itinerary-wrapper .tf-single-itinerary-item:first-child {
    padding-top: 0px; }
  .tf-itinerary-wrapper .tf-single-itinerary-item:last-child {
    border: none;
    padding-bottom: 0; }
  .tf-itinerary-wrapper .tf-single-itinerary-item h4 {
    position: relative;
    font-size: 18px;
    line-height: 1.4; }
  .tf-itinerary-wrapper .tf-single-itinerary-item.active .accordion-checke::before {
    border: 1px solid #0E3DD8; }
  .tf-itinerary-wrapper .tf-single-itinerary-item.active .accordion-checke::after {
    background: #0E3DD8;
    width: 8px;
    height: 8px;
    border-radius: 50px;
    position: absolute;
    top: calc(50% + -6px);
    left: -34px;
    content: ""; }
  .tf-itinerary-wrapper .tf-single-itinerary-item .itinerary-day {
    color: #0E3DD8; }
  .tf-itinerary-wrapper .tf-single-itinerary-item .accordion-checke::before {
    width: 20px;
    height: 20px;
    border: 1px solid #060D1C;
    border-radius: 50px;
    position: absolute;
    left: -40px;
    top: calc(50% - 12px);
    content: ""; }
  .tf-itinerary-wrapper .tf-single-itinerary-item li {
    color: #060D1C;
    align-items: center; }
    .tf-itinerary-wrapper .tf-single-itinerary-item li a {
      color: #060D1C;
      text-decoration: none; }

.tf-itinerary-wrapper.tf-mb-50 .tf-itinerary-downloader-option {
  background-color: #0E3DD8;
  border-radius: 5px; }
  .tf-itinerary-wrapper.tf-mb-50 .tf-itinerary-downloader-option .itinerary-downloader-left {
    overflow: hidden; }
  .tf-itinerary-wrapper.tf-mb-50 .tf-itinerary-downloader-option h3, .tf-itinerary-wrapper.tf-mb-50 .tf-itinerary-downloader-option p {
    color: #fff; }
  .tf-itinerary-wrapper.tf-mb-50 .tf-itinerary-downloader-option a {
    color: #0E3DD8; }

.tf-faq-wrapper .tf-faq-inner .tf-faq-single {
  border-bottom: 1px solid #D1DAE0; }

.tf-faq-wrapper .tf-faq-inner .active .tf-faq-single-inner {
  background: #fff;
  border-radius: 5px;
  margin: 0px 0px 30px 0px;
  box-shadow: 0px 0px 24px 5px #E0E8EE; }
  .tf-faq-wrapper .tf-faq-inner .active .tf-faq-single-inner .tf-faq-collaps .faq-icon i.fa-plus {
    display: none; }
  .tf-faq-wrapper .tf-faq-inner .active .tf-faq-single-inner .tf-faq-collaps .faq-icon i.fa-minus {
    color: #0E3DD8;
    display: block; }

.tf-faq-wrapper .tf-faq-inner .tf-faq-single-inner .tf-faq-content {
  display: none; }

.tf-faq-wrapper .tf-faq-single-inner .tf-faq-content {
  padding: 0px 24px 24px 24px; }

.tf-faq-wrapper .tf-faq-single-inner .tf-faq-collaps {
  padding: 24px; }
  .tf-faq-wrapper .tf-faq-single-inner .tf-faq-collaps:hover {
    cursor: pointer; }
  .tf-faq-wrapper .tf-faq-single-inner .tf-faq-collaps .faq-icon i.fa-plus {
    display: block; }
  .tf-faq-wrapper .tf-faq-single-inner .tf-faq-collaps .faq-icon i.fa-minus {
    display: none; }

.tf-faq-wrapper .tf-faq-single-inner h4 {
  line-height: 1.4; }

.tf-toc-wrapper .tf-section-head p {
  margin-top: 8px; }

#tf-tour-map .tf-map-area #tour-location {
  height: 500px;
  width: 100%;
  max-width: 100%;
  max-height: 100%; }

.tf-review-wrapper .tf-review-data.tf-box {
  box-shadow: 0px 0px 24px 5px #E0E8EE; }

.tf-review-wrapper .tf-review-data {
  background: #fff;
  border-radius: 5px;
  flex-basis: 20%; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .tf-review-wrapper .tf-review-data {
      flex-basis: 100%; } }
  @media only screen and (max-width: 767.98px) {
    .tf-review-wrapper .tf-review-data {
      flex-basis: 100%; } }
  .tf-review-wrapper .tf-review-data .tf-list {
    margin-top: -8px; }
  .tf-review-wrapper .tf-review-data p, .tf-review-wrapper .tf-review-data li {
    text-transform: capitalize; }
  .tf-review-wrapper .tf-review-data .tf-review-data-average p {
    background: #ECF2FF;
    text-align: center;
    font-size: 30px !important;
    color: #0E3DD8;
    font-weight: 500;
    border-radius: 5px;
    width: 100px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .tf-review-wrapper .tf-review-data .tf-review-data-label p {
    color: #060D1C;
    font-weight: 500; }
  .tf-review-wrapper .tf-review-data .tf-review-all-info li {
    font-size: 14px;
    color: #0E3DD8; }
  .tf-review-wrapper .tf-review-data .tf-review-data-features {
    flex-basis: 80%; }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-review-wrapper .tf-review-data .tf-review-data-features {
        flex-basis: 100%;
        padding-left: 0px; } }
    @media only screen and (max-width: 767.98px) {
      .tf-review-wrapper .tf-review-data .tf-review-data-features {
        flex-basis: 100%;
        padding-left: 0px; } }
    .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-percent-progress {
      column-gap: 70px;
      flex-wrap: wrap; }
      @media only screen and (min-width: 767.99px) and (max-width: 991px) {
        .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-percent-progress {
          column-gap: 24px; } }
      @media only screen and (max-width: 767.98px) {
        .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-percent-progress {
          column-gap: 16px; } }
    .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-progress-bar {
      height: 7px;
      background: #EAEDF6;
      border-radius: 7px; }
    .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-progress-item {
      width: 240px;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767.98px) {
        .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-progress-item {
          width: 128px; } }
      @media only screen and (min-width: 320px) and (max-width: 360px) {
        .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-progress-item {
          width: 110px; } }
      @media only screen and (min-width: 767.99px) and (max-width: 991px) {
        .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-progress-item {
          width: 178px; } }
    .tf-review-wrapper .tf-review-data .tf-review-data-features .tf-progress-bar {
      position: relative;
      margin-bottom: 4px; }
    .tf-review-wrapper .tf-review-data .tf-review-data-features .percent-progress {
      position: absolute;
      background: #0E3DD8;
      top: 0;
      left: 0;
      bottom: 0;
      border-radius: 7px; }

.tf-review-wrapper .tf-review-reply {
  border-bottom: 1px solid #D3DDE5;
  padding-bottom: 30px; }
  .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-ratings i {
    color: #FF6B00; }
  .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-ratings h3 {
    font-size: 20px; }
  .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-date li {
    color: #060D1C; }
    .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-date li i {
      color: #060D1C; }
  .tf-review-wrapper .tf-review-reply .tf-review-author {
    max-width: 15%; }
    @media only screen and (max-width: 1199.98px) {
      .tf-review-wrapper .tf-review-reply .tf-review-author {
        max-width: 20%; } }
    @media only screen and (max-width: 991.98px) {
      .tf-review-wrapper .tf-review-reply .tf-review-author {
        max-width: 30%; } }
    .tf-review-wrapper .tf-review-reply .tf-review-author img {
      object-fit: cover;
      width: 70px;
      height: 70px;
      border-radius: 50%; }
  .tf-review-wrapper .tf-review-reply .tf-review-details {
    max-width: 85%; }
    @media only screen and (max-width: 1199.98px) {
      .tf-review-wrapper .tf-review-reply .tf-review-details {
        max-width: 80%; } }
    @media only screen and (max-width: 991.98px) {
      .tf-review-wrapper .tf-review-reply .tf-review-details {
        max-width: 70%; } }
    .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-author-name h3 {
      font-size: 1.17rem; }
    .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-message {
      margin-top: 10px; }
    .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-ratings {
      display: flex; }
      .tf-review-wrapper .tf-review-reply .tf-review-details .tf-review-ratings div {
        margin-right: 5px; }

.tf-review-wrapper .tf-review-form {
  padding-bottom: 30px; }
  .tf-review-wrapper .tf-review-form .tf-review-form-container {
    background: transparent !important;
    min-width: auto !important; }
    .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-rating-wrapper {
      column-gap: 40px;
      flex-wrap: wrap;
      row-gap: 24px;
      margin: 20px 0 24px 0;
      display: flex; }
      .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-rating-wrapper .tf-form-single-rating {
        display: initial; }
        .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-rating-wrapper .tf-form-single-rating > label {
          font-family: inherit;
          font-size: 16px !important;
          font-weight: 400 !important;
          line-height: 1.6 !important;
          color: #686E7A;
          margin: 0px;
          text-transform: capitalize !important; }
        .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-rating-wrapper .tf-form-single-rating .ratings-container {
          margin-top: 8px; }
          .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-rating-wrapper .tf-form-single-rating .ratings-container label:before {
            color: #686E7A;
            font-size: 15px; }
    .tf-review-wrapper .tf-review-form .tf-review-form-container .review-desc {
      display: flex; }
      .tf-review-wrapper .tf-review-form .tf-review-form-container .review-desc textarea {
        padding: 15px 20px;
        border: 1px solid #CDCFD0;
        width: 100%;
        background-color: #F3F7FA;
        border-radius: 5px;
        font-size: 14px;
        color: #686E7A;
        font-family: inherit; }
        .tf-review-wrapper .tf-review-form .tf-review-form-container .review-desc textarea::placeholder {
          color: #060D1C; }
    .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-visitor-info {
      margin-top: 24px; }
      .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-visitor-info div input {
        padding: 15px 20px;
        border: 1px solid #CDCFD0;
        width: 100%;
        background-color: #F3F7FA;
        border-radius: 5px;
        font-size: 14px;
        color: #686E7A;
        font-family: inherit; }
        .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-visitor-info div input::placeholder {
          color: #060D1C; }
    .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-review-submit input[type="submit"] {
      border-style: solid;
      border-top-width: 0;
      border-right-width: 0;
      border-left-width: 0;
      border-bottom-width: 0;
      color: #ffffff;
      border-color: #0E3DD8 !important;
      background: #0E3DD8 !important;
      border-radius: 2px;
      padding-top: 15px;
      padding-right: 30px;
      padding-bottom: 15px;
      padding-left: 30px;
      font-family: inherit;
      font-weight: inherit;
      line-height: 1em;
      display: inline-block;
      width: auto !important;
      transition: .3s all ease; }
      .tf-review-wrapper .tf-review-form .tf-review-form-container .tf-review-submit input[type="submit"]:hover {
        background-color: #0E2E96; }

.tf-tour-details-right {
  padding-left: 30px; }
  @media only screen and (max-width: 767.98px) {
    .tf-tour-details-right {
      padding-left: 0px; } }
  .tf-tour-details-right .tf-tour-booking-box {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 24px 5px #E0E8EE; }
  .tf-tour-details-right .tf-booking-price {
    border-bottom: 1px solid #EBF0F4; }
    .tf-tour-details-right .tf-booking-price p {
      font-size: 30px !important;
      font-weight: 500 !important;
      color: #060D1C; }
      .tf-tour-details-right .tf-booking-price p span {
        font-size: 14px;
        font-weight: 400; }
  .tf-tour-details-right .tf-form-title p {
    color: #060D1C; }
  .tf-tour-details-right .tf-form-title.tf-tour-extra p {
    cursor: pointer;
    background-color: #F3F7FA;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .tf-tour-details-right .tf-form-title.tf-tour-extra p i {
      float: right; }
    .tf-tour-details-right .tf-form-title.tf-tour-extra p .fa-minus {
      display: none; }
  .tf-tour-details-right .tf-form-title.tf-tour-extra.active i {
    display: none; }
  .tf-tour-details-right .tf-form-title.tf-tour-extra.active .fa-minus {
    display: block; }
  .tf-tour-details-right .tf-tour-extra-box {
    display: none; }
    .tf-tour-details-right .tf-tour-extra-box .tf-tour-extra {
      padding: 16px 24px;
      border: 1px solid #EBF0F4;
      border-radius: 5px; }
      .tf-tour-details-right .tf-tour-extra-box .tf-tour-extra .tf-tour-extra-price {
        align-items: inherit; }
        .tf-tour-details-right .tf-tour-extra-box .tf-tour-extra .tf-tour-extra-price .tf-tour-extra-input {
          align-items: center; }
        .tf-tour-details-right .tf-tour-extra-box .tf-tour-extra .tf-tour-extra-price .woocommerce-Price-amount.amount {
          font-weight: 600;
          margin-left: 10px;
          line-height: 18px; }
        .tf-tour-details-right .tf-tour-extra-box .tf-tour-extra .tf-tour-extra-price p {
          line-height: 1.3;
          font-size: 14px; }
        .tf-tour-details-right .tf-tour-extra-box .tf-tour-extra .tf-tour-extra-price .tf-tour-extra-input > p {
          line-height: 1.0 !important; }
  .tf-tour-details-right .tf-booking-bttns button {
    margin-top: 8px;
    padding: 16px 24px; }
  .tf-tour-details-right .tf-data-info p {
    font-size: 14px; }
  .tf-tour-details-right .tf-tour-booking-advantages {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 24px 5px #E0E8EE; }
    .tf-tour-details-right .tf-tour-booking-advantages ul {
      margin: 0px; }
    .tf-tour-details-right .tf-tour-booking-advantages li {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #060D1C; }
      .tf-tour-details-right .tf-tour-booking-advantages li i {
        height: 38px;
        width: 38px;
        background: #fff;
        border: 1px solid #ECF0F3;
        box-shadow: 0px 9px 24px rgba(224, 235, 243, 0.75);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center; }
      .tf-tour-details-right .tf-tour-booking-advantages li a {
        color: #060D1C;
        text-decoration: none; }

.upcomming-tours {
  padding-top: 120px;
  border-top: 1px solid #D0E0EC; }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .upcomming-tours .tf-upcomming-tours-list-outter .tf-post-box-lists {
      flex-basis: calc(100%/2 - 12px); } }
  @media only screen and (min-width: 767.99px) and (max-width: 991px) {
    .upcomming-tours {
      padding-top: 60px; } }
  .upcomming-tours .tf-image-data {
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    position: relative; }
    .upcomming-tours .tf-image-data img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .upcomming-tours .tf-meta-location i {
    color: #0E3DD8; }
  .upcomming-tours .tf-meta-data-price {
    position: absolute;
    bottom: 0px;
    background: #fff;
    padding: 15px 22px;
    font-size: 12px; }
    .upcomming-tours .tf-meta-data-price span {
      color: #0E3DD8;
      font-size: 20px;
      font-weight: 500; }
  .upcomming-tours .tf-meta-title {
    margin-top: 8px; }
    .upcomming-tours .tf-meta-title h2 {
      font-size: 22px;
      line-height: 1.4; }
      .upcomming-tours .tf-meta-title h2 a {
        text-decoration: none;
        color: #060D1C; }
  .upcomming-tours .tf-upcomming-tours-list-outter .tf-slider-item {
    border: 0px solid;
    box-shadow: none;
    border-radius: 0px;
    height: auto !important;
    padding: 0;
    display: flow-root !important;
    margin: 0 15px 15px !important;
    margin-left: 15px;
    margin-left: 0 !important; }

/* bottom bar */
.tf-bottom-booking-bar {
  position: fixed;
  width: calc(100% - 64px);
  bottom: 0;
  left: 0;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  transform-origin: bottom;
  transform: rotateX(90deg);
  transition: all 0.3s ease-in-out; }
  @media only screen and (max-width: 1199.98px) {
    .tf-bottom-booking-bar {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 16px;
      gap: 8px;
      width: calc(100% - 32px); } }
  @media only screen and (max-width: 767.98px) {
    .tf-bottom-booking-bar {
      transform: rotateX(0);
      z-index: 9999;
      width: 100%; } }
  .tf-bottom-booking-bar.active {
    transform: rotateX(0deg);
    width: 100%; }
  .tf-bottom-booking-bar.mobile-active .tf-bottom-booking-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; }
  .tf-bottom-booking-bar.mobile-active .tf-booking-popup-btn {
    display: block; }
  .tf-bottom-booking-bar.mobile-active .tf-booking-mobile-btn {
    display: none; }
  .tf-bottom-booking-bar .tf-bottom-booking-fields {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 24px; }
    @media only screen and (max-width: 1199.98px) {
      .tf-bottom-booking-bar .tf-bottom-booking-fields {
        width: 100%;
        gap: 16px;
        -webkit-justify-content: center;
        justify-content: center; } }
    @media only screen and (max-width: 767.98px) {
      .tf-bottom-booking-bar .tf-bottom-booking-fields {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        display: none; } }
  .tf-bottom-booking-bar .tf-bottom-booking-field {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 8px; }
    @media only screen and (max-width: 767.98px) {
      .tf-bottom-booking-bar .tf-bottom-booking-field {
        width: 100%; } }
    .tf-bottom-booking-bar .tf-bottom-booking-field input.tf-field, .tf-bottom-booking-bar .tf-bottom-booking-field select.tf-field {
      border-radius: 8px;
      border: 1px solid #0E3DD8;
      padding: 0 16px;
      background-color: #fff;
      outline: none;
      min-width: 220px;
      font-size: 16px; }
      @media only screen and (max-width: 767.98px) {
        .tf-bottom-booking-bar .tf-bottom-booking-field input.tf-field, .tf-bottom-booking-bar .tf-bottom-booking-field select.tf-field {
          flex-grow: 1; } }
  .tf-bottom-booking-bar .tf-bottom-booking-field.check-in-time-div {
    display: none; }
  .tf-bottom-booking-bar .tf-bottom-booking-field-icon {
    height: 56px;
    width: 56px;
    line-height: 56px;
    font-size: 24px;
    border-radius: 8px;
    background-color: #0E3DD8;
    text-align: center;
    color: #fff; }
    @media only screen and (max-width: 767.98px) {
      .tf-bottom-booking-bar .tf-bottom-booking-field-icon {
        height: 44px;
        width: 44px;
        line-height: 44px;
        font-size: 18px; } }
  .tf-bottom-booking-bar .tf_selectperson-wrap {
    border-right: none;
    padding: 0; }
    @media only screen and (max-width: 767.98px) {
      .tf-bottom-booking-bar .tf_selectperson-wrap {
        border-bottom: none;
        padding: 0 !important; } }
    .tf-bottom-booking-bar .tf_selectperson-wrap .tf_input-inner {
      border-radius: 8px;
      border: 1px solid #003C7A;
      padding: 0 16px;
      background-color: #fff; }
      @media only screen and (max-width: 767.98px) {
        .tf-bottom-booking-bar .tf_selectperson-wrap .tf_input-inner {
          flex-grow: 1;
          width: 100%; } }
  .tf-bottom-booking-bar .tf_acrselection-wrap {
    left: 64px;
    right: auto;
    top: unset;
    bottom: 100%;
    width: auto; }
  .tf-bottom-booking-bar .tf-booking-mobile-btn {
    display: none; }
    @media only screen and (max-width: 767.98px) {
      .tf-bottom-booking-bar .tf-booking-mobile-btn {
        display: block; } }
  .tf-bottom-booking-bar .tf-btn-normal {
    padding: 19px 32px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px; }
    @media only screen and (max-width: 767.98px) {
      .tf-bottom-booking-bar .tf-btn-normal {
        padding: 12px 24px; } }
  @media only screen and (max-width: 767.98px) {
    .tf-bottom-booking-bar .tf-booking-popup-btn {
      display: none; }
    .tf-bottom-booking-bar .tf-tours-booking-btn {
      width: 100%; } }

.tf-template-global {
  background-color: inherit;
  padding: 60px 0px;
  width: 100%; }
  .tf-template-global #tf-required {
    text-align: center;
    width: 100% !important;
    color: red !important;
    display: block; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-global {
      padding-top: 0px; } }

.tf-archive-head .tf-search-result {
  color: #060D1C; }

.tf-archive-head .tf-icon {
  background-color: #fff;
  border-radius: 5px; }
  .tf-archive-head .tf-icon:hover {
    cursor: pointer; }
  .tf-archive-head .tf-icon .active-view {
    display: none; }

.tf-archive-head i {
  color: #0E3DD8; }

.tf-archive-head .active {
  background-color: #0E3DD8; }
  .tf-archive-head .active i {
    color: #fff !important; }
  .tf-archive-head .active .active-view {
    display: block; }
  .tf-archive-head .active .defult-view {
    display: none; }

.tf-archive-head .tf-list-active .active-view {
  display: block; }

.tf-archive-head .tf-list-active .defult-view {
  display: none; }

.tf-archive-head .tf-list-active.active .active-view {
  display: none; }

.tf-archive-head .tf-list-active.active .defult-view {
  display: block; }

.tf-search-results-list .tf-item-cards {
  flex-direction: column;
  gap: 24px; }

.tf-search-results-list .tf-layout-list .tf-item-card {
  flex-basis: 100%; }

.tf-search-results-list .tf-layout-grid {
  flex-direction: row;
  flex-wrap: wrap; }
  .tf-search-results-list .tf-layout-grid .tf-item-card {
    flex-basis: calc(100% / 2 - 12px); }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-search-results-list .tf-layout-grid .tf-item-card {
        flex-basis: calc(100% - 0px); } }
    @media only screen and (max-width: 480px) {
      .tf-search-results-list .tf-layout-grid .tf-item-card {
        flex-basis: calc(100% - 0px); } }
  .tf-search-results-list .tf-layout-grid .tf-item-card {
    flex-wrap: wrap; }
    .tf-search-results-list .tf-layout-grid .tf-item-card .tf-item-featured {
      flex-basis: 100%; }
    .tf-search-results-list .tf-layout-grid .tf-item-card .tf-item-details {
      flex-basis: 100%; }

.tf-search-results-list .tf-layout-list .tf-item-card .tf-item-featured img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 250px;
  border-radius: 5px 0px 0px 5px; }

.tf-search-results-list .tf-layout-list .tf-item-card.tf-item-hotel .tf-item-featured img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  min-height: 250px;
  border-radius: 5px 0px 0px 5px; }

.tf-search-results-list .tf-layout-grid .tf-item-card {
  display: block; }
  .tf-search-results-list .tf-layout-grid .tf-item-card .tf-item-featured img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 5px 5px 0px 0px;
    min-height: 280px; }

.tf-search-results-list .tf-item-card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 13px 30px #E0E8EE; }
  .tf-search-results-list .tf-item-card .tf-item-featured {
    flex-basis: 41%;
    position: relative; }
    .tf-search-results-list .tf-item-card .tf-item-featured .tf-features-box .tf-discount {
      background: #fff;
      padding: 6px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
      color: #060D1C;
      line-height: 1;
      margin-right: 10px; }
    .tf-search-results-list .tf-item-card .tf-item-featured .tf-features-box .tf-feature {
      background: #0E3DD8;
      padding: 6px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
      color: #fff;
      line-height: 1;
      margin-right: 5px; }
    .tf-search-results-list .tf-item-card .tf-item-featured .tf-tag-items {
      width: 90%;
      display: flex;
      flex-direction: column;
      max-height: 90%;
      overflow: hidden;
      position: absolute;
      top: 20px;
      left: 20px;
      align-items: baseline;
      text-transform: capitalize; }
      .tf-search-results-list .tf-item-card .tf-item-featured .tf-tag-items .tf-multiple-tag-item {
        padding: 6px 12px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 500;
        line-height: 1;
        margin-top: 5px; }
    @media only screen and (max-width: 991.98px) {
      .tf-search-results-list .tf-item-card .tf-item-featured {
        flex-basis: 100%; } }
  .tf-search-results-list .tf-item-card .tf-item-details {
    flex-basis: 59%;
    padding: 20px 30px; }
    @media only screen and (max-width: 767.98px) {
      .tf-search-results-list .tf-item-card .tf-item-details {
        padding: 24px 24px; } }
    .tf-search-results-list .tf-item-card .tf-item-details i {
      color: #0E3DD8; }
    .tf-search-results-list .tf-item-card .tf-item-details p {
      font-size: 12px !important; }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-title-meta {
      align-items: baseline; }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-title h2 {
      font-size: 22px !important;
      line-height: 1.3; }
      .tf-search-results-list .tf-item-card .tf-item-details .tf-title h2 a {
        color: #060D1C;
        text-decoration: none; }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-archive-features ul {
      margin: 0;
      padding: 0; }
      .tf-search-results-list .tf-item-card .tf-item-details .tf-archive-features ul li {
        display: inline-block;
        background-color: #F1F3F4;
        padding: 6px 10px;
        border-radius: 5px;
        margin: 10px 10px 0px 0px;
        font-size: 12px; }
        .tf-search-results-list .tf-item-card .tf-item-details .tf-archive-features ul li i {
          margin-right: 5px;
          color: #686E7A; }
        .tf-search-results-list .tf-item-card .tf-item-details .tf-archive-features ul li img {
          margin-right: 5px; }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-details p {
      line-height: 1.5; }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-post-footer .tf-pricing {
      font-size: 12px;
      font-weight: 400; }
      .tf-search-results-list .tf-item-card .tf-item-details .tf-post-footer .tf-pricing del {
        font-size: 16px; }
        .tf-search-results-list .tf-item-card .tf-item-details .tf-post-footer .tf-pricing del span {
          font-size: 16px; }
      .tf-search-results-list .tf-item-card .tf-item-details .tf-post-footer .tf-pricing span {
        font-size: 20px;
        color: #0E3DD8;
        font-weight: 500; }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-post-footer .bttn-secondary {
      font-size: 14px; }
    @media only screen and (max-width: 991.98px) {
      .tf-search-results-list .tf-item-card .tf-item-details {
        flex-basis: 100%; } }
    .tf-search-results-list .tf-item-card .tf-item-details .tf-reviews {
      gap: 8px;
      align-items: center; }
      .tf-search-results-list .tf-item-card .tf-item-details .tf-reviews .tf-avarage-review {
        font-size: 12px;
        line-height: 1rem; }
  .tf-search-results-list .tf-item-card .tf-post-footer {
    border-top: 1px solid #ddd;
    padding-top: 16px; }

.tf-search-results-list .tf-pagination-bar {
  display: block;
  width: 100%; }
  @media only screen and (max-width: 767.98px) {
    .tf-search-results-list .tf-pagination-bar {
      margin-bottom: 30px; } }
  .tf-search-results-list .tf-pagination-bar .tf_posts_navigation, .tf-search-results-list .tf-pagination-bar #tf_posts_navigation_bar {
    margin-top: 40px;
    width: 100%; }
    .tf-search-results-list .tf-pagination-bar .tf_posts_navigation .page-numbers, .tf-search-results-list .tf-pagination-bar #tf_posts_navigation_bar .page-numbers {
      font-size: 14px;
      color: #686E7A !important;
      text-decoration: none;
      padding: 12px 18px;
      background: #fff !important;
      box-shadow: 0px 10px 18px rgba(88, 128, 160, 0.05);
      border-radius: 5px;
      display: inline-block; }
    .tf-search-results-list .tf-pagination-bar .tf_posts_navigation .page-numbers.current, .tf-search-results-list .tf-pagination-bar #tf_posts_navigation_bar .page-numbers.current {
      background: #0E3DD8 !important;
      color: #fff !important; }

.tf-search-results-list .tf_posts_navigation.tf_posts_ajax_navigation,
.tf-search-results-list .tf_posts_navigation.tf_posts_page_navigation {
  margin-top: 40px;
  width: 100%; }
  .tf-search-results-list .tf_posts_navigation.tf_posts_ajax_navigation .page-numbers,
  .tf-search-results-list .tf_posts_navigation.tf_posts_page_navigation .page-numbers {
    font-size: 14px;
    color: #686E7A !important;
    text-decoration: none;
    padding: 12px 18px;
    background: #fff !important;
    box-shadow: 0px 10px 18px rgba(88, 128, 160, 0.05);
    border-radius: 5px;
    display: inline-block; }
  .tf-search-results-list .tf_posts_navigation.tf_posts_ajax_navigation .page-numbers.current,
  .tf-search-results-list .tf_posts_navigation.tf_posts_page_navigation .page-numbers.current {
    background: #0E3DD8 !important;
    color: #fff !important; }

.tf-result-previews {
  position: relative; }
  .tf-result-previews #tf_ajax_searchresult_loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99999;
    display: none; }
    .tf-result-previews #tf_ajax_searchresult_loader #tf-searchresult-loader-img {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%; }
      .tf-result-previews #tf_ajax_searchresult_loader #tf-searchresult-loader-img img {
        width: 120px; }

.tf-archive-design-1 label input:checked ~ .checkmark {
  background-color: #0E3DD8 !important; }

.tf-archive-design-1 .tf-archive-right .tf-destination-box .autocomplete-items {
  max-height: 120px;
  overflow: scroll;
  overflow-x: hidden;
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  top: 100%;
  left: 0;
  right: 0; }
  .tf-archive-design-1 .tf-archive-right .tf-destination-box .autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: #444; }

.tf-archive-design-1 .tf-archive-right .tf_acrselection .tf-field {
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px !important; }
  .tf-archive-design-1 .tf-archive-right .tf_acrselection .tf-field .acr-label {
    align-items: center; }
    .tf-archive-design-1 .tf-archive-right .tf_acrselection .tf-field .acr-label i {
      position: static;
      margin-right: 5px; }

.tf-archive-design-1 .tf-archive-right .tf-booking-bttns button {
  width: 100%; }

.tf-archive-design-1 .tf-archive-right .tf-related-single {
  border-top: 1px solid #EAEFF3;
  margin-bottom: 24px;
  padding-top: 24px; }
  .tf-archive-design-1 .tf-archive-right .tf-related-single h2 {
    font-size: 16px; }
  .tf-archive-design-1 .tf-archive-right .tf-related-single .tf-related-item-featured {
    min-width: 100px;
    height: 85px; }
    .tf-archive-design-1 .tf-archive-right .tf-related-single .tf-related-item-featured img {
      height: 100%;
      object-fit: cover;
      border-radius: 5px; }

.tf-archive-design-1 .tf-archive-right .tf_widget .tf-hotel-result-price-range,
.tf-archive-design-1 .tf-archive-right .tf_widget .tf-tour-result-price-range {
  margin-top: 20px;
  padding-bottom: 20px; }

.tf-archive-design-1 .tf-archive-right .tf_widget h4 {
  font-size: 20px;
  font-weight: 500; }

.tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider__track {
  background: #EEE;
  height: 10px;
  box-shadow: none !important;
  margin: 30px 0px 10px 0px; }

.tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider_dark {
  padding: 0px !important; }
  .tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider_dark .al-range-slider__bar {
    background: #0E3DD8 !important;
    box-shadow: none !important; }

.tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider__knob {
  background: #0E3DD8 !important;
  height: 15px;
  width: 15px;
  box-shadow: none !important;
  border: 3px solid #0E3DD8 !important; }
  .tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider__knob:first-child span {
    left: 10px !important; }

.tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider__tooltip {
  background: #0E3DD8 !important;
  border-radius: 5px;
  box-shadow: none;
  padding: 3px 10px;
  color: #fff !important;
  font-size: 13px !important;
  margin-bottom: 0px !important; }

.tf-archive-design-1 .tf-archive-right .tf_widget .al-range-slider__input.js-al-range-slider__input {
  display: none !important; }

.tf-archive-design-1 .tf-archive-right #tf__booking_sidebar {
  padding: 30px;
  box-shadow: 0px 13px 30px 0px #e0e8ee;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 30px; }
  .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget {
    border: 0px solid;
    background: inherit;
    border-radius: 0px;
    margin-bottom: 26px;
    border-bottom: 1px solid #E3E6F0;
    padding: 0px !important; }
    .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-widget-title {
      background-color: inherit;
      border: 0px solid;
      padding: 0px;
      border-radius: 0px;
      height: auto;
      pointer-events: none; }
      .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-widget-title h4 {
        font-family: inherit;
        font-size: 20px;
        font-weight: 500; }
      .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-widget-title i {
        display: none; }
    .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter {
      padding: 0; }
      .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter ul {
        padding: 0; }
        .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter ul li {
          padding: 6px 0px;
          margin: 5px 0px; }
          .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter ul li label {
            position: relative;
            cursor: pointer;
            width: 100%;
            display: inline-block;
            padding-left: 32px;
            line-height: 1.3;
            font-size: 16px;
            font-weight: 400; }
            .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter ul li label input {
              display: none; }
            .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter ul li label .checkmark {
              position: absolute;
              top: 0px;
              left: 0px;
              height: 20px;
              width: 20px;
              background-color: #fff;
              border-radius: 5px;
              border: 1px solid #D2D2D6; }
        .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter ul li.active {
          background: transparent !important; }
      .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter a {
        text-align: left;
        color: #0E3DD8 !important;
        text-transform: capitalize;
        margin-bottom: 26px;
        font-weight: 400;
        text-decoration: none; }
        .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter a span {
          margin-left: 8px; }
      .tf-archive-design-1 .tf-archive-right #tf__booking_sidebar .widget .tf-filter a.see-less {
        display: none;
        text-decoration: none; }

.tf-hotel-design-1 {
  background: inherit; }
  .tf-hotel-design-1 .tf-single-head .more-hotel {
    color: #0E3DD8;
    font-size: 16px;
    font-weight: 500;
    text-decoration: underline; }
  .tf-hotel-design-1 #tf-single-hotel-avail {
    margin: 0px !important; }
    .tf-hotel-design-1 #tf-single-hotel-avail .tf_booking-dates #check-in-out-date {
      background-color: #F3F7FA !important;
      padding-top: 3px !important;
      padding-bottom: 3px !important; }
    .tf-hotel-design-1 #tf-single-hotel-avail .tf_booking-dates #tf-required {
      text-align: center;
      margin-top: 10px !important;
      display: block; }
      .tf-hotel-design-1 #tf-single-hotel-avail .tf_booking-dates #tf-required b {
        font-family: inherit;
        font-weight: 500;
        color: red; }
    .tf-hotel-design-1 #tf-single-hotel-avail .tf-bttn-normal {
      padding: 16px 24px; }
  .tf-hotel-design-1 .tf-tour-booking-box {
    margin-bottom: 25px;
    box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32); }
  .tf-hotel-design-1 .tf-hotel-location-map #hotel-location {
    height: 258px;
    width: 100%;
    max-width: 100%;
    max-height: 100%; }
  .tf-hotel-design-1 .tf-hotel-location-map .tf-hotel-location-preview {
    position: relative;
    margin-bottom: 0px;
    border: 1px solid #ddd; }
    @media only screen and (max-width: 767.98px) {
      .tf-hotel-design-1 .tf-hotel-location-map .tf-hotel-location-preview {
        margin-bottom: 30px; } }
    .tf-hotel-design-1 .tf-hotel-location-map .tf-hotel-location-preview iframe {
      height: 260px !important; }
    .tf-hotel-design-1 .tf-hotel-location-map .tf-hotel-location-preview a.map-pre {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none; }
      .tf-hotel-design-1 .tf-hotel-location-map .tf-hotel-location-preview a.map-pre i {
        height: 80px;
        width: 80px;
        text-align: center;
        line-height: 80px;
        color: #fff;
        background-color: #0E3DD8;
        border-radius: 50%;
        padding: 0;
        font-size: 20px; }
  @media only screen and (max-width: 767.98px) {
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms {
      overflow-x: scroll;
      width: auto; } }
  .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .hotel-room-wrap {
    overflow-x: unset !important; }
  .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table {
    background-color: #fff;
    box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
    border-radius: 5px;
    margin-bottom: 0px;
    border-collapse: collapse;
    width: 100%;
    border-left: none !important; }
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > thead {
      background-color: #0E3DD8; }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > thead tr th {
        text-align: left;
        color: #fff;
        border: 0px solid;
        border-radius: 5px 5px 0px 0px;
        padding: 13px 30px;
        font-size: 16px;
        font-weight: 500;
        font-family: inherit;
        border: 1px solid #ddd; }
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td {
      border: 1px solid #ddd;
      padding: 8px;
      border-right: none; }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-room-preview-img {
        width: 170px;
        margin-right: 20px;
        border-radius: 4px;
        position: relative; }
        @media only screen and (max-width: 767.98px) {
          .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-room-preview-img {
            width: 100% !important;
            margin-bottom: 10px; } }
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-room-preview-img img {
          border-radius: 4px; }
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-room-preview-img span {
          display: inline-block;
          font-weight: 500;
          background: #FF6B00;
          border-radius: 4px 0px 0px 0px;
          padding: 3px 14px;
          position: absolute;
          left: 0;
          top: 0;
          color: #fff;
          font-size: 14px; }
      @media only screen and (min-width: 767.99px) and (max-width: 991px) {
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos {
          width: 60% !important; } }
      @media only screen and (max-width: 767.98px) {
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos {
          width: 100% !important; } }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos .tf-room-type h3 {
        font-size: 25px; }
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos .tf-room-type h3 a {
          color: #060D1C;
          text-decoration: none; }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos ul {
        margin: 0;
        padding: 0; }
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos ul li {
          display: inline-block;
          background: #F1F3F4;
          border-radius: 5px;
          padding: 10px;
          margin: 5px 10px 5px 0px;
          line-height: 1rem;
          font-size: 12px; }
          .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos ul li i,
          .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos ul li img {
            margin-right: 5px; }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .tf-features-infos > a {
        color: #0E3DD8; }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td .hotel-room-book {
        width: 100%; }
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.description {
      width: 60%;
      padding-left: 30px;
      padding-top: 30px;
      padding-bottom: 30px;
      border-left: 0px; }
      @media only screen and (max-width: 767.98px) {
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.description {
          width: auto; } }
    @media only screen and (max-width: 767.98px) {
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.pax .tf-tooltip {
        width: 100px; } }
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.reserve .hotel-room-availability,
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.reserve .tf_air_service {
      color: #0E3DD8; }
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.reserve .room-selection-wrap select {
      border: 1px solid #ddd; }
    .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.options ul {
      list-style: none;
      margin-left: 0;
      margin-bottom: 0; }
      .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.options ul li {
        margin-bottom: 4px; }
        .tf-hotel-design-1 .tf-rooms-sections .tf-rooms .tf-availability-table > tbody tr td.options ul li .room-extra-icon {
          margin-right: 5px; }
  .tf-hotel-design-1 .tf-hotel-single-features ul {
    margin: 0;
    padding: 0; }
    .tf-hotel-design-1 .tf-hotel-single-features ul li {
      display: inline-flex;
      align-items: center;
      background-color: #fff;
      border-radius: 5px;
      padding: 10px;
      text-transform: capitalize;
      margin: 5px 5px 5px 0px;
      box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
      font-size: 15px; }
      .tf-hotel-design-1 .tf-hotel-single-features ul li i {
        margin-right: 8px; }
      .tf-hotel-design-1 .tf-hotel-single-features ul li img {
        margin-right: 8px; }
  .tf-hotel-design-1 .tf-hotel-single-places ul {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    list-style-type: none;
    grid-gap: 5px; }
    .tf-hotel-design-1 .tf-hotel-single-places ul li {
      display: inline-flex;
      justify-content: space-between;
      background-color: #fff;
      border-radius: 5px;
      padding: 10px;
      text-transform: capitalize;
      margin: 5px 5px 5px 0px;
      box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
      font-size: 15px; }
      .tf-hotel-design-1 .tf-hotel-single-places ul li i {
        margin-right: 8px; }
    @media only screen and (max-width: 767.98px) {
      .tf-hotel-design-1 .tf-hotel-single-places ul {
        grid-template-columns: 100%; } }
    @media only screen and (min-width: 767.99px) and (max-width: 991px) {
      .tf-hotel-design-1 .tf-hotel-single-places ul {
        grid-template-columns: repeat(3, 33%); } }
  .tf-hotel-design-1 .tf-hotel-facilities-section .active {
    display: none; }
  .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container {
    padding: 32px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32); }
    .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer; }
      .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area .tf-section-title {
        margin-bottom: 0px; }
      .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area i {
        font-size: 32px;
        color: #0E3DD8; }
      .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-title-area .hotel-facilities-icon-down {
        display: none; }
    .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area {
      margin-top: 24px; }
      .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item {
        margin-bottom: 24px; }
        .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item .hotel-single-facility-title {
          color: #060D1C;
          font-family: inherit;
          font-size: 20px;
          font-style: normal;
          font-weight: 400;
          line-height: normal;
          margin-bottom: 16px; }
        .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul {
          display: flex;
          list-style: none;
          flex-wrap: wrap;
          vertical-align: baseline;
          gap: 16px;
          margin: 0px;
          padding: 0px; }
          @media only screen and (max-width: 767.98px) {
            .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul {
              flex-direction: column; } }
          .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul li {
            display: flex;
            color: #686E7A;
            font-family: inherit;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 125%;
            vertical-align: baseline; }
            .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul li span {
              margin-right: 8px; }
              @media only screen and (max-width: 767.98px) {
                .tf-hotel-design-1 .tf-hotel-facilities-section .tf-hotel-facilities-container .tf-hotel-facilities-content-area .hotel-facility-item ul li span {
                  min-width: 16px; } }
  .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-enquiry {
    flex-basis: 32%;
    padding-right: 30px; }
    @media only screen and (max-width: 767.98px) {
      .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-enquiry {
        flex-basis: 100%;
        padding-right: 0px; } }
    .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-enquiry .tf-ask-enquiry {
      background-color: #fff;
      box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
      padding: 30px; }
      .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-enquiry .tf-ask-enquiry h3 {
        font-size: 25px; }
  .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs {
    flex-basis: 68%; }
    @media only screen and (max-width: 767.98px) {
      .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs {
        flex-basis: 100%;
        margin-top: 30px; } }
    .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs .tf-faq-wrapper .tf-faq-single {
      border-bottom: 0px solid; }
      .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs .tf-faq-wrapper .tf-faq-single .tf-faq-single-inner {
        margin: 0px 0px 30px 0px;
        background: #FFFFFF;
        box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
        transition: .3s all ease; }
        .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs .tf-faq-wrapper .tf-faq-single .tf-faq-single-inner:hover {
          background: #F6F7FB;
          box-shadow: 0px 13px 30px 0px #E0E8EE; }
        .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs .tf-faq-wrapper .tf-faq-single .tf-faq-single-inner h3 {
          font-size: 20px; }
    .tf-hotel-design-1 .tf-hotel-faqs-section .tf-hotel-faqs .tf-faq-wrapper .tf-faq-single.active .tf-faq-single-inner {
      background: #F6F7FB;
      box-shadow: 0px 13px 30px 0px #E0E8EE; }
  .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box {
    background: transparent;
    border-radius: 0px;
    flex-basis: 20%;
    box-shadow: none;
    padding: 0px; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-inner {
      gap: 0px; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data {
      flex-basis: 30%;
      margin-right: 30px;
      background-color: #fff;
      box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
      padding: 30px; }
      @media only screen and (min-width: 767.99px) and (max-width: 991px) {
        .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data {
          flex-basis: 28%;
          margin-right: 28px; } }
      @media only screen and (max-width: 767.98px) {
        .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data {
          flex-basis: 100%;
          margin-right: 0px;
          margin-bottom: 20px; } }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-list {
      margin-top: 0px;
      text-align: center;
      width: 100%; }
      .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-list li {
        display: block; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box p, .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box li {
      text-transform: capitalize; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-average p {
      background: #ECF2FF;
      text-align: center;
      font-size: 30px !important;
      color: #0E3DD8;
      font-weight: 600 !important;
      border-radius: 5px;
      width: 100%;
      height: 75px;
      display: flex;
      align-items: center;
      justify-content: center; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-label p {
      color: #060D1C;
      font-weight: 500; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-all-info li {
      font-size: 14px;
      color: #0E3DD8; }
    .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features {
      flex-basis: 68%;
      background-color: #fff;
      box-shadow: 0px 13px 30px 0px rgba(224, 232, 238, 0.32);
      padding: 30px; }
      @media only screen and (max-width: 767.98px) {
        .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features {
          flex-basis: 100%; } }
      .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-percent-progress {
        column-gap: 70px;
        flex-wrap: wrap; }
        @media only screen and (min-width: 767.99px) and (max-width: 991px) {
          .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-percent-progress {
            column-gap: 24px; } }
        @media only screen and (max-width: 767.98px) {
          .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-percent-progress {
            column-gap: 16px; } }
      .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-progress-bar {
        height: 7px;
        background: #EAEDF6;
        border-radius: 7px; }
      .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-progress-item {
        width: 42%;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767.98px) {
          .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-progress-item {
            width: 40%; } }
        @media only screen and (min-width: 320px) and (max-width: 360px) {
          .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-progress-item {
            width: 100%; } }
        @media only screen and (min-width: 767.99px) and (max-width: 991px) {
          .tf-hotel-design-1 .tf-review-wrapper .tf-review-data.tf-box .tf-review-data-features .tf-progress-item {
            width: 42%; } }

.tf-hotel-design-1-popup {
  padding: 0px !important; }
  .tf-hotel-design-1-popup .tf-details-qc-slider .tf-details-qcs img {
    width: 100%; }
  .tf-hotel-design-1-popup .tf-details-qc-slider-nav {
    margin-top: 0px; }
    .tf-hotel-design-1-popup .tf-details-qc-slider-nav .tf-details-qcs.is-active img {
      border: 5px solid #1F2937; }
    .tf-hotel-design-1-popup .tf-details-qc-slider-nav .tf-details-qcs img {
      min-height: 50px;
      max-height: 50px; }
  .tf-hotel-design-1-popup .fancybox-button.fancybox-close-small {
    right: 20px; }
  .tf-hotel-design-1-popup .tf-hotel-details-info {
    padding-right: 25px; }
    @media only screen and (max-width: 767.98px) {
      .tf-hotel-design-1-popup .tf-hotel-details-info {
        padding-right: 10px;
        padding-left: 10px !important;
        margin: 0 !important;
        overflow: auto !important;
        max-height: none !important; } }
    .tf-hotel-design-1-popup .tf-hotel-details-info .tf-template-1.tf-room-adv-info ul {
      margin: 0;
      padding: 0; }
      .tf-hotel-design-1-popup .tf-hotel-details-info .tf-template-1.tf-room-adv-info ul li {
        display: inline-block;
        border-radius: 5px;
        padding: 5px 10px 5px 0px;
        margin: 4px 5px 4px 0px;
        color: #6B7280 !important;
        font-size: 16px; }
        .tf-hotel-design-1-popup .tf-hotel-details-info .tf-template-1.tf-room-adv-info ul li i {
          color: #6B7280 !important; }
    .tf-hotel-design-1-popup .tf-hotel-details-info .tf-template-1.tf-room-adv-info p {
      margin: 10px 0px;
      color: #6B7280; }
    .tf-hotel-design-1-popup .tf-hotel-details-info .tf-template-1.tf-room-adv-info h4 {
      font-size: 20px;
      margin: 15px 0px 10px 0px;
      color: #1F2937; }

html {
  scroll-behavior: smooth; }

.tf_template_3_global_layouts .ast-container,
.tf_template_3_global_layouts .container,
.tf_template_3_global_layouts .col-full {
  max-width: none !important;
  padding: 0px !important; }

.tf_template_3_global_layouts .site-primary-header-wrap,
.tf_template_3_global_layouts .header-container.container,
.tf_template_3_global_layouts #footer .footer-bottom,
.tf_template_3_global_layouts .page-top,
.tf_template_3_global_layouts #masthead.site-header .col-full,
.tf_template_3_global_layouts .storefront-breadcrumb,
.tf_template_3_global_layouts #colophon.site-footer .site-info {
  padding-left: 32px !important;
  padding-right: 32px !important; }

.tf_template_3_single_hotel .flatpickr-calendar {
  left: 320px !important; }
  @media only screen and (max-width: 1920px) {
    .tf_template_3_single_hotel .flatpickr-calendar {
      left: 240px !important; } }
  @media only screen and (max-width: 1280px) {
    .tf_template_3_single_hotel .flatpickr-calendar {
      left: 100px !important; } }
  @media only screen and (max-width: 1024px) {
    .tf_template_3_single_hotel .flatpickr-calendar {
      left: 80px !important; } }
  @media only screen and (max-width: 660px) {
    .tf_template_3_single_hotel .flatpickr-calendar {
      left: 20px !important; } }

.tf_template_3_hotel_archive .flatpickr-calendar {
  left: 495px !important; }
  @media only screen and (max-width: 1280px) {
    .tf_template_3_hotel_archive .flatpickr-calendar {
      left: 285px !important; } }
  @media only screen and (max-width: 1024px) {
    .tf_template_3_hotel_archive .flatpickr-calendar {
      left: 170px !important; } }
  @media only screen and (max-width: 660px) {
    .tf_template_3_hotel_archive .flatpickr-calendar {
      left: 30px !important; } }

.tf-template-3 {
  background: #FDF9F3;
  color: #99948D;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.80px;
  width: 100%; }
  .tf-template-3 .tf-container {
    margin: 0 auto;
    max-width: 1520px;
    padding: 0; }
    @media only screen and (max-width: 1600px) {
      .tf-template-3 .tf-container {
        max-width: 1320px; } }
    @media only screen and (max-width: 1366px) {
      .tf-template-3 .tf-container {
        padding: 0px 56px;
        max-width: none; } }
    @media only screen and (max-width: 1280px) {
      .tf-template-3 .tf-container {
        padding: 0px 32px; } }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-container {
        padding: 0px; } }
  .tf-template-3 h1,
  .tf-template-3 h2,
  .tf-template-3 h3,
  .tf-template-3 h4,
  .tf-template-3 h5,
  .tf-template-3 h6 {
    font-weight: 700;
    margin: 0 0 .3em 0;
    line-height: 1.3; }
  .tf-template-3 h1 {
    font-size: 40px;
    line-height: 52px; }
  .tf-template-3 h2 {
    font-size: 32px;
    line-height: 38.40px; }
  .tf-template-3 p {
    margin: 0; }
  .tf-template-3 select {
    appearance: none;
    background-position: center right;
    padding-right: 22px;
    padding-top: 4px;
    background-repeat: no-repeat;
    background-size: 20px; }
  .tf-template-3 select:focus {
    outline: none; }
  .tf-template-3 .tf-section {
    background: #FCF4E8;
    padding: 32px;
    margin-bottom: 32px; }
  .tf-template-3 .tf-section-title {
    margin-bottom: 32px;
    color: #595349; }
  .tf-template-3 img.tf-payment-card {
    width: 34px;
    height: 24px;
    margin-right: 16px; }
  .tf-template-3 a {
    display: inherit; }
  .tf-template-3 div {
    scroll-margin-top: 250px; }
  .tf-template-3 .tf-mobile {
    display: none; }
  .tf-template-3 .tf-popup-buttons {
    cursor: pointer; }
  .tf-template-3 button {
    cursor: pointer; }
  .tf-template-3 .tf-scroll-bar {
    overflow: hidden;
    overflow-y: scroll;
    height: inherit;
    /* Track */
    /* Handle */ }
    .tf-template-3 .tf-scroll-bar::-webkit-scrollbar {
      width: 8px; }
    .tf-template-3 .tf-scroll-bar::-webkit-scrollbar-track {
      background: #D6D4D2; }
    .tf-template-3 .tf-scroll-bar::-webkit-scrollbar-thumb {
      background: #595349;
      border-radius: 50px;
      overflow: hidden; }
    .tf-template-3 .tf-scroll-bar .tf-popup-image {
      width: calc(33.33% - 7px);
      height: fit-content;
      aspect-ratio: 1/1;
      object-fit: cover; }

.tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin,
.tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout {
  max-width: none;
  padding-left: 83px;
  padding-right: 83px; }

.tf-template-3.tf-hotel-single .tf-single-pb-56 {
  padding-bottom: 56px !important; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3.tf-hotel-single .tf-single-pb-56 {
      padding-bottom: 32px; } }

.tf-template-3.tf-hotel-single .tf-content-wrapper .tf-container .tf-section.tf-policies-wrapper {
  margin: 0; }

.tf-template-3.tf-tour-single {
  margin-bottom: 0px; }
  .tf-template-3.tf-tour-single .tf-single-pb-56 {
    padding-bottom: 56px !important; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3.tf-tour-single .tf-single-pb-56 {
        padding-bottom: 32px; } }
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-container .tf-section.tf-policies-wrapper {
    margin: 0; }

.tf_template_3_global_layouts #tf-ask-question .tf-aq-outer {
  background: #FDF9F3;
  border-radius: 0px; }
  .tf_template_3_global_layouts #tf-ask-question .tf-aq-outer h4 {
    color: #595349;
    text-align: center;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 120%;
    margin-bottom: 32px; }

.tf_template_3_global_layouts #tf-ask-question .tf-aq-field input {
  border: 1px solid #595349;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #C1BFBB;
  background-color: #fdf9f3;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  height: 45px;
  padding: 12px 14px;
  border-radius: 0px; }
  .tf_template_3_global_layouts #tf-ask-question .tf-aq-field input::placeholder {
    color: #C1BFBB; }

.tf_template_3_global_layouts #tf-ask-question .tf-aq-field textarea {
  border: 1px solid #595349;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: #fdf9f3;
  color: #C1BFBB;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  padding: 12px 14px;
  border-radius: 0px; }
  .tf_template_3_global_layouts #tf-ask-question .tf-aq-field textarea::placeholder {
    color: #C1BFBB; }

.tf_template_3_global_layouts #tf-ask-question button {
  background: #b58e53 !important;
  border-color: #b58e53 !important;
  border-radius: 0px !important;
  padding: 12px 32px !important;
  color: #fdf9f3 !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 150% !important;
  transition: .3s all ease; }
  .tf_template_3_global_layouts #tf-ask-question button::after {
    position: static !important; }
  .tf_template_3_global_layouts #tf-ask-question button:hover {
    background: #917242 !important; }

.tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services {
  background: #FDF9F3;
  border-radius: 0px;
  gap: 0px; }
  .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf-hotel-services-text h3 {
    color: #595349;
    text-align: center;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 120%;
    /* 38.4px */
    margin-bottom: 8px; }
  .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf-hotel-services-text p {
    color: #99948D;
    text-align: center;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 130%;
    /* 20.8px */
    margin-top: 0px;
    margin-bottom: 32px; }
  .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf-hotel-service label {
    color: #595349;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 6px;
    display: block; }
  .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf-hotel-service select {
    border-radius: 0px;
    background: #FDF9F3;
    height: 45px;
    border: 1px solid #595349; }
  .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf-airport-pickup-response {
    margin-top: 15px; }
  .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf_button_group {
    height: auto; }
    .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf_button_group button {
      background: #b58e53 !important;
      border-color: #b58e53 !important;
      border-radius: 0px !important;
      padding: 12px 32px !important;
      color: #fdf9f3 !important;
      font-size: 16px !important;
      font-style: normal;
      font-weight: 700;
      line-height: 150% !important;
      transition: .3s all ease;
      cursor: pointer; }
      .tf_template_3_global_layouts #tf-hotel-services .tf-hotel-services .tf_button_group button:hover {
        background: #917242 !important; }

.tf-template-3 .tf-hero-section-wrap {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 56px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-hero-section-wrap {
      margin-bottom: 16px; } }
  .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content {
    min-height: 513px;
    max-height: 513px;
    margin: 0;
    padding: 0; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content {
        min-height: 350px;
        max-height: 350px; } }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content {
        min-height: 210px !important;
        max-height: 210px !important; } }
    .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      margin-top: 32px;
      display: flex;
      gap: 16px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share {
          margin-top: 90px; } }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share {
          margin-top: 64px;
          padding-right: 16px; } }
      @media only screen and (max-width: 480px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share {
          margin-top: 16px;
          padding-right: 16px; } }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share a.tf-share-toggle,
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share a.tf-wishlist {
        margin: 0;
        padding: 0;
        height: 32px;
        width: 32px;
        border-radius: 100px;
        background: rgba(181, 142, 83, 0.5);
        box-shadow: 0px 14px 30px 0px rgba(0, 23, 100, 0.07);
        text-align: center;
        line-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FDF9F3;
        cursor: pointer;
        font-size: 16px;
        text-decoration: none; }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share a.tf-share-toggle.actives,
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share a.tf-wishlist.actives {
        background: #B58E53;
        box-shadow: 0px 14px 30px 0px rgba(0, 23, 100, 0.07); }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box {
        display: inline-flex;
        align-items: center; }
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share {
          display: none;
          margin: 0;
          padding: 0;
          align-items: center;
          list-style: none; }
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li a {
            margin-right: 16px;
            text-decoration: none; }
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li a i {
              font-size: 16px;
              color: #FDF9F3; }
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li:last-child a {
            margin-right: 9px; }
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li #share_link_button {
            padding: 0px;
            background-color: transparent;
            border: 0px solid;
            display: inline-flex;
            align-items: center;
            gap: 5px; }
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li #share_link_button span {
              display: none;
              font-size: 13px;
              color: #FDF9F3; }
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li #share_link_button.copied span {
            display: inline-block; }
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share li input {
            padding: 0;
            height: 0px;
            width: 0px; }
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-wish-and-share .tf-off-canvas-share-box .tf-off-canvas-share.show {
          display: inline-flex; }
    .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-bottom: 48px;
      margin-top: 0px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area {
          align-items: center;
          padding: 0px 0 32px 0; } }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area {
          padding: 0px 16px 16px 16px; } }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title {
        text-align: left;
        width: 100%; }
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title h1 {
          color: #FDF9F3;
          margin-bottom: 16px; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title h1 {
              font-size: 32px !important; } }
          @media only screen and (max-width: 767.98px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title h1 {
              font-size: 20px !important;
              margin-bottom: 8px; } }
          @media only screen and (max-width: 480px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title h1 {
              display: -webkit-box;
              overflow: hidden;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical; } }
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title .tf-title-meta {
          font-size: 24px;
          font-weight: 400;
          line-height: 31px;
          color: #FDF9F3;
          display: flex;
          gap: 8px;
          width: 80%; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title .tf-title-meta {
              font-size: 16px !important;
              width: auto; } }
          @media only screen and (max-width: 767.98px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title .tf-title-meta {
              font-size: 14px !important;
              line-height: 130%;
              /* 18.2px */ } }
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title .tf-title-meta a {
            color: #FDF9F3;
            text-decoration: none;
            font-size: 24px;
            font-weight: 400;
            line-height: 31.20px; }
            @media only screen and (max-width: 1024px) {
              .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title .tf-title-meta a {
                font-size: 16px !important; } }
            @media only screen and (max-width: 767.98px) {
              .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-head-title .tf-title-meta a {
                font-size: 14px !important;
                line-height: 130%;
                /* 18.2px */ } }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos {
        display: flex;
        gap: 16px; }
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos > div {
          height: 80px;
          width: 200px;
          display: flex;
          align-items: center;
          justify-content: center;
          background: rgba(48, 40, 28, 0.8);
          color: #fff;
          background-size: cover;
          background-position: center;
          cursor: pointer; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos > div {
              width: 103px;
              height: 40px; } }
          @media only screen and (max-width: 767.98px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos > div {
              width: 52px !important;
              height: 32px !important; } }
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos a {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%;
          width: 100%;
          color: #FDF9F3; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos a svg {
              width: 16px !important; } }
          @media only screen and (max-width: 767.98px) {
            .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos a svg {
              width: 12px !important; } }
  .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content {
    display: flex;
    justify-content: flex-end; }
    .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-head-title {
      padding: 0 0 48px 0;
      display: flex;
      align-items: center;
      gap: 32px;
      color: #FDF9F3; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-head-title {
          display: flow-root;
          padding: 0px 0 30px 0; } }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-head-title {
          align-items: center;
          padding: 0px 16px 16px 16px; } }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-head-title h1 {
        color: #FDF9F3;
        margin: 0px;
        font-size: 40px !important; }
        @media only screen and (max-width: 767.98px) {
          .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-head-title h1 {
            font-size: 20px !important; } }
    .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-title-meta {
      font-size: 24px;
      line-height: 1.3;
      padding-top: 8px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-title-meta {
          margin-top: 6px; } }
      .tf-template-3 .tf-hero-section-wrap .tf-container .tf-archive-hero-content .tf-title-meta p {
        color: #FDF9F3;
        margin: 0px;
        font-size: 24px !important;
        line-height: 1.3; }

.tf-template-3 .tf-content-wrapper .tf-details {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 40px;
  align-items: start; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-content-wrapper .tf-details {
      gap: 24px; } }
  .tf-template-3 .tf-content-wrapper .tf-details .tf-archive-search-form {
    width: 100%; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-archive-search-form {
        margin-left: 16px;
        margin-right: 16px;
        width: auto; } }
  .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left {
    width: calc(100% - 520px);
    display: flex;
    flex-direction: column;
    gap: 32px; }
    @media only screen and (max-width: 1600px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left {
        width: calc(100% - 360px); } }
    @media only screen and (max-width: 1366px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left {
        width: calc(100% - 323px); } }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left {
        width: calc(100% - 246px);
        gap: 16px; } }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu {
      background: #FCF4E8;
      padding: 16px 30px;
      position: sticky;
      left: 0;
      top: 0;
      z-index: 99; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        gap: 32px;
        flex-wrap: wrap; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu ul li a {
          text-decoration: none;
          font-size: 16px;
          font-weight: 600;
          line-height: 20.80px;
          color: #99948D;
          border-bottom: 2px solid;
          padding-bottom: 5px;
          display: inline-block;
          border-color: transparent; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu ul li a {
              font-size: 12px !important; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu ul li a.tf-hashlink {
            border-color: #595349;
            color: #595349; }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper {
      padding: 0 32px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description p {
        margin: 0;
        padding: 0; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description .tf-short-description {
        color: #99948D;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        /* 20.8px */ }
        @media only screen and (max-width: 767.98px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description .tf-short-description {
            font-size: 14px; } }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description span.tf-see-description,
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description span.tf-see-less-description {
        color: #595349;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        cursor: pointer; }
        @media only screen and (max-width: 767.98px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description span.tf-see-description,
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description span.tf-see-less-description {
            font-size: 14px; } }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description .tf-full-description {
        display: none;
        color: #99948D;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        /* 20.8px */ }
        @media only screen and (max-width: 767.98px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-description .tf-full-description {
            font-size: 14px; } }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-popular-facilities span.tf-popular-facilities-title {
        color: #595349;
        font-size: 16px !important;
        display: block;
        font-weight: 600 !important;
        line-height: 20.8px !important;
        margin-bottom: 16px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-popular-facilities > ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 0; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-popular-facilities > ul li {
          width: 25%;
          display: flex; }
          @media only screen and (max-width: 767.98px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-popular-facilities > ul li {
              width: 50% !important; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-popular-facilities > ul li i {
            margin-right: 8px;
            font-size: 20px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper {
        display: grid;
        gap: 24px;
        grid-template-columns: repeat(auto-fit, minmax(23%, 1fr));
        margin-bottom: 32px; }
        @media only screen and (max-width: 1600px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper {
            grid-template-columns: repeat(auto-fit, minmax(23%, 1fr)); } }
        @media only screen and (max-width: 1280px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper {
            grid-template-columns: 1fr 1fr; } }
        @media only screen and (max-width: 991.98px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper {
            grid-template-columns: 1fr 1fr; } }
        @media only screen and (max-width: 480px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper {
            grid-template-columns: 100%; } }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper .tf-feature-block {
          padding: 24px;
          display: flex;
          gap: 16px;
          background: #FCF4E8; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper .tf-feature-block {
              padding: 16px !important;
              gap: 8px; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper .tf-feature-block i {
            font-size: 24px;
            color: #b58e53; }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper .tf-feature-block .tf-feature-block-details h5 {
            color: #595349;
            font-size: 20px !important;
            font-style: normal !important;
            font-weight: 700 !important;
            line-height: 1.3; }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper .tf-feature-block .tf-feature-block-details p {
            color: #99948D;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            /* 20.8px */ }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .slick-track {
        display: flex; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .slick-track .slick-slide {
          height: inherit;
          margin: 0px 5px !important; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .tf-feature-block {
        padding: 24px;
        display: flex;
        gap: 16px;
        background: #FCF4E8; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .tf-feature-block {
            padding: 16px !important;
            gap: 8px; } }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .tf-feature-block i {
          font-size: 24px;
          color: #b58e53; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .tf-feature-block .tf-feature-block-details h5 {
          color: #595349;
          font-size: 20px !important;
          font-style: normal !important;
          font-weight: 700 !important;
          line-height: 1.3; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .tf-feature-block .tf-feature-block-details p {
          color: #99948D;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          /* 20.8px */ }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-slides .tf-feature-block .tf-feature-block-details p span.show_sub_title {
            color: #595349;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            cursor: pointer; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-features-block-wrapper.tf-informations-secations {
        margin: 0px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper {
        display: flex;
        gap: 24px;
        padding: 32px 0;
        background: #FCF4E8;
        margin-bottom: 16px;
        border-radius: 0px;
        box-shadow: none; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper {
            padding: 16px 0px 16px 16px; } }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .tf-highlights-icon {
          width: 230px; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .tf-highlights-icon {
              display: none; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .tf-highlights-icon img {
            width: 230px;
            height: 230px;
            object-fit: contain; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .ft-highlights-details {
          width: 80%;
          padding-right: 32px; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .ft-highlights-details {
              width: 100%;
              padding-right: 16px; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .ft-highlights-details h2 {
            font-weight: 700 !important;
            margin-bottom: 24px; }
            @media only screen and (max-width: 1024px) {
              .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .ft-highlights-details h2 {
                font-size: 24px !important; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .ft-highlights-details p {
            color: #99948D; }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-highlights-wrapper .ft-highlights-details ul {
            margin: 0px 0px 0px 13px;
            padding: 0;
            display: flex;
            gap: 16px;
            flex-direction: column; }
  .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right {
    width: 480px; }
    @media only screen and (max-width: 1600px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right {
        width: 320px; } }
    @media only screen and (max-width: 1366px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right {
        width: 283px !important;
        padding: 32px !important; } }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right {
        width: 222px !important;
        padding: 16px !important; } }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right.tf-archive-right {
      background-color: #FCF4E8;
      padding: 32px;
      width: 480px;
      margin-bottom: 56px; }
      @media only screen and (max-width: 991.98px) {
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right.tf-archive-right {
          display: none;
          position: absolute;
          width: 100% !important;
          z-index: 99;
          top: 200px; } }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right.tf-archive-right {
          top: 100px; } }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget {
      background-color: transparent;
      border: 0px solid;
      margin-bottom: 32px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget:last-child {
        margin-bottom: 0px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-widget-title {
        padding: 0px;
        height: auto;
        background: transparent;
        border: 0px solid;
        border-radius: 8px 8px 0px 0px;
        pointer-events: none; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-widget-title span {
          margin-bottom: 10px !important;
          font-size: 16px !important;
          font-weight: 600 !important;
          line-height: 1.5 !important;
          color: #595349 !important; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-widget-title span {
              font-size: 12px !important; } }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-widget-title i {
          display: none; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter {
        padding: 0; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li {
          margin: 0px;
          padding-left: 0px;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          color: #99948D;
          background: transparent; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li {
              font-size: 12px !important; } }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li label {
            padding-left: 30px;
            line-height: 16px; }
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li label .checkmark {
              border-radius: 4px;
              border: 1px solid #917242;
              background: #FDF9F3;
              height: 16px;
              width: 16px; }
              .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li label .checkmark:hover {
                border-color: #B58E53; }
              .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li label .checkmark::after {
                top: 1px;
                left: 4px;
                border-color: #917242;
                width: 6px;
                height: 9px; }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter ul li label input:checked ~ .checkmark {
            background-color: transparent !important;
            border-color: #917242; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter a.see-more.btn-link,
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter a.see-less.btn-link {
          text-align: left;
          text-decoration: none;
          text-transform: capitalize;
          color: #595349;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          margin-top: 6px; }
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter a.see-more.btn-link span,
          .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter a.see-less.btn-link span {
            display: none; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter a.see-more.btn-link,
            .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-filter a.see-less.btn-link {
              font-size: 12px !important; } }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-hotel-result-price-range,
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-tour-result-price-range,
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .tf-apartment-result-price-range {
        padding-left: 14px;
        padding-right: 14px;
        margin-top: 10px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider__track {
        background: #D6D4D2;
        height: 10px;
        box-shadow: none !important;
        margin: 0px 0px 10px 0px; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider_dark {
        padding: 0px !important; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider_dark .al-range-slider__bar {
          background: #99948D !important;
          box-shadow: none !important; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider__knob {
        background: #FDF9F3 !important;
        height: 24px;
        width: 24px;
        box-shadow: none !important;
        border: 3px solid #99948D !important; }
        .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider__knob:first-child span {
          left: 10px !important; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider__tooltip {
        background: transparent !important;
        box-shadow: none;
        padding: 3px 10px;
        margin-bottom: 0px !important;
        bottom: -40px;
        color: #595349 !important;
        font-size: 16px !important;
        font-style: normal;
        font-weight: 400;
        line-height: 130%; }
      .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget .al-range-slider__input.js-al-range-slider__input {
        display: none !important; }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-right .tf_widget.widget_tf_price_filters {
      margin-bottom: 54px; }
  .tf-template-3 .tf-content-wrapper .tf-details .tf-archive-right.tf-filter-show {
    display: block; }

@media only screen and (max-width: 991.98px) {
  .tf-template-3 .tf-content-wrapper .tf-archive-details .tf-details-left {
    width: 100% !important; } }

.tf-template-3 .tf-details-menu.tf-sticky-menu {
  position: fixed;
  top: 175px;
  box-shadow: 0 0 20px #ddd;
  z-index: 9; }

.tf-template-3 .tf-available-rooms-wrapper {
  background: #FCF4E8;
  padding: 32px;
  margin-bottom: 32px; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    align-items: center; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head {
        margin-bottom: 24px; } }
    @media only screen and (max-width: 991.98px) {
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head {
        margin-bottom: 16px; } }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head > span {
      color: #595349;
      font-size: 24px !important;
      font-weight: 400 !important;
      line-height: 130% !important;
      margin: 0px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head > span {
          font-size: 14px !important; } }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head .tf-archive-filter-showing {
      padding: 0px;
      cursor: pointer;
      display: none; }
      @media only screen and (max-width: 991.98px) {
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head .tf-archive-filter-showing {
          display: block; } }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head .tf-filter {
      padding: 0px;
      cursor: pointer; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head .tf-filter i {
        font-size: 24px;
        color: #595349; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter {
    display: none !important; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter h4 {
      font-weight: 600 !important; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul {
      margin: 0;
      padding: 0;
      display: flex;
      gap: 10px;
      flex-wrap: wrap; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li {
        margin: 0px;
        padding-left: 0px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        color: #99948D; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li {
            font-size: 12px !important; } }
        .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li label {
          padding-left: 25px;
          line-height: 16px;
          margin-left: 0px; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li label .checkmark {
            border-radius: 4px;
            border: 1px solid #917242;
            background: #FDF9F3;
            height: 16px;
            width: 16px; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li label .checkmark:hover {
              border-color: #B58E53; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li label .checkmark::after {
              top: 1px;
              left: 4px;
              border-color: #917242; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter ul li label input:checked ~ .checkmark {
          background-color: transparent !important;
          border-color: #917242; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-room-filter.tf-filter-show {
    display: block !important; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms {
    display: flex;
    flex-direction: column;
    gap: 32px; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms .tf-room-table.hotel-room-wrap {
      overflow: unset; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms .tf-room-table.hotel-room-wrap .tf-available-room {
        margin-bottom: 32px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms .tf-room-table.hotel-room-wrap .tf-available-room:last-child {
          margin-bottom: 0px; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-room {
    background: #FDF9F3;
    display: flex; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery {
      min-width: 230px;
      max-width: 230px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 10px;
      height: fit-content; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(1) {
        width: 100%;
        height: 270px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+2) {
        width: 110px;
        height: 110px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery.tf-popup-buttons {
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery.tf-popup-buttons img {
          height: 30px;
          width: 30px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery.tf-popup-buttons:after {
          position: absolute;
          content: "";
          height: 100%;
          width: 100%;
          background: #000;
          opacity: .5;
          z-index: -1; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery.tf-no-room-gallery {
        height: 390px; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents {
      width: calc(100% - 230px); }
      @media only screen and (max-width: 991.98px) {
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents {
          width: 100%; } }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-section-title {
        margin-bottom: 0;
        color: #595349;
        padding: 24px 24px 0; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents h4 {
        margin-bottom: 16px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-room-info-list {
        margin-bottom: 24px !important; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-option-list {
        margin-bottom: 24px !important;
        display: flex !important;
        flex-direction: column;
        gap: 12px 5px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-available-room-content {
        width: 100% !important;
        padding-bottom: 0; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-available-room-content:last-child .tf-room-options-content-inner {
          border-bottom: none; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-room-options-content-inner {
        border-bottom: 1px solid #99948D;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        padding-bottom: 24px; }
        @media only screen and (max-width: 991.98px) {
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-contents .tf-room-options-content-inner {
            display: block; } }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content {
      width: calc(100% - 230px);
      display: flex;
      justify-content: space-between;
      padding: 24px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left {
        width: 395px;
        display: flex;
        flex-direction: column; }
        @media only screen and (max-width: 1366px) {
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left {
            width: calc(100% - 206px); } }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left {
            width: calc(100% - 177px); } }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left h3 {
          margin-bottom: 20px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left h2 {
          font-weight: 700 !important;
          margin-bottom: 24px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul {
          margin: 0;
          padding: 0;
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 12px 5px; }
          @media only screen and (max-width: 767.98px) {
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul {
              gap: 8px 5px !important; } }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul:last-child {
            margin-bottom: 0; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li {
            display: flex; }
            @media only screen and (max-width: 1024px) {
              .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li {
                font-size: 16px; } }
            @media only screen and (max-width: 767.98px) {
              .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li {
                font-size: 14px !important; } }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li i {
              margin-right: 8px;
              font-size: 20px;
              width: 20px; }
              @media only screen and (max-width: 1024px) {
                .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li i {
                  font-size: 14px; } }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li a {
              color: #595349;
              text-decoration: none; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left span.tf-others-benefits-title {
          color: #595349;
          font-size: 16px !important;
          font-weight: 600 !important;
          margin-bottom: 16px;
          margin-top: auto;
          display: block; }
          @media only screen and (max-width: 991.98px) {
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left span.tf-others-benefits-title {
              margin-top: 16px; } }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right {
        width: 230px;
        display: flex;
        flex-direction: column;
        align-items: flex-end; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right {
            width: 153px !important; } }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-cancellation-refundable-text {
          display: flex;
          flex-direction: column;
          align-items: flex-end;
          gap: 8px;
          margin-bottom: 24px; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-cancellation-refundable-text span {
            display: flex;
            align-items: center;
            color: #595349; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-cancellation-refundable-text span svg {
              margin-left: 8px; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-cancellation-refundable-text i {
            font-size: 10px;
            border: 1px solid;
            height: 14px;
            width: 14px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 6px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-card-pricing-heading {
          display: flex;
          flex-direction: column;
          align-items: end; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price {
          display: flex;
          align-items: center;
          flex-direction: row;
          flex-wrap: wrap;
          justify-content: end;
          gap: 4px;
          margin-bottom: 58px; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price {
            color: #595349;
            font-weight: 400;
            line-height: 31.20px;
            text-align: right; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price .amount {
              font-weight: 400 !important; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price .discount-price {
              color: #99948D;
              font-size: 16px;
              font-style: normal;
              font-weight: 400;
              line-height: 130%;
              /* 20.8px */
              display: inline-flex;
              gap: 2px; }
              .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price .discount-price .amount {
                font-weight: normal !important; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price .sale-price {
              font-size: 24px;
              display: inline-flex; }
              .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price .sale-price .booking-type {
                font-size: 16px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-select {
          color: #595349;
          font-size: 16px;
          display: flex;
          width: fit-content;
          margin-bottom: 26px;
          gap: 8px;
          align-items: center;
          margin-top: auto; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-select select {
            height: 37px;
            width: 70px;
            padding: 8px 20px 8px 13px;
            background-size: 10px;
            background-position: 80% 49%;
            text-align: center;
            background-color: #FAEEDC;
            border: none;
            cursor: pointer;
            font-weight: 700; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-purchase-summery {
        font-size: 12px;
        display: flex; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-purchase-summery .price-per-night {
          margin-left: 5px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-deposit-content {
        text-align: right; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-deposit-content label {
          font-size: 12px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-deposit-content input[type=checkbox] {
          background: #B58E53;
          border-color: #B58E53;
          accent-color: #B58E53; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .roomselectissue {
        text-align: right !important; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content button,
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.tf_air_service,
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.availability {
        color: #FDF9F3;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px;
        background: #B58E53;
        min-width: 166px;
        border: none;
        padding: 12px 32px;
        display: inline-block;
        text-decoration: none;
        text-align: center;
        transition: .3s all ease;
        border-radius: 0px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content button:hover,
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.tf_air_service:hover,
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.availability:hover {
          background-color: #917242; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.availability {
        margin-top: auto; }
  @media only screen and (max-width: 991.98px) {
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-desktop-room {
      display: none; } }
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room {
    display: none; }
    @media only screen and (max-width: 991.98px) {
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room {
        display: flow-root; } }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery {
      min-width: auto !important;
      max-width: none !important;
      display: grid;
      grid-template-columns: 2fr 1fr; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery .tf-room-image {
        height: 140px;
        position: relative; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery .tf-room-image img {
          height: 140px;
          width: 100%;
          object-fit: cover; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery .tf-room-image .tf-available-room-off {
          position: absolute;
          top: 12px;
          left: 12px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery .tf-room-gallerys {
        display: grid;
        gap: 10px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery .tf-room-gallerys .tf-room-gallery {
          height: 66px;
          width: 100% !important; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery .tf-room-gallerys .tf-room-gallery img {
            height: 66px;
            width: 100%;
            object-fit: cover; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-gallery.tf-no-room-gallery {
      grid-template-columns: 1fr; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content {
      width: auto !important;
      display: flow-root;
      padding: 16px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left {
        width: 100% !important; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price {
          display: flex;
          justify-content: space-between;
          gap: 30px;
          margin-bottom: 16px; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price h2 {
            margin: 0;
            font-size: 20px !important; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price .tf-available-room-price {
            display: flex;
            flex-direction: column;
            align-items: end; }
            .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price .tf-available-room-price .tf-price {
              color: #595349;
              font-weight: 400;
              line-height: 31.2px; }
              .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price .tf-available-room-price .tf-price .discount-price {
                color: #99948D;
                font-size: 16px;
                font-style: normal;
                font-weight: 400;
                line-height: 130%;
                display: flex;
                gap: 2px;
                justify-content: end; }
                .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price .tf-available-room-price .tf-price .discount-price .amount {
                  font-weight: 400; }
              .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price .tf-available-room-price .tf-price .sale-price {
                font-size: 24px;
                display: flex;
                justify-content: end; }
                .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-left .room-heading-price .tf-available-room-price .tf-price .sale-price .booking-type {
                  font-size: 16px; }
      .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right {
        width: 100% !important;
        align-items: start; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right a.availability {
          width: 100%;
          margin-top: 32px;
          font-size: 12px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right a.tf_air_service,
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right button {
          width: 100%;
          font-size: 12px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-select {
          margin-top: 32px;
          margin-bottom: 16px; }
        .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right .room-submit-wrap {
          width: 100%; }
          .tf-template-3 .tf-available-rooms-wrapper .tf-available-room.tf-tabs-room .tf-available-room-content .tf-available-room-content-right .room-submit-wrap .tf-deposit-content {
            text-align: left; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-room-off {
    padding: 4px 12px;
    background: #22C55E;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    width: fit-content; }

.tf-template-3 .tf-available-archive-hetels-wrapper {
  background: #FAEEDC;
  margin-bottom: 56px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-available-archive-hetels-wrapper {
      padding: 16px; } }
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms-head .tf-filter {
    background: #C1BFBB;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    padding: 12px 16px; }
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room {
    overflow: hidden; }
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery {
      min-width: 283px;
      max-width: 283px;
      position: relative;
      min-height: 328px;
      max-height: 328px; }
      @media only screen and (max-width: 1280px) {
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery {
          min-width: 222px;
          max-width: 222px; } }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery {
          min-height: 356px;
          max-height: 356px; } }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+1) {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0; }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+2) {
        position: absolute;
        height: 70px;
        width: 70px;
        left: unset !important;
        top: unset !important;
        bottom: 16px;
        right: 16px; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+2) img {
          height: 20px;
          width: 20px; }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-room-gallery:first-child::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgba(238, 199, 140, 0.2); }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-labels {
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 16px;
        left: 16px;
        gap: 8px; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-labels > span {
          color: #FDF9F3;
          font-size: 12px;
          font-style: normal;
          font-weight: 500;
          padding: 8px;
          min-width: 84px;
          text-align: center;
          line-height: 1; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-labels span.tf-available-labels-populer {
          background: #F97316; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-labels span.tf-available-labels-featured {
          background: #3B82F6; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-labels span.tf-available-labels-visited {
          background: #84CC16; }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-ratings {
        position: absolute;
        right: 16px;
        top: 16px;
        background: rgba(253, 249, 243, 0.8);
        padding: 5px 4px 0 8px;
        font-size: 16px;
        color: #595349; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery .tf-available-ratings i {
          color: #FEBB03; }
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content {
      width: calc(100% - 283px); }
      @media only screen and (max-width: 1280px) {
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content {
          width: calc(100% - 222px); } }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content {
          padding: 24px 16px !important; } }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left {
        display: flex;
        flex-direction: column; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location a {
          text-decoration: none;
          color: inherit; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location a:hover {
          color: inherit; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left ul {
          margin-top: auto; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left ul {
              font-size: 14px !important; } }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li {
              font-size: 14px !important; } }
        @media only screen and (max-width: 767.98px) {
          .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left ul.features {
            display: none; } }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location .tf-section-title {
          margin: 0 0 10px 0; }
          @media only screen and (max-width: 1280px) {
            .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location .tf-section-title {
              font-size: 24px !important; } }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location .tf-title-location {
          display: inline-flex;
          margin-top: 6px; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location .tf-title-location {
              margin-bottom: 36px;
              font-size: 14px; } }
          .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location .tf-title-location i {
            margin-right: 8px;
            font-size: 20px; }
            @media only screen and (max-width: 1024px) {
              .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-section-title-and-location .tf-title-location i {
                font-size: 14px; } }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right {
        width: 196px; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-cancellation-refundable-text {
          margin-bottom: 48px; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price {
          margin-bottom: 12px;
          text-align: right; }
          .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price-from .amount {
            color: #595349;
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 130%; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right button {
          padding: 12px 20px; }
        .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right a.view-hotel {
          color: #FDF9F3;
          font-size: 16px;
          font-weight: 700;
          line-height: 24px;
          background: #B58E53;
          padding: 12px 32px;
          text-decoration: none;
          display: inline-block;
          text-align: center;
          transition: .3s all ease;
          margin-top: auto; }
          .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right a.view-hotel:hover {
            background-color: #917242; }
          @media only screen and (max-width: 1366px) {
            .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right a.view-hotel {
              padding: 12px 32px; } }
          @media only screen and (max-width: 1280px) {
            .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right a.view-hotel {
              font-size: 12px !important; } }
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms #tf_posts_navigation_bar,
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf_posts_ajax_navigation,
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf_posts_page_navigation {
    display: inline-flex;
    margin-top: 30px; }
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms #tf_posts_navigation_bar .page-numbers,
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf_posts_ajax_navigation .page-numbers,
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf_posts_page_navigation .page-numbers {
      border: 0.5px solid #99948D;
      background: #FDF9F3;
      height: 40px;
      color: #99948D;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 130%;
      letter-spacing: 0.16px;
      padding: 0px 20px;
      text-decoration: none;
      display: flex;
      align-items: center; }
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms #tf_posts_navigation_bar .page-numbers.current,
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf_posts_ajax_navigation .page-numbers.current,
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf_posts_page_navigation .page-numbers.current {
      background: #FAEEDC;
      color: #595349; }

.tf-template-3 .tf-related-tours {
  background-color: #FCF4E8;
  padding: 120px 0px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-related-tours {
      padding: 32px; } }
  @media only screen and (max-width: 480px) {
    .tf-template-3 .tf-related-tours {
      padding: 16px; } }
  .tf-template-3 .tf-related-tours h2 {
    color: #595349;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 120%;
    /* 38.4px */
    margin-bottom: 24px; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-related-tours h2 {
        font-size: 24px !important;
        margin-bottom: 24px; } }
  .tf-template-3 .tf-related-tours .slick-track {
    display: flex; }
    .tf-template-3 .tf-related-tours .slick-track .slick-slide {
      height: inherit !important;
      margin: 0 !important; }
  .tf-template-3 .tf-related-tours .tf-slider-item {
    box-shadow: none;
    border: 0px solid;
    background-color: transparent;
    padding: 0px 12px;
    margin-bottom: 0px !important; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-related-tours .tf-slider-item {
        padding: 0px 4px; } }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-related-tours .tf-slider-item {
        padding: 0px 12px; } }
    .tf-template-3 .tf-related-tours .tf-slider-item .tf-post-single-box {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      background: #fdf9f3;
      justify-content: flex-start; }
    .tf-template-3 .tf-related-tours .tf-slider-item .tf-image-data img {
      height: 240px;
      object-fit: cover;
      width: 100%; }
    .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info {
      padding: 16px 24px 24px 24px;
      background-color: #FDF9F3;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%; }
      .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info a.see-details {
        display: block;
        padding: 8px 16px;
        border: 0.5px solid #B58E53;
        color: #B58E53;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 24px */
        text-decoration: none;
        text-align: center;
        transition: .3s all ease;
        margin-top: auto; }
        .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info a.see-details:hover {
          background-color: #917242;
          color: #FDF9F3;
          border-color: #917242; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info a.see-details {
            font-size: 12px !important; } }
      .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-location {
        color: #99948D;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin: 0px 0px 24px 0px; }
      .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title {
        display: flex;
        align-items: center;
        justify-content: space-between; }
        .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title h2 {
          margin-bottom: 16px; }
          .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title h2 a {
            text-decoration: none;
            color: #595349;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: 120%; }
            @media only screen and (max-width: 1024px) {
              .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title h2 a {
                font-size: 20px !important; } }
        .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title .tf-meta-data-price {
          margin-left: 37px; }
          @media only screen and (max-width: 1024px) {
            .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title .tf-meta-data-price {
              margin-left: 23px; } }
          .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title .tf-meta-data-price span {
            color: #595349;
            font-size: 24px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%; }
            @media only screen and (max-width: 1024px) {
              .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title .tf-meta-data-price span {
                font-size: 20px !important; } }
          .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title .tf-meta-data-price span.pricing_calc_type {
            color: #99948D;
            font-size: 16px !important;
            font-style: normal;
            font-weight: 400;
            line-height: 130%; }
  .tf-template-3 .tf-related-tours .slick-prev.pull-left.slick-arrow,
  .tf-template-3 .tf-related-tours .slick-next.pull-right.slick-arrow {
    position: absolute;
    right: 50px;
    top: -37px;
    left: auto; }
    .tf-template-3 .tf-related-tours .slick-prev.pull-left.slick-arrow::before,
    .tf-template-3 .tf-related-tours .slick-next.pull-right.slick-arrow::before {
      font-family: "Font Awesome 6 Free";
      display: none; }
  .tf-template-3 .tf-related-tours .slick-prev.pull-left.slick-arrow {
    right: 120px; }

.tf-template-3 .tf-modify-search-btn {
  background: #B58E53;
  padding: 8px 32px;
  color: #FDF9F3;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  cursor: pointer;
  margin-left: 16px;
  margin-right: 16px;
  display: none; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-modify-search-btn {
      display: block; } }

.tf-template-3 .tf-booking-form-wrapper {
  background: #FAEEDC; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-booking-form-wrapper {
      display: none; } }
  .tf-template-3 .tf-booking-form-wrapper .tf-booking-form {
    display: flex;
    margin: 0; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields {
      display: flex;
      width: 78%;
      padding: 24px;
      padding-right: 0; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields {
          width: calc(100% - 150px) !important; } }
      .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields > div {
        width: 32%;
        border-right: 1px solid #D6D4D2;
        display: flex;
        flex-direction: column;
        position: relative; }
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields > div.tf-booking-form-guest-and-room {
          width: 36%;
          padding-left: 70px;
          align-items: start;
          border-right: none;
          cursor: pointer; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout,
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin {
      padding-left: 40px;
      padding-right: 40px; }
      @media only screen and (max-width: 1280px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout,
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin {
          padding-right: 28px;
          padding-left: 28px; } }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout,
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin {
          padding-right: 15px;
          padding-left: 15px; } }
      .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout input,
      .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin input {
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: 0; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin {
      max-width: 146px; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout {
      max-width: 155px; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-date {
      color: #595349;
      font-size: 24px;
      font-weight: 400;
      line-height: 31.20px;
      text-align: right;
      margin-right: 5px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-date {
          font-size: 20px; } }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form span.tf-booking-form-title {
      font-size: 16px;
      font-weight: 600;
      line-height: 20.80px;
      margin-bottom: 8px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form span.tf-booking-form-title {
          font-size: 14px; } }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form span.tf-booking-month {
      color: #595349;
      font-size: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-transform: capitalize; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form span.tf-booking-month {
          font-size: 14px; } }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-date-wrap {
      display: flex;
      gap: 6px;
      cursor: pointer; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf_label-row span#tf-required {
      font-size: 12px;
      color: red !important; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-guest-and-room-wrap {
      display: flex;
      gap: 6px;
      margin-top: 4px;
      text-transform: capitalize; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-person-count span {
      margin-right: 12px; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-cancellation-refundable-text {
      display: flex;
      flex-direction: column; }
    .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-submit {
      width: 22%; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-submit {
          width: 150px !important; } }
      .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-submit button {
        height: 100%;
        width: 100%;
        background: #B58E53 !important;
        border: 0;
        outline: none;
        color: #FDF9F3 !important;
        font-size: 16px !important;
        font-weight: 700;
        line-height: 24px !important;
        cursor: pointer;
        border-radius: 0px;
        transition: .3s all ease; }
        .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-submit button:hover {
          background-color: #917242 !important; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-submit button {
            font-size: 12px !important; } }

.tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location {
  display: flex;
  align-items: flex-start !important;
  padding-right: 40px;
  padding-left: 16px; }
  @media only screen and (max-width: 1280px) {
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location {
      padding-right: 28px !important;
      padding-left: 4px !important; } }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location {
      padding-right: 15px !important;
      padding-left: 0px !important; } }
  .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap {
    display: flex;
    flex-direction: row;
    background: #FDF9F3;
    padding: 0 12px;
    width: 100%;
    align-items: center;
    position: relative; }
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap input {
      padding: 9px;
      border: none;
      outline: none;
      width: 100%;
      background: transparent;
      box-shadow: none;
      font-size: 12px;
      color: #595349 !important; }
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap input::placeholder {
        color: #595349 !important; }
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list,
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list,
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list {
      position: absolute;
      left: 0;
      top: 100%;
      width: 250px;
      background: #FCF4E8;
      box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
      z-index: 999;
      max-height: 200px;
      overflow: auto;
      scrollbar-width: thin;
      scrollbar-color: #aaa #eee;
      padding: 8px; }
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list::-webkit-scrollbar,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list::-webkit-scrollbar,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list::-webkit-scrollbar {
        width: 5px; }
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list::-webkit-scrollbar-thumb,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list::-webkit-scrollbar-thumb,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list::-webkit-scrollbar-thumb {
        background-color: #aaa;
        border-radius: 4px; }
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list::-webkit-scrollbar-track,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list::-webkit-scrollbar-track,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list::-webkit-scrollbar-track {
        background-color: #eee; }
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list div,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list div,
      .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list div {
        padding: 10px;
        cursor: pointer;
        background-color: #fff;
        margin-bottom: 4px;
        color: #444;
        display: block;
        transition: .3s all ease; }
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list div:last-child,
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list div:last-child,
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list div:last-child {
          margin-bottom: 0px; }
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list div:hover,
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list div:hover,
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list div:hover {
          background: #FAEEDC; }
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-locationautocomplete-list div::before,
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list div::before,
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-apartment-locationautocomplete-list div::before {
          display: none; }

.tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room {
  padding-left: 40px !important;
  padding-right: 40px;
  min-width: 200px; }
  @media only screen and (max-width: 1280px) {
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room {
      padding-right: 28px !important;
      padding-left: 28px !important; } }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room {
      padding-right: 15px !important;
      padding-left: 15px !important;
      min-width: 160px; } }
  .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-form-guest-and-room-inner .tf-booking-guest-and-room-wrap.tf-archive-guest-info {
    margin-top: 8px;
    color: #595349;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px; }
    .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-form-guest-and-room-inner .tf-booking-guest-and-room-wrap.tf-archive-guest-info span {
      font-size: 24px;
      margin-bottom: -3px;
      color: #595349;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      gap: 5px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-form-guest-and-room-inner .tf-booking-guest-and-room-wrap.tf-archive-guest-info span {
          font-size: 20px; } }
  .tf-template-3 .tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-form-guest-and-room-inner .tf-arrow-icons {
    text-align: right; }

.tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-checkin {
  max-width: none;
  width: 37% !important; }
  .tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-checkin .tf-tour-searching-date-block {
    display: flex;
    align-items: center; }
    .tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-checkin .tf-tour-searching-date-block .tf-duration span {
      font-size: 24px;
      margin: 0px 15px;
      color: #595349; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-checkin .tf-tour-searching-date-block .tf-duration span {
          margin: 0px 5px; } }
    .tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-checkin .tf-tour-searching-date-block span.tf-booking-month {
      flex-direction: row; }
      .tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-checkin .tf-tour-searching-date-block span.tf-booking-month svg {
        margin-left: 4px; }

.tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-guest-and-room span.tf-booking-month {
  flex-direction: row; }
  .tf-template-3 .tf-archive-search-form .tf-tour-archive-block .tf-booking-form-guest-and-room span.tf-booking-month svg {
    margin-left: 4px; }

.tf-template-3 .tf_acrselection-wrap {
  display: unset;
  top: 80%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  background: #FDF9F3;
  box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.1); }
  .tf-template-3 .tf_acrselection-wrap .acr-label {
    color: #595349;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%; }
  .tf-template-3 .tf_acrselection-wrap .acr-select {
    text-align: right;
    width: 96px; }
    .tf-template-3 .tf_acrselection-wrap .acr-select input[type=tel] {
      width: 34px !important;
      height: 48px;
      border: 1px solid !important;
      font-size: 16px;
      font-style: normal;
      font-weight: 600;
      color: #595349 !important;
      text-align: center;
      padding-left: 0px !important;
      padding-right: 0px !important;
      border-radius: 20px;
      background: #FCF4E8 !important; }
    .tf-template-3 .tf_acrselection-wrap .acr-select .acr-dec,
    .tf-template-3 .tf_acrselection-wrap .acr-select .acr-inc {
      background: transparent;
      border: none;
      font-size: 31px;
      font-weight: 400;
      color: #595349;
      padding: 0px; }

.tf-template-3 .tf_acrselection-wrap.tf-show {
  visibility: visible;
  opacity: 1;
  top: 116%;
  display: block !important; }

.tf-template-3 #tf-apartment-booking {
  box-shadow: none;
  padding: 0px;
  margin: 0;
  border: none;
  border-radius: none; }
  .tf-template-3 #tf-apartment-booking .tf-apartment-form-header h3 span {
    color: #B58E53 !important;
    font-size: 32px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 120%;
    /* 38.4px */ }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 #tf-apartment-booking .tf-apartment-form-header h3 span {
        font-size: 20px !important; } }
    .tf-template-3 #tf-apartment-booking .tf-apartment-form-header h3 span bdi {
      font-size: 32px !important; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 #tf-apartment-booking .tf-apartment-form-header h3 span bdi {
          font-size: 20px !important; } }
  .tf-template-3 #tf-apartment-booking .tf-apartment-form-header h3 span.per-pricing-type {
    font-size: 18px !important; }
  .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields {
    background-color: transparent;
    border: 0px solid;
    margin: 0;
    border-radius: none; }
    .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-in-out-date {
      height: 53px;
      padding: 16px 32px 16px 16px;
      background: #FDF9F3;
      margin-bottom: 32px; }
      .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-check-in-out-date .tf_label-row {
        display: flex;
        align-items: center;
        gap: 8px; }
    .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-aprtment-check-in-out-date {
      height: 53px;
      padding: 15px 32px 16px 16px;
      background: #FDF9F3;
      width: 100%;
      box-sizing: border-box; }
      .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-aprtment-check-in-out-date .tf_label_rows {
        display: flex;
        align-items: center;
        gap: 8px; }
        .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-aprtment-check-in-out-date .tf_label_rows input {
          border: none;
          background-color: rgba(0, 0, 0, 0);
          padding: 0;
          width: 100% !important;
          color: #607085;
          font-size: 16px;
          text-align: left; }
          .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf_booking-dates .tf-aprtment-check-in-out-date .tf_label_rows input:focus {
            outline: none;
            box-shadow: none; }
    .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row {
      border-top: 0px solid #e1e5ea;
      padding: 0px; }
      .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap {
        display: block; }
        .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf-form-title {
          margin-bottom: 24px; }
          .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf-form-title h3.tf-person-info-title {
            color: #595349;
            font-size: 32px !important;
            font-style: normal;
            font-weight: 700 !important;
            line-height: 120%;
            margin: 0px; }
            @media only screen and (max-width: 767.98px) {
              .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf-form-title h3.tf-person-info-title {
                font-size: 20px !important; } }
        .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf_acrselection {
          margin-bottom: 24px; }
          .tf-template-3 #tf-apartment-booking .tf-apartment-form-fields .tf-apartment-guest-row .tf_selectperson-wrap .tf_acrselection:last-child {
            margin-bottom: 0px; }
  .tf-template-3 #tf-apartment-booking .tf-btn-booking button,
  .tf-template-3 #tf-apartment-booking .tf-btn-booking a {
    border: 1px solid #B58E53;
    background: #B58E53;
    padding: 12px 32px;
    color: #FDF9F3;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    width: 100%;
    transition: .3s all ease;
    text-decoration: none;
    display: block; }
    .tf-template-3 #tf-apartment-booking .tf-btn-booking button:hover,
    .tf-template-3 #tf-apartment-booking .tf-btn-booking a:hover {
      background-color: #917242; }

.tf-template-3 .tf-search-date-wrapper {
  background: #FAEEDC;
  padding: 24px; }
  .tf-template-3 .tf-search-date-wrapper .tf-booking-date-wrap {
    display: flex;
    flex-direction: row;
    background: #fff;
    padding: 0 12px;
    max-width: 150px;
    margin-right: 40px;
    justify-content: flex-start;
    padding: 16px !important;
    width: inherit;
    max-width: unset !important;
    margin: 0 !important; }
    .tf-template-3 .tf-search-date-wrapper .tf-booking-date-wrap input {
      padding: 9px;
      border: none;
      outline: none;
      width: -webkit-fill-available; }
  .tf-template-3 .tf-search-date-wrapper .tf-booking-date-wrap input {
    padding: 0 9px; }
  .tf-template-3 .tf-search-date-wrapper .acr-dec,
  .tf-template-3 .tf-search-date-wrapper .acr-inc {
    background: transparent;
    border: none;
    font-size: 31px;
    font-weight: 400;
    color: #595349;
    padding: 0px; }
  .tf-template-3 .tf-search-date-wrapper .acr-select input[type=tel] {
    width: 34px !important;
    height: 48px;
    border: 1px solid !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #595349 !important;
    text-align: center;
    padding-left: 0px !important;
    padding-right: 0px !important;
    border-radius: 20px;
    background: #FCF4E8 !important; }
  .tf-template-3 .tf-search-date-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 24px; }
    .tf-template-3 .tf-search-date-wrapper form .tf-booking-person.tf-tour-booking-box {
      margin-top: 8px; }
  .tf-template-3 .tf-search-date-wrapper h2 {
    padding: 0 !important;
    margin: 0 !important; }
  .tf-template-3 .tf-search-date-wrapper .tf_acrselection-wrap {
    position: unset;
    visibility: unset;
    opacity: unset;
    margin: 0;
    padding: 0;
    background: transparent;
    box-shadow: none; }
  .tf-template-3 .tf-search-date-wrapper .acr-label {
    color: #595349;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-search-date-wrapper .acr-label {
        font-size: 14px; } }
    .tf-template-3 .tf-search-date-wrapper .acr-label div {
      margin-left: 5px; }
      .tf-template-3 .tf-search-date-wrapper .acr-label div span {
        display: inline-block;
        color: #595349;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 140%; }
        @media only screen and (max-width: 1024px) {
          .tf-template-3 .tf-search-date-wrapper .acr-label div span {
            font-size: 14px; } }
  .tf-template-3 .tf-search-date-wrapper .acr-select {
    justify-content: end; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-search-date-wrapper .acr-select {
        width: 100px; } }
  .tf-template-3 .tf-search-date-wrapper .acr-label span {
    color: #99948D;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    display: block; }
  .tf-template-3 .tf-search-date-wrapper span.tf-search-date-info {
    color: #595349;
    font-size: 32px;
    font-weight: 700;
    line-height: 1; }

.tf-template-3 .tf_tours_booking .tf-form-title h3.tf-person-info-title {
  color: #595349;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120% !important;
  margin: 0; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf_tours_booking .tf-form-title h3.tf-person-info-title {
      font-size: 24px !important; } }

.tf-template-3 .tf_tours_booking .tf-field-group {
  margin: 0px !important; }
  .tf-template-3 .tf_tours_booking .tf-field-group .tf-field {
    background-color: transparent !important;
    padding: 12px 0px !important;
    align-items: center;
    justify-content: space-between; }
    .tf-template-3 .tf_tours_booking .tf-field-group .tf-field .acr-label i {
      position: static; }
    .tf-template-3 .tf_tours_booking .tf-field-group .tf-field .acr-select input {
      padding-left: 0px !important;
      padding-right: 0px !important;
      -webkit-appearance: none !important;
      -moz-appearance: none !important;
      appearance: none !important; }

.tf-template-3 .tf_tours_booking .tf-field-calander i {
  margin-top: -3px; }

.tf-template-3 .tf_tours_booking .tf-field-calander .tf-field {
  padding: 15px 40px !important;
  width: 100% !important;
  background-color: #FDF9F3 !important;
  border-radius: 0px !important;
  color: #99948D !important; }
  .tf-template-3 .tf_tours_booking .tf-field-calander .tf-field::placeholder {
    color: #99948D !important; }

.tf-template-3 .tf_tours_booking .tf-field-calander.check-in-time-div .tf-field {
  padding: 18.7px 40px !important; }

.tf-template-3 .tf_tours_booking .tf-tours-booking-btn.tf-booking-bttns a {
  border: 1px solid #B58E53 !important;
  background: #B58E53 !important;
  padding: 12px 32px !important;
  justify-content: center;
  transition: .3s all ease;
  border-radius: 0px; }
  .tf-template-3 .tf_tours_booking .tf-tours-booking-btn.tf-booking-bttns a:hover {
    background-color: #917242 !important; }

.tf-template-3 .tf-mobile-booking-btn {
  border: 1px solid #B58E53;
  background: #B58E53;
  padding: 12px 32px;
  text-align: center;
  cursor: pointer;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: none;
  transition: .3s all ease; }
  .tf-template-3 .tf-mobile-booking-btn:hover {
    background-color: #917242;
    border-color: #917242; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-mobile-booking-btn {
      display: block; } }
  .tf-template-3 .tf-mobile-booking-btn span {
    color: #FDF9F3;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */ }

.tf-template-3 .tf-bottom-booking-bar {
  width: 100% !important;
  background: #FAEEDC;
  box-shadow: none;
  gap: 24px; }
  .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields {
    display: flex; }
    @media only screen and (max-width: 640px) {
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields {
        justify-content: center; } }
    .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout {
      border-right: 1px solid #D6D4D2;
      flex-direction: column;
      position: relative;
      padding: 0px 38px;
      display: flex; }
      @media only screen and (max-width: 640px) {
        .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout {
          padding: 0px 10px; } }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout span.tf-booking-form-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 20.8px;
        margin-bottom: 0px; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout .tf-booking-date-wrap {
        display: flex;
        gap: 6px;
        cursor: pointer;
        background: transparent;
        padding: 0px !important;
        justify-content: start; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout .tf-booking-date {
        color: #595349;
        font-size: 24px;
        font-weight: 400;
        line-height: 31.2px;
        text-align: right;
        margin-right: 5px; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout span.tf-booking-month {
        color: #595349;
        font-size: 16px;
        display: flex;
        align-items: center; }
        .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout span.tf-booking-month span {
          margin-right: 5px; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-checkinout input {
        position: absolute;
        height: 100%;
        width: 100%;
        opacity: 0; }
    .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-bottom-booking-field.check-in-time-div select {
      border: 0px solid;
      min-width: auto;
      padding: 0px 38px;
      color: #99948d;
      font-size: 16px;
      font-weight: 600;
      line-height: 20.8px;
      margin-bottom: 0px;
      border-right: 1px solid #D6D4D2;
      border-radius: 0px !important;
      background-image: none;
      text-align: center; }
      @media only screen and (max-width: 640px) {
        .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-bottom-booking-field.check-in-time-div select {
          padding: 0px 10px; } }
    .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room {
      position: relative;
      padding: 0px 38px; }
      @media only screen and (max-width: 640px) {
        .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room {
          padding: 0px 10px; } }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-form-title {
        font-size: 16px;
        font-weight: 600;
        line-height: 20.8px;
        margin-bottom: 0px;
        color: #99948D; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-guest-and-room-wrap {
        display: flex;
        align-items: center;
        gap: 6px; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-guest.tf-booking-date {
        color: #595349;
        font-size: 24px;
        font-weight: 400;
        line-height: 31.2px;
        min-width: none;
        text-align: right;
        margin-right: 5px; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-month {
        display: flex;
        align-items: center; }
        .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-month span {
          color: #595349;
          font-size: 16px;
          margin-right: 5px; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf_acrselection-wrap {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 12px;
        background: #fff;
        padding: 24px 24px 8px;
        min-width: 250px;
        border-radius: 4px;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        width: 100%;
        display: none; }
        .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf_acrselection-wrap .acr-select input[type="number"] {
          padding-left: 0px !important; }
      .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf_acrselection-wrap.tf-show {
        left: 0;
        right: auto;
        width: auto;
        visibility: visible;
        opacity: 1;
        top: 100%;
        display: block !important;
        margin-top: 0px;
        bottom: 162%;
        top: auto; }
        @media only screen and (max-width: 1199.98px) {
          .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf_acrselection-wrap.tf-show {
            bottom: 131%; } }
        @media only screen and (max-width: 640px) {
          .tf-template-3 .tf-bottom-booking-bar .tf-booking-form-fields .tf-booking-form-guest-and-room .tf_acrselection-wrap.tf-show {
            left: auto;
            right: 0; } }
  .tf-template-3 .tf-bottom-booking-bar .tf-tours-booking-btn.tf-booking-bttns a {
    padding: 16px 32px !important; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup,
.tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup {
  background-color: #FDF9F3;
  box-shadow: 0px 3px 60px 0px rgba(0, 0, 0, 0.1); }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs,
.tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs {
  background-color: #FDF9F3;
  border-bottom: 0.3px solid #CCCED1; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul, .tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul {
  background-color: #595349; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li, .tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li {
  color: #FDF9F3; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active,
.tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active {
  background-color: #99948D; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active::before,
.tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.active::before {
  background-color: #99948D; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .traveller-info .traveller-single-info input[type="text"],
.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .traveller-info .traveller-single-info input[type="textarea"],
.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .traveller-info .traveller-single-info input[type="date"],
.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-content-summery .tf-booking-content .traveller-info .traveller-single-info select {
  background: #FCF4E8 !important; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination button, .tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination button {
  background-color: #B58E53; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a.tf-back-control, .tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-pagination .tf-control-pagination a.tf-back-control {
  background-color: transparent !important;
  color: #B58E53;
  padding: 0px !important;
  border: 0px solid !important; }

.tf-template-3 .tf-withoutpayment-booking .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done, .tf-template-3 .tf-withoutpayment-booking-confirm .tf-withoutpayment-popup .tf-booking-tabs .tf-booking-tab-menu ul li.done {
  background-color: #99948D; }

.tf-template-3 .tf-single-tour-extra .tf_quantity-acrselection .quanity-acr-fields {
  background-color: #f3f7fa !important;
  padding: 15px 40px !important;
  margin-bottom: 10px !important;
  margin-left: 23px !important; }

@media only screen and (max-width: 767.98px) {
  .tf-template-3 .tf-facilities-wrapper {
    padding-left: 16px;
    padding-right: 16px; } }

.tf-template-3 .tf-facilities-wrapper h2 {
  color: #595349;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120%;
  /* 38.4px */
  margin-bottom: 24px !important; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-facilities-wrapper h2 {
      font-size: 24px !important;
      margin-bottom: 16px !important; } }

.tf-template-3 .tf-facilities-wrapper .tf-facilities {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 0;
  margin-bottom: 32px; }
  .tf-template-3 .tf-facilities-wrapper .tf-facilities .tf-facility-item {
    width: 25%; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-facilities-wrapper .tf-facilities .tf-facility-item {
        width: 50%; } }
    .tf-template-3 .tf-facilities-wrapper .tf-facilities .tf-facility-item span.single-facilities-title {
      color: #595349;
      font-weight: 600;
      line-height: 20.80px;
      margin-bottom: 16px;
      display: block; }
      .tf-template-3 .tf-facilities-wrapper .tf-facilities .tf-facility-item span.single-facilities-title i {
        margin-right: 8px;
        font-size: 20px;
        width: 20px; }
    .tf-template-3 .tf-facilities-wrapper .tf-facilities .tf-facility-item ul {
      margin: 0;
      padding: 0;
      padding-left: 34px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      list-style: none; }

.tf-template-3 .tf-reviews-wrapper {
  padding-bottom: 55px !important; }
  .tf-template-3 .tf-reviews-wrapper .tf-section-title {
    color: #595349;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 120%;
    /* 38.4px */
    margin-bottom: 8px; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-reviews-wrapper .tf-section-title {
        font-size: 24px !important; } }
  .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item {
    background: #FDF9F3;
    margin-right: 35px !important;
    padding: 24px;
    display: flex !important;
    flex-direction: row;
    gap: 8px;
    min-height: 212px; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item {
        min-height: auto; } }
    .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item .tf-reviews-avater {
      width: 48px; }
      .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item .tf-reviews-avater img {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 50%;
        max-width: none; }
    .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item .tf-reviews-text .tf-review-rating {
      color: #595349;
      font-size: 16px;
      font-weight: 600;
      line-height: 20.80px;
      word-wrap: break-word;
      margin: 0px 0px 8px 0px;
      display: block; }
      .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item .tf-reviews-text .tf-review-rating > div {
        display: none; }
    .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item .tf-reviews-text .tf-reviews-meta {
      color: #99948D;
      margin-bottom: 16px;
      display: inline-block; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .tf-reviews-item .tf-reviews-text p {
        font-size: 14px !important; } }
  .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .slick-list {
    padding: 32px 0; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider .slick-list {
        padding-top: 16px;
        padding-bottom: 16px; } }
  .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider button.slide-arrow {
    position: absolute;
    bottom: -30px;
    border: none;
    background: transparent;
    font-size: 30px;
    color: #B58E53;
    padding: 0px;
    cursor: pointer; }
  .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider button.next-arrow {
    right: calc(50% - 70px); }
  .tf-template-3 .tf-reviews-wrapper .tf-reviews-slider button.prev-arrow {
    left: calc(50% - 70px); }

.tf-template-3 .tf-questions-wrapper h2 {
  color: #595349;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120%;
  /* 38.4px */
  margin-bottom: 24px; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-questions-wrapper h2 {
      font-size: 24px !important; } }

.tf-template-3 .tf-questions-wrapper .tf-questions {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-questions-wrapper .tf-questions {
      grid-template-columns: 1fr;
      gap: 0px; } }
  .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question {
    padding: 24px;
    background: transparent;
    padding: 0px 24px;
    transition: 0.3s;
    display: block;
    margin-bottom: 16px;
    position: relative;
    cursor: pointer; }
    .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question > i {
      position: absolute;
      right: 16px;
      top: 8px;
      transition: 0.3s; }
    .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question.tf-active {
      background: #FDF9F3;
      padding: 24px;
      display: flex;
      flex-direction: column;
      cursor: text; }
      .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question.tf-active i {
        top: 16px !important;
        right: 16px !important;
        transform: rotate(180deg); }
    .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question .tf-faq-head span {
      color: #595349;
      font-size: 16px !important;
      font-weight: 600 !important;
      line-height: 20.80px !important;
      margin-bottom: 8px;
      display: flex;
      justify-content: space-between;
      cursor: pointer;
      align-items: center; }
    .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question .tf-question-desc {
      display: none; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question .tf-question-desc {
          font-size: 14px !important; } }
  .tf-template-3 .tf-questions-wrapper .tf-questions .tf-questions-col .tf-question:last-child {
    margin-bottom: 0px !important; }

.tf-template-3 .tf-policies-wrapper h2 {
  color: #595349;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 120%;
  /* 38.4px */
  margin-bottom: 24px; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-policies-wrapper h2 {
      font-size: 24px !important; } }

.tf-template-3 .tf-policies-wrapper .tf-policies {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  .tf-template-3 .tf-policies-wrapper .tf-policies p {
    color: #99948D; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-policies-wrapper .tf-policies p {
        font-size: 14px !important; } }
  .tf-template-3 .tf-policies-wrapper .tf-policies .tf-policy-item {
    display: flex;
    gap: 16px; }
    .tf-template-3 .tf-policies-wrapper .tf-policies .tf-policy-item > div {
      padding: 24px;
      background-color: #FDF9F3; }
    .tf-template-3 .tf-policies-wrapper .tf-policies .tf-policy-item .tf-policy-title {
      min-width: 316px; }
    .tf-template-3 .tf-policies-wrapper .tf-policies .tf-policy-item .tf-policy-desc {
      width: -webkit-fill-available; }

.tf-template-3 .tf-include-exclude-wrapper {
  margin-bottom: 16px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-include-exclude-wrapper {
      padding-left: 16px;
      padding-right: 16px; } }
  .tf-template-3 .tf-include-exclude-wrapper h2 {
    color: #595349;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 120%;
    /* 38.4px */
    margin-bottom: 24px; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-include-exclude-wrapper h2 {
        font-size: 24px !important; } }
  .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter {
    display: flex;
    gap: 40px; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter {
        flex-wrap: wrap;
        gap: 24px; } }
    .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter > div {
      display: flex;
      gap: 16px;
      width: 50%; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter > div {
          width: 100%; } }
    .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter ul {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin: 0;
      padding: 0; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter ul {
          gap: 8px; } }
      .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter ul li {
        display: flex;
        gap: 16px; }
        .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter ul li img {
          width: 16px;
          height: 16px;
          object-fit: contain; }
    .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter .tf-include ul li i {
      color: #22c55e; }
    .tf-template-3 .tf-include-exclude-wrapper .tf-include-exclude-innter .tf-exclude ul li i {
      color: #f01616; }

.tf-template-3 .tf-itinerary-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-itinerary-wrapper {
      padding-left: 16px;
      padding-right: 16px; } }
  .tf-template-3 .tf-itinerary-wrapper .section-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-itinerary-wrapper .section-title {
        margin-bottom: 0px; } }
  .tf-template-3 .tf-itinerary-wrapper .section-title a {
    display: flex;
    flex-direction: row;
    color: #595349;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word;
    border: none;
    background: #FAEEDC;
    min-width: 211px;
    height: fit-content;
    padding: 12px;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-decoration: none; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-itinerary-wrapper .section-title a {
        font-size: 12px !important; } }
  .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper {
    padding: 0px; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-single-itinerary {
      background: #FCF4E8;
      padding: 16px 32px;
      display: flex;
      flex-direction: column;
      gap: 24px; }
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-single-itinerary .tf-itinerary-content-wrap {
        display: none; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      user-select: none; }
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title i {
        color: #595349; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title.active i {
      transform: rotate(180deg); }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title span.tf-head-title {
      color: #595349;
      font-size: 20px !important;
      font-weight: 400 !important;
      line-height: 26px !important;
      word-wrap: break-word;
      margin: 0px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title span.tf-head-title {
          font-size: 16px !important; } }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title span.tf-head-title {
          display: flex;
          align-items: center; } }
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-title span.tf-head-title span.tf-itinerary-time {
        padding: 8px 16px;
        background: #FAEEDC;
        margin-right: 16px; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content {
      display: flex;
      gap: 32px; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content {
          flex-wrap: wrap; } }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details {
      display: flex;
      flex-direction: column;
      width: calc(100% - 320px); }
      @media only screen and (max-width: 1366px) {
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details {
          width: calc(100% - 292px); } }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details {
          width: calc(100% - 204px); } }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details {
          width: 100% !important; } }
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details .tf-itinerary-more-offer {
        margin-top: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px; }
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details .tf-itinerary-more-offer .tf-itinerary-single-meta li {
          color: #99948D;
          font-size: 16px;
          font-style: normal;
          font-weight: 400;
          line-height: 130%;
          /* 20.8px */ }
          .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details .tf-itinerary-more-offer .tf-itinerary-single-meta li i {
            margin-right: 8px;
            width: 22px;
            font-size: 20px; }
          .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details .tf-itinerary-more-offer .tf-itinerary-single-meta li a {
            color: #99948D;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            /* 20.8px */
            text-decoration: none; }
            .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details .tf-itinerary-more-offer .tf-itinerary-single-meta li a i {
              margin-right: 8px;
              width: 22px;
              font-size: 20px; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 12px 10px; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-wrapper .tf-itinerary-content-details ul li {
      width: calc(50% - 5px); }
  .tf-template-3 .tf-itinerary-wrapper .section-title h2 {
    color: #595349;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 120%;
    /* 38.4px */
    margin: 0; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-itinerary-wrapper .section-title h2 {
        font-size: 24px !important; } }
  .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images {
    height: fit-content;
    width: 320px; }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media only screen and (max-width: 1366px) {
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images {
        width: 252px; } }
    @media only screen and (max-width: 1366px) {
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images {
        width: 179px; } }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images {
        width: 100% !important; } }
    .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images .ininerary-other-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 0px;
      margin-top: 8px; }
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images .ininerary-other-gallery a {
        display: none; }
        .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images .ininerary-other-gallery a:nth-child(1), .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images .ininerary-other-gallery a:nth-child(2) {
          display: block; }
      .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-content-images .ininerary-other-gallery a.tf-itinerary-gallery-more {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        justify-content: center;
        background-size: cover !important;
        background-position: center !important; }
  .tf-template-3 .tf-itinerary-wrapper .tf-single-itinerary.active .tf-itinerary-content {
    display: flex !important; }
  .tf-template-3 .tf-itinerary-wrapper .tf-single-itinerary.active {
    padding-bottom: 32px !important; }
  .tf-template-3 .tf-itinerary-wrapper .tf-itinerary-map iframe {
    width: 100%; }
  .tf-template-3 .tf-itinerary-wrapper .tf-single-itinerary.active .tf-itinerary-title i {
    transform: rotate(180deg); }

.tf-template-3 .tf-itinerary-map {
  margin-top: 32px;
  margin-bottom: 48px; }

.tf-template-3 .cld-main {
  width: fit-content;
  background: #FCF4E8;
  padding: 32px; }

.tf-template-3 .cld-datetime {
  width: 100% !important;
  min-width: 100%;
  background: #FAEEDC;
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 0;
  align-items: center; }

.tf-template-3 .cld-datetime .today {
  margin: unset;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  margin-top: 7px;
  color: #595349; }

.tf-template-3 .cld-datetime > div {
  width: initial;
  position: unset !important; }

.tf-template-3 .cld-nav {
  background: #B58E53;
  padding: 6px 11px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center; }

.tf-template-3 .cld-nav svg {
  height: 10px;
  width: 10px;
  fill: #fff; }

.tf-template-3 li.cld-day {
  background: #FDF9F3;
  padding: 16px;
  text-align: left;
  cursor: pointer; }

.tf-template-3 ul.cld-days {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px;
  color: #D6D4D2;
  /* Body/P1 */
  font-size: 24px;
  font-style: normal;
  font-weight: 400; }

.tf-template-3 span.cld-title {
  position: unset !important;
  border: unset;
  margin: unset;
  padding: unset;
  text-decoration: underline !important;
  white-space: normal;
  font-size: inherit;
  color: inherit !important;
  display: inline-block !important;
  justify-content: flex-start;
  margin-top: 6px; }

.tf-template-3 span.cld-title a {
  text-decoration: unset !important;
  color: inherit;
  font-weight: normal;
  font-size: 16px;
  font-weight: 700; }

.tf-template-3 p.cld-number {
  border: none !important;
  font-size: 16px; }

.tf-template-3 .cld-title::before {
  display: none; }

.tf-template-3 .cld-number.eventday:hover {
  background: transparent; }

.tf-template-3 li.cld-day.currMonth {
  color: #99948D; }

.tf-template-3 .cld-day.nextMonth, .tf-template-3 .cld-day.prevMonth {
  opacity: unset; }

.tf-template-3 li.cld-day.currMonth a {
  color: #B58E53;
  pointer-events: none; }

.tf-template-3 li.cld-label {
  color: #595349;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-align: left; }

.tf-template-3 ul.cld-labels {
  text-align: left;
  margin: 0;
  padding: 16px 0;
  display: flex;
  gap: 16px; }

.tf-template-3 ul.cld-days {
  margin-top: 0;
  padding: 0 !important; }

.tf-template-3 li.cld-day {
  width: calc(100%/7 - 46px); }

.tf-template-3 .cld-day.today .cld-number {
  background: transparent;
  color: inherit; }

@media only screen and (max-width: 767.98px) {
  .tf-template-3 .tf-whats-around {
    margin-left: 16px;
    margin-right: 16px; } }

.tf-template-3 .tf-whats-around ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-whats-around ul {
      gap: 8px; } }
  .tf-template-3 .tf-whats-around ul li {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-whats-around ul li {
        display: flow-root; } }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-whats-around ul li {
        display: flex; } }
    .tf-template-3 .tf-whats-around ul li span {
      width: 100% !important;
      display: block; }
      .tf-template-3 .tf-whats-around ul li span:last-child {
        text-align: right; }
    .tf-template-3 .tf-whats-around ul li i {
      margin-right: 8px;
      width: 20px;
      font-size: 20px; }

.tf-template-3 .tf-single-widgets h2 {
  margin-bottom: 0px;
  font-weight: 700 !important; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-single-widgets h2 {
      font-size: 20px !important; } }

.tf-template-3 .tf-location iframe {
  width: 100%;
  height: 250px; }

.tf-template-3 .tf-single-widgets {
  margin-bottom: 32px; }

.tf-template-3 .tf-review-data {
  display: flex;
  gap: 53px;
  margin-bottom: 24px; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-review-data {
      margin-bottom: 16px; } }

.tf-template-3 .tf-review-data-average span.avg-review {
  margin-bottom: 0px;
  font-size: 40px !important;
  font-weight: 400 !important;
  line-height: 52px !important;
  word-wrap: break-word;
  color: #99948D; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-review-data-average span.avg-review {
      font-size: 24px !important; } }
  .tf-template-3 .tf-review-data-average span.avg-review span {
    color: #595349; }

.tf-template-3 .tf-review-all-info {
  color: #595349;
  font-size: 20px;
  line-height: 26px; }
  .tf-template-3 .tf-review-all-info p {
    font-size: 20px !important; }
    .tf-template-3 .tf-review-all-info p span {
      color: #99948D;
      font-size: 16px;
      line-height: 20.80px;
      display: block;
      margin-top: 6px; }

.tf-template-3 .tf-progress-item {
  display: flex;
  flex-direction: column;
  align-content: space-around; }

.tf-template-3 .tf-review-feature-label {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4px; }

.tf-template-3 .tf-progress-bar {
  width: 100%;
  height: 12px;
  background: #D6D4D2;
  border-radius: 50px;
  display: flex; }

.tf-template-3 .tf-percent-progress {
  display: flex;
  flex-direction: column;
  gap: 16px; }

.tf-template-3 span.percent-progress {
  height: 12px;
  background: #99948d;
  border-radius: 50px;
  display: inline-block; }

.tf-template-3 a.tf-all-reviews {
  color: #595349;
  font-weight: 500;
  letter-spacing: 0.16px;
  text-decoration: none; }

.tf-template-3 button.tf-review-open.button, .tf-template-3 .tf-reting-field button {
  color: #595349;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background: #FAEEDC;
  width: 100%;
  border: none;
  padding: 12px 0;
  border-radius: 0px; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 button.tf-review-open.button, .tf-template-3 .tf-reting-field button {
      font-size: 12px; } }

.tf-template-3 .tf-single-widgets {
  display: flex;
  gap: 24px;
  flex-direction: column; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-single-widgets {
      gap: 16px; } }

.tf-template-3 .tour-external-booking-form {
  background-color: #fcf4e8;
  padding: 24px; }
  .tf-template-3 .tour-external-booking-form .tf-tour-external-booking-button {
    border: 1px solid #b58e53 !important;
    background: #b58e53 !important;
    padding: 12px 32px !important;
    justify-content: center;
    transition: .3s all ease;
    border-radius: 0px; }

.tf-template-3 .tf-tour-contact-informations {
  background-color: #fcf4e8;
  padding: 24px; }
  .tf-template-3 .tf-tour-contact-informations .tf-contact-details-title h3 {
    font-weight: 700 !important;
    font-size: 30px;
    margin-bottom: 5px; }
  .tf-template-3 .tf-tour-contact-informations .tf-contact-details-items .tf-list li {
    margin-top: 5px;
    margin-bottom: 15px;
    align-items: center; }
    .tf-template-3 .tf-tour-contact-informations .tf-contact-details-items .tf-list li a {
      text-decoration: none;
      color: #99948d; }
    .tf-template-3 .tf-tour-contact-informations .tf-contact-details-items .tf-list li i {
      font-size: 20px;
      color: #b58e53; }

.tf-template-3 .tf-review-form-wrapper {
  background: #FCF4E8;
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px; }

.tf-template-3 .tf-review-show {
  display: flex; }

.tf-template-3 .tf-review-form-wrapper h3 {
  color: #595349;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 24px; }

.tf-template-3 .tf-review-form-wrapper .tf-review-form-container {
  width: 100%;
  min-width: auto !important;
  background: transparent !important; }
  .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-rating-wrapper {
    grid-template-columns: 1fr !important;
    margin-bottom: 16px !important; }
    .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-rating-wrapper .tf-form-single-rating {
      display: flow-root; }
      .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-rating-wrapper .tf-form-single-rating label {
        font-size: 14px !important;
        font-weight: 600;
        line-height: 18.2px;
        display: block;
        margin-right: 4px; }
      .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-rating-wrapper .tf-form-single-rating .ratings-container {
        width: auto !important;
        text-align: left; }
      .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-rating-wrapper .tf-form-single-rating span.error {
        position: relative;
        top: 4px; }
  .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-review-submit {
    margin-top: 16px !important; }
    .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-review-submit input#comment-submit {
      background-color: #B58E53 !important;
      color: #fff;
      width: 100%;
      font-size: 16px !important;
      font-weight: 700;
      line-height: 24px !important;
      border: none !important;
      padding: 12px 0 !important;
      border-radius: 0px !important;
      transition: .3s all ease; }
      .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form .tf-review-submit input#comment-submit:hover {
        background-color: #917242 !important; }
  .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form input, .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form textarea {
    border: 1px solid #595349;
    background: transparent;
    padding: 8px;
    color: #222;
    font-size: 16px;
    border-radius: 0px; }
  .tf-template-3 .tf-review-form-wrapper .tf-review-form-container form textarea {
    width: 100% !important; }

.tf-template-3 .tf-reting-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8px; }

.tf-template-3 span.tf-reting-title {
  color: #595349;
  font-size: 14px;
  font-weight: 600;
  line-height: 18.20px; }

.tf-template-3 span.tf-reting-stars {
  display: flex;
  gap: 6px;
  color: #FFC700; }

.tf-template-3 .tf-review-form-wrapper form input,
.tf-template-3 .tf-review-form-wrapper form textarea {
  border: 1px solid #595349;
  background: transparent;
  padding: 8px;
  color: #C1BFBB;
  font-size: 12px; }

.tf-template-3 .tf-reting-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px; }

.tf-template-3 .tf-reting-field button {
  background-color: #B58E53;
  color: #fff;
  width: 100%; }

.tf-template-3 .tf-send-inquiry {
  background: #FCF4E8;
  display: flex;
  padding: 56px 80px;
  flex-direction: column;
  align-items: center;
  gap: 24px; }
  @media only screen and (max-width: 1600px) {
    .tf-template-3 .tf-send-inquiry {
      padding: 56px 16px; } }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-send-inquiry {
      padding: 16px; } }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-send-inquiry {
      gap: 16px; } }
  .tf-template-3 .tf-send-inquiry i {
    font-size: 64px; }
  .tf-template-3 .tf-send-inquiry h3 {
    color: #595349;
    font-size: 32px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 120%;
    margin: 0;
    text-align: center; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-send-inquiry h3 {
        font-size: 20px !important; } }
  .tf-template-3 .tf-send-inquiry p {
    color: #99948D;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin: 0; }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-send-inquiry p {
        font-size: 14px !important; } }
  .tf-template-3 .tf-send-inquiry .tf-btn {
    width: auto; }
    .tf-template-3 .tf-send-inquiry .tf-btn .tf-send-inquiry-btn {
      background: #B58E53;
      padding: 12px 32px;
      color: #FDF9F3;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      display: inline-block;
      text-align: center;
      transition: .3s all ease;
      text-decoration: none; }
      .tf-template-3 .tf-send-inquiry .tf-btn .tf-send-inquiry-btn:hover {
        background-color: #917242; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-send-inquiry .tf-btn .tf-send-inquiry-btn {
          font-size: 12px; } }

.tf-template-3 .tf-filter-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px; }
  @media only screen and (max-width: 1024px) {
    .tf-template-3 .tf-filter-wrapper {
      gap: 16px; } }
  .tf-template-3 .tf-filter-wrapper .tf-filter-title {
    display: flex;
    justify-content: space-between; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-title .tf-section-title {
      margin: 0 !important;
      padding: 0;
      font-weight: 700 !important; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-filter-wrapper .tf-filter-title .tf-section-title {
          font-size: 20px !important; } }
    .tf-template-3 .tf-filter-wrapper .tf-filter-title button {
      margin: 0;
      padding: 0;
      line-height: 1;
      border: none;
      background: unset;
      color: #595349;
      font-size: 16px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      /* 24px */
      transition: .3s all ease; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-filter-wrapper .tf-filter-title button {
          font-size: 12px !important; } }
      .tf-template-3 .tf-filter-wrapper .tf-filter-title button:hover {
        color: #B58E53; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-title button.filter-reset-btn {
      display: none; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item h4 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: #595349; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item label.tf-filter-location {
    display: flex;
    background: #fff;
    padding: 12px;
    gap: 6px; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item label.tf-filter-location input {
      width: -webkit-fill-available;
      border: none;
      outline: none; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item.tf-filter-rating i {
    color: #FFC700; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range input.al-range-slider__input {
    display: none; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range .al-range-slider__track {
    box-shadow: none;
    background: #D6D4D2;
    height: 8px;
    margin: 10px 0 40px 0; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range .al-range-slider__bar {
    border: none;
    box-shadow: none;
    background: #99948D; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range .al-range-slider__knob {
    display: flex;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    border: 1.5px solid #595349;
    background: #FDF9F3;
    box-shadow: none; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range .al-range-slider__knob:hover {
      border-color: none;
      box-shadow: none; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range .al-range-slider__tooltip {
    background: none;
    border-radius: none;
    bottom: -150%;
    box-shadow: none;
    font-size: 16px;
    padding: 0;
    color: #595349; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item .tf-filter-pricing-range .al-range-slider {
    padding: 0; }
  .tf-template-3 .tf-filter-wrapper .tf-filter-list-item ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item ul li input {
      padding: 0;
      height: initial;
      width: initial;
      margin-bottom: 0;
      display: none;
      cursor: pointer; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item ul li input:checked + label:before {
      background: #B58E53; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item ul li label {
      position: relative;
      cursor: pointer;
      color: #99948D; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item ul li label:before {
      content: '';
      background-color: transparent;
      display: inline-block;
      border-radius: 2px;
      border: 0.794px solid #917242;
      background: #FDF9F3;
      height: 12px;
      width: 12px;
      margin-right: 8px; }
    .tf-template-3 .tf-filter-wrapper .tf-filter-list-item ul li a.tf-filter-list-see-less {
      color: #595349;
      text-decoration: none; }

.tf-template-3 .tf-popup-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background: rgba(48, 40, 28, 0.301961);
  backdrop-filter: blur(15px);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center; }
  .tf-template-3 .tf-popup-wrapper.tf-show {
    visibility: visible;
    opacity: 1;
    transform: scale(1); }
    .tf-template-3 .tf-popup-wrapper.tf-show .tf-popup-inner {
      transform: scale(1); }
  .tf-template-3 .tf-popup-wrapper .tf-popup-inner {
    width: 1130px;
    background: #FCF4E8;
    padding: 24px;
    max-height: 695px;
    max-width: 80vw;
    position: relative;
    transform: scale(0.9);
    transition: 0.3s; }
    .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body {
      width: 100%;
      max-height: 624px;
      overflow: hidden;
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      scrollbar-width: thin;
      scrollbar-color: #aaa #eee; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body {
          grid-template-columns: 1fr 1fr;
          max-height: 320px; } }
      .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body scrollbar {
        width: 5px; }
      .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body scrollbar-thumb {
        background-color: #aaa;
        border-radius: 4px; }
      .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body img.tf-popup-image {
        width: 100%;
        height: fit-content;
        aspect-ratio: 1/1;
        object-fit: cover; }
    .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body::-webkit-scrollbar {
      width: 5px; }
    .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body::-webkit-scrollbar-thumb {
      background-color: #aaa;
      border-radius: 4px; }
    .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-body::-webkit-scrollbar-track {
      background-color: #eee; }
    .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-close {
      position: absolute;
      right: -15px;
      top: -15px;
      padding: 6px;
      height: 30px;
      width: 30px;
      border-radius: 50%;
      background: #fcf4e8;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .3s all ease;
      cursor: pointer; }
      .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-close:hover {
        background: #FDF9F3; }
      .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-close:focus {
        background: #FAEEDC; }
    .tf-template-3 .tf-popup-wrapper .tf-popup-inner .tf-popup-close i {
      color: #595349;
      font-size: 18px; }

.tf-template-3 .tf-popup-video-item {
  width: 100%;
  height: -webkit-fill-available; }

.tf-template-3 .tf-popup-video-item iframe {
  width: 100%;
  height: 100%; }

.tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner {
  width: 1500px; }
  @media only screen and (max-width: 767.98px) {
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner {
      width: 90% !important;
      max-width: none !important; } }
  .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body {
    width: 100%;
    max-height: 624px;
    overflow: hidden;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: #aaa #eee; }
    @media only screen and (max-width: 1024px) {
      .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body {
        grid-template-columns: 2fr 1fr; } }
    @media only screen and (max-width: 767.98px) {
      .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body {
        max-height: 430px; } }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body scrollbar {
      width: 5px; }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body scrollbar-thumb {
      background-color: #aaa;
      border-radius: 4px; }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-left {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 12px; }
      @media only screen and (max-width: 1024px) {
        .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-left {
          grid-template-columns: 1fr 1fr; } }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-right span {
      color: #595349;
      font-size: 16px !important;
      font-weight: 600 !important;
      line-height: 20.80px;
      word-wrap: break-word;
      margin-bottom: 0px; }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-right {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding-left: 10px; }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-right ul {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 16px; }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-right ul li {
      width: calc(50% - 8px);
      display: flex;
      gap: 8px; }
      @media only screen and (max-width: 767.98px) {
        .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-right ul li {
          width: calc(100% - 8px); } }
    .tf-template-3 .tf-popup-wrapper.tf-room-popup .tf-popup-inner .tf-popup-body .tf-popup-right a {
      color: #595349;
      font-size: 16px;
      font-weight: 600;
      line-height: 20.80px;
      text-decoration: none; }

@media only screen and (max-width: 1600px) {
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content {
    width: calc(100% - 230px); }
  .tf-template-3.tf-hotel-single .tf-room-popup .tf-popup-inner {
    width: 80%; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin,
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout {
    max-width: none;
    padding-left: 78px;
    padding-right: 78px; } }

@media only screen and (max-width: 1366px) {
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-right {
    width: 391px !important;
    padding: 0px !important; }
  .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-right {
    width: 391px !important;
    padding: 0px !important; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin,
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout {
    max-width: none;
    padding-left: 48px;
    padding-right: 48px; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-guest-and-room {
    padding-left: 48px !important; } }

@media only screen and (max-width: 1280px) {
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head {
    margin-bottom: 16px; }
  .tf-template-3 .tf-available-rooms-wrapper .tf-available-rooms-head > h2 {
    font-size: 16px !important; }
  .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details {
    gap: 24px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper {
    padding: 16px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-rooms-head > h2 {
    font-size: 16px !important;
    font-weight: 600 !important; }
  .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-left .tf-overview-wrapper .tf-overview-popular-facilities > ul li {
    width: 33%; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right {
    width: 133px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left h2 {
    font-size: 24px !important; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery {
    min-width: 222px;
    max-width: 222px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+2) {
    width: 105px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.availability,
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content a.tf_air_service {
    font-size: 12px !important;
    min-width: 128px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li {
    font-size: 14px; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-available-room-price .tf-price {
    text-align: right; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left {
    width: calc(100% - 155px); }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin,
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout {
    max-width: none;
    padding-left: 32px;
    padding-right: 32px; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-guest-and-room {
    padding-left: 32px !important; } }

@media only screen and (min-width: 1025px) and (max-width: 1165px) {
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-gallery {
    min-height: auto;
    max-height: none;
    height: auto; }
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content {
    padding: 14px; }
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left {
      width: calc(100% - 154px); }
      .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info {
        margin-bottom: 32px; }
    .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right {
      width: 130px; }
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-checkout,
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-checkin {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: none;
    width: 20%; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-checkout .tf-booking-date,
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-checkin .tf-booking-date {
      font-size: 20px; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-checkout .tf-duration span,
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-checkin .tf-duration span {
      margin: 0px 5px; }
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 35% !important;
    min-width: auto; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-guest-and-room .tf-booking-date {
      font-size: 20px; }
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-booking-form-fields .tf-booking-form-location {
    padding-right: 10px !important;
    width: 25% !important; }
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-checkout,
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-checkin {
    padding-left: 10px !important;
    padding-right: 10px !important; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-checkout .tf-booking-date,
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-checkin .tf-booking-date {
      font-size: 20px; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-checkout .tf-duration span,
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-checkin .tf-duration span {
      margin: 0px 5px; }
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-guest-and-room {
    padding-left: 10px !important;
    padding-right: 10px !important;
    width: 20% !important;
    min-width: auto; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-guest-and-room .tf-booking-date {
      font-size: 20px; }
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf-booking-form .tf-tour-archive-block .tf-booking-form-location {
    padding-right: 10px !important; } }

@media only screen and (max-width: 1024px) {
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-left {
    width: calc(100% - 369px); }
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-right {
    width: 345px !important;
    padding: 0px !important; }
  .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-left {
    width: calc(100% - 246px); }
  .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-right {
    width: 222px !important;
    padding: 0px !important; }
  .tf-template-3.tf-hotel-single .tf-review-data {
    gap: 20px;
    justify-content: space-between; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkin,
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-checkout {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-form-guest-and-room {
    padding-left: 20px !important; }
  .tf-template-3.tf-hotel-single .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content .tf-available-room-content-left ul li {
    font-size: 16px; }
  .tf-template-3.tf-apartment-single .tf-content-wrapper .tf-details .tf-details-left {
    width: calc(100% - 264px); }
  .tf-template-3.tf-apartment-single .tf-content-wrapper .tf-details .tf-details-right {
    width: 240px !important;
    padding: 0px !important; } }

@media only screen and (max-width: 992px) {
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-left {
    width: calc(100% - 284px); }
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-right {
    width: 260px !important; }
  .tf-template-3 .tf-archive-details.tf-details {
    position: relative; }
  .tf-template-3 .tf-available-archive-hetels-wrapper .tf-archive-available-rooms .tf-available-room .tf-available-room-content .tf-available-room-content-right a.view-hotel {
    min-width: 95px; }
  .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos > div {
    width: 104px;
    height: 40px; }
  .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content .tf-hero-bottom-area .tf-hero-gallery-videos a img {
    width: 16px; }
  .tf-template-3 .tf-header .tf-header-top {
    min-height: 24px; }
  .tf-template-3 .tf-header .tf-header-main {
    min-height: 58px; }
  .tf-template-3 .tf-hero-section-wrap .tf-container .tf-hero-content {
    min-height: 275px;
    max-height: 275px; }
  .tf-template-3 .tf-details-menu.tf-sticky-menu {
    top: 90px; }
  .tf-template-3.tf-hotel-single .tf-booking-form {
    display: flow-root; }
    .tf-template-3.tf-hotel-single .tf-booking-form .tf-booking-form-fields {
      width: 100% !important; }
    .tf-template-3.tf-hotel-single .tf-booking-form .tf-booking-form-submit {
      width: 100% !important; } }

@media only screen and (min-width: 768px) and (max-width: 970px) {
  .tf-template-3 .tf-related-tours .tf-slider-item {
    height: auto !important;
    padding: auto !important;
    margin: auto !important;
    border: 0px solid !important; } }

@media only screen and (max-width: 767.98px) {
  .tf-template-3 {
    font-size: 14px; }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu ul {
      gap: 16px; }
    .tf-template-3 .tf-template-3 {
      overflow: hidden; }
    .tf-template-3 .tf-content-wrapper .tf-details .tf-details-left .tf-details-menu {
      padding: 16px; }
    .tf-template-3 .tf-available-rooms-wrapper .tf-available-room .tf-available-room-content {
      padding: 16px; }
    .tf-template-3 .tf-bottom-booking-bar .tf-bottom-booking-field {
      width: auto !important; }
    .tf-template-3 .tf-related-tours .tf-slider-item .tf-meta-info .tf-meta-title h2 a {
      font-size: 20px; }
    .tf-template-3 .tf-archive-details .tf-available-room {
      display: flow-root; }
      .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-gallery {
        height: 120px !important;
        max-width: none !important; }
        .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+2) {
          width: 48px !important;
          height: 28px !important; }
          .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-gallery .tf-room-gallery:nth-child(n+2) svg {
            width: 10px !important; }
      .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content {
        width: auto !important;
        display: flow-root; }
        .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left {
          width: 100% !important; }
          .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 24px; }
            .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info .tf-section-title-and-location {
              margin-bottom: 0px;
              width: calc(100% - 124px); }
              .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info .tf-section-title-and-location h2 {
                margin-bottom: 6px; }
              .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info .tf-section-title-and-location .tf-title-location {
                margin: 0px; }
            .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info .tf-mobile.tf-pricing-info {
              display: flex;
              width: 120px;
              flex-direction: column;
              align-items: end; }
              .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left .tf-card-heading-info .tf-mobile.tf-pricing-info .tf-price-from .amount {
                color: #595349;
                font-size: 20px;
                font-style: normal;
                font-weight: 400;
                line-height: 130%; }
          .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-left ul {
            margin-bottom: 24px !important; }
        .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-right {
          width: 100% !important;
          display: flow-root; }
          .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-right .tf-card-pricing-heading {
            display: none; }
          .tf-template-3 .tf-archive-details .tf-available-room .tf-available-room-content .tf-available-room-content-right a {
            width: 100% !important; }
    .tf-template-3 .tf-tour-contact-informations {
      margin-bottom: 32px;
      margin-top: 32px;
      margin-right: 16px;
      margin-left: 16px; }
  .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details {
    display: flow-root; }
    .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-left {
      width: 100% !important; }
    .tf-template-3.tf-tour-single .tf-content-wrapper .tf-details .tf-details-right {
      width: 100% !important; }
  .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets {
    background-color: transparent;
    gap: 0px;
    padding: 0px;
    margin: 0px; }
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf-section-title,
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf_tours_booking > .tf-field-group,
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf_tours_booking > .check-in-time-div,
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf-tour-booking-box,
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf_tours_booking > .tf-tours-booking-btn .tf-btn,
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf-bottom-booking-bar {
      display: none !important; }
    .tf-template-3.tf-tour-single .tf-search-date-wrapper.tf-single-widgets .tf-bottom-booking-bar.tf-mobile-booking-form {
      display: block !important; }
  .tf-template-3.tf-tour-single .tf-reviews.tf-single-widgets,
  .tf-template-3.tf-tour-single #tf-tour-faq,
  .tf-template-3.tf-tour-single #tf-tour-reviews,
  .tf-template-3.tf-tour-single #tf-tour-policies,
  .tf-template-3.tf-tour-single .tf-related-tours {
    padding-left: 16px;
    padding-right: 16px; }
  .tf-template-3.tf-tour-single #tf-tour-reviews {
    padding-bottom: 32px !important;
    padding-top: 16px; }
  .tf-template-3.tf-tour-single #tf-tour-policies,
  .tf-template-3.tf-tour-single .tf-related-tours {
    padding-top: 16px;
    padding-bottom: 16px; }
  .tf-template-3.tf-tour-single .tf-send-inquiry {
    margin-bottom: 32px;
    margin-right: 16px;
    margin-left: 16px; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form span.tf-booking-form-title {
    font-size: 12px; }
  .tf-template-3.tf-hotel-single .tf-booking-form-wrapper .tf-booking-form .tf-booking-date {
    font-size: 16px; }
  .tf-template-3.tf-hotel-single .tf-popup-left {
    width: 100%; }
  .tf-template-3.tf-hotel-single .tf-popup-right {
    width: 100%; }
  .tf-template-3.tf-hotel-single .tf-popup-body {
    max-height: 320px; }
  .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details {
    display: flow-root; }
    .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-left {
      width: 100% !important; }
    .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-right {
      width: 100% !important; }
      .tf-template-3.tf-hotel-single .tf-content-wrapper .tf-details .tf-details-right .tf-location.tf-single-widgets {
        padding-left: 16px;
        padding-right: 16px; }
  .tf-template-3.tf-hotel-single #tf-hotel-facilities {
    padding-left: 16px;
    padding-right: 16px; }
  .tf-template-3.tf-hotel-single #room-availability.tf-booking-form-wrapper {
    margin-left: 16px;
    margin-right: 16px; } }

@media only screen and (max-width: 660px) {
  .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result {
    display: flow-root !important;
    padding: 0px 16px 8px 16px; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields {
      width: 100% !important;
      display: flow-root !important;
      padding: 8px 0; }
      .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-location {
        width: 100% !important;
        padding: 0px !important;
        border-right: 0px solid !important;
        margin-bottom: 12px !important; }
        .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-location #tf-locationautocomplete-list,
        .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-location #tf-destinationautocomplete-list,
        .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-location #tf-apartment-locationautocomplete-list {
          width: 100% !important; }
      .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-checkin {
        width: 31% !important;
        float: left;
        padding: 0px;
        max-width: none; }
      .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-checkout {
        width: 31% !important;
        float: left;
        padding: 0px;
        padding-left: 20px !important;
        max-width: none; }
      .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields .tf-booking-form-guest-and-room {
        width: 31% !important;
        float: left;
        padding-left: 20px !important;
        padding-right: 0px !important;
        min-width: auto; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields.tf-tour-archive-block .tf-booking-form-checkin {
      width: 50% !important;
      float: left;
      padding: 0px; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-fields.tf-tour-archive-block .tf-booking-form-guest-and-room {
      width: 50% !important;
      float: left;
      padding-left: 20px !important;
      padding-right: 0px !important; }
    .tf-template-3 .tf-archive-search-form.tf-booking-form-wrapper .tf_archive_search_result .tf-booking-form-submit {
      width: 100% !important; } }


/*# sourceMappingURL=tourfic-style.css.map*/