@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%;
  margin: 20px auto;
  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);
}

/*
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 0.2s ease, visibility 0.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);
  }
}
body.tf-modal-open {
  overflow: hidden;
}
body.tf-modal-open .tf-modal {
  overflow-x: hidden;
  overflow-y: auto;
}
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);
}

.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-70 {
  padding: 70px 0;
}

.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: #0054a8;
  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: 0.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 !important;
  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_person-icon {
  padding-right: 10px;
}

.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 h3 {
  font-size: 22px;
  color: #3A3A44;
}
.tf-ask-question h3:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f059";
  padding-right: 7px;
  color: #003162 !important;
}

.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;
}
.tourfic-single-left img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.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;
}

.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;
  max-width: 120px;
  line-height: 1;
  margin-left: auto;
}

.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;
}

.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: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.archive_ajax_result.tours-grid .single-tour-wrap {
  width: 50%;
  padding: 0 5px;
  margin-bottom: 10px;
  flex: 0 0 50%;
}
.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 {
  width: 100%;
  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;
}

/* 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 {
  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 h4 {
  font-size: 16px;
  line-height: 24px;
  font-family: "rubik", sans-serif;
  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%;
  }
}
@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_form-inner .autocomplete-items {
  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;
  background: #003162;
  width: 15%;
}
.tf_submit-wrap .btn-styled {
  padding: 20px 20px;
}
.tf_submit-wrap button {
  width: 100%;
  height: 100%;
}

.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;
  grid-template-columns: 6% 94%;
  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: 4px;
  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_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_tf_booking-widget-wrap {
  z-index: 999;
}

#tf-ask-question {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
}

.tf-aq-overlay {
  position: absolute;
  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: 50%;
  width: 100%;
  max-width: 428px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  transform: translateY(-50%);
  height: auto;
}
@media only screen and (max-width: 640px) {
  .tf-aq-outer {
    width: 90%;
  }
}

span.close-aq {
  position: absolute;
  right: -15px;
  top: -15px;
  width: 35px;
  text-align: center;
  height: 35px;
  background: #003162;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  line-height: 31px;
  border-radius: 50%;
  z-index: 9999;
}

.tf-aq-field {
  position: relative;
  margin: 10px 0;
  overflow: hidden;
  display: flex;
}
.tf-aq-field input {
  width: 100%;
}
.tf-aq-field textarea {
  width: 100%;
}

.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 0.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 0.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 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.tf-field-group i {
  position: absolute;
  left: 18px;
}
.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;
}
.tf-field-group .tf-field:focus {
  outline: none;
  border: none;
}
.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(50% - 16px);
}

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

.tf-column-4 {
  display: flex;
  flex-wrap: wrap;
}
.tf-column-4 .tf-column {
  flex-basis: calc(25% - 16px);
}
@media only screen and (max-width: 767.98px) {
  .tf-column-4 .tf-column {
    flex-basis: calc(50% - 8px);
  }
}
@media only screen and (min-width: 767.99px) and (max-width: 991px) {
  .tf-column-4 .tf-column {
    flex-basis: calc(50% - 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);
}

/**************** FEATURES ****************/
.tf_features {
  padding-top: 50px;
}

.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 rgba(0, 0, 0, 0.1803921569);
  box-shadow: -1px 1px 6px -1px rgba(0, 0, 0, 0.1803921569);
  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 {
  border-left: 1px solid #c8e2fc;
  border-bottom: 1px solid #c8e2fc;
  border-top: none;
  border-right: none;
}

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

.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;
}

.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;
}

/********************** 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;
}

.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: rgba(255, 255, 255, 0.9411764706);
  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: rgba(0, 49, 98, 0.9215686275);
  border-top: 4px solid #FB5A3B;
  padding: 8px 0;
}
.tf-tour-booking-wrap.tf-tours-fixed .tf_acrselection-wrap {
  position: absolute;
  top: -160px;
}
.tf-tour-booking-wrap.tf-tours-fixed .tf_tours_booking {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.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;
}
.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: rgba(0, 123, 255, 0.1411764706);
}

.tf-single-square-block.second {
  background: rgba(40, 167, 69, 0.1411764706);
}

.tf-single-square-block.third {
  background: rgba(255, 193, 7, 0.1411764706);
}

.tf-single-square-block.fourth {
  background: rgba(220, 53, 69, 0.1411764706);
}

.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 rgba(0, 0, 0, 0.1803921569);
  box-shadow: -1px 1px 6px -1px rgba(0, 0, 0, 0.1803921569);
  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: rgba(0, 0, 0, 0.6392156863);
  background-image: linear-gradient(to right, rgba(253, 97, 67, 0), rgb(0, 49, 98));
  border-radius: 4px;
  padding: 20px 30px 30px;
  color: #fff;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.tf-exclude-section {
  background: rgba(0, 0, 0, 0.6392156863);
  background-image: linear-gradient(to right, rgba(253, 97, 67, 0), rgb(0, 49, 98));
  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-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;
}

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

@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-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 {
  position: -webkit-sticky;
  position: sticky;
  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 0.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: 15px;
  color: #0E3DD8;
  font-weight: 600;
  margin-bottom: 20px;
  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 6px;
}
.tf-head-info .share-tour-content .tf-dropdown-share-content ul li a i {
  font-size: 16px;
}
.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 6px;
  background-color: transparent !important;
  border: 0px solid;
}
.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-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 {
  max-height: 474px;
}
.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 0.6s ease;
}
.tf-hero-gallery .tf-gallery-featured .featured-column a:hover {
  background-color: #deddeb;
  transition: all 0.6s ease;
}
.tf-hero-gallery .tf-gallery-featured .featured-meta-gallery-videos {
  display: flex;
  position: absolute;
  top: 25px;
  right: 25px;
  gap: 24px;
}
@media only screen and (max-width: 767.98px) {
  .tf-hero-gallery .tf-gallery-featured .featured-meta-gallery-videos {
    gap: 5px;
    right: 15px;
  }
}
.tf-hero-gallery .tf-gallery-featured .tf-single-review-box {
  position: absolute;
  top: 25px;
  left: 25px;
  gap: 24px;
}
@media only screen and (max-width: 767.98px) {
  .tf-hero-gallery .tf-gallery-featured .tf-single-review-box {
    gap: 5px;
    left: 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-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%;
}
.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: rgba(0, 0, 0, 0.6117647059);
  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 rgba(14, 19, 35, 0.0196078431);
  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;
}

.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-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%;
}
@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: 100%;
  border-radius: 5px;
}
.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: rgba(0, 0, 0, 0.6117647059);
  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 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 .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;
  background: #0E3DD8;
  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: 0.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 !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(50% - 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;
}

.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(50% - 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: 350px;
  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: 420px;
  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 {
  position: absolute;
  top: 20px;
  left: 20px;
}
.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;
}
@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 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 {
  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-hotel-location-map {
  margin-top: 25px;
}
.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 #E0E8EE;
  border-radius: 5px;
  margin-bottom: 0px;
  border-collapse: collapse;
  width: 100%;
}
.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;
}
.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;
}
@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-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 0px 24px 5px #E0E8EE;
  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-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 0px 24px 5px #E0E8EE;
  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 0px 24px 5px #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-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 0px 24px 5px #E0E8EE;
  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 0px 24px 5px #E0E8EE;
  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-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 .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;
}

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