@keyframes slideUp {
  from {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.3s ease-in 1 forwards;
}

.block {
  display: block !important;
}

.flex {
  display: flex !important;
}

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

.flex-col {
  display: flex !important;
  flex-direction: column !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-center {
  align-items: center !important;
}

.justify-sb {
  justify-content: space-between !important;
}

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

.flex-center {
  align-items: center !important;
  justify-content: center !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-3 {
  gap: 3px !important;
}

.p-0 {
  padding: 0 !important;
}

.p-5 {
  padding: 5px !important;
}

.p-10 {
  padding: 10px !important;
}

.p-20 {
  padding: 10px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pt-5 {
  padding-top: 5px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py-10 {
  padding: 10px 0 !important;
}

.py-20 {
  padding: 10px 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 5px !important;
}

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

.mt-15 {
  margin-top: 15px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.my-5 {
  margin: 5px 0 !important;
}

.my-10 {
  margin: 10px 0 !important;
}

.fixed {
  position: fixed !important;
  width: 100% !important;
}

.sticky-t {
  position: sticky !important;
  top: 0 !important;
  z-index: 3 !important;
}

.sticky-b {
  position: sticky !important;
  bottom: 0 !important;
  z-index: 3 !important;
}

.invis {
  visibility: hidden !important;
}

.hidden {
  visibility: hidden !important;
  display: none !important;
}

.hr {
  height: 1px !important;
  background-color: #dbdbdb !important;
  border: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-100 {
  width: 100% !important;
}

.img-responsive {
  height: 100%;
  width: auto;
}

.icon-white {
  filter: invert(98%) sepia(30%) saturate(17%) hue-rotate(283deg) brightness(300%) contrast(100%);
}

.border-brand {
  border: 1px solid #008286;
}

.border-0 {
  border: none !important;
}

.bg-brand-light {
  background: #f5ffff;
}

.br-100 {
  border-radius: 100%;
}

.hide-lg {
  display: none;
  visibility: hidden;
}
@media (max-width: 1024px) {
  .hide-lg {
    display: inherit;
    visibility: visible;
  }
}

.clr-brand {
  color: #008286 !important;
}

.bg-brand {
  background: #008286 !important;
}

.clr-brand-dark {
  color: #005658 !important;
}

.bg-brand-dark {
  background: #005658 !important;
}

.clr-brand-dark-font {
  color: #129ea2 !important;
}

.bg-brand-dark-font {
  background: #129ea2 !important;
}

.clr-brand-light {
  color: #f5ffff !important;
}

.bg-brand-light {
  background: #f5ffff !important;
}

.clr-grey {
  color: #f1f1f2 !important;
}

.bg-grey {
  background: #f1f1f2 !important;
}

.clr-border {
  color: #dbdbdb !important;
}

.bg-border {
  background: #dbdbdb !important;
}

.clr-font {
  color: #343434 !important;
}

.bg-font {
  background: #343434 !important;
}

.clr-font-light {
  color: #868686 !important;
}

.bg-font-light {
  background: #868686 !important;
}

.clr-blue {
  color: #0672ff !important;
}

.bg-blue {
  background: #0672ff !important;
}

.clr-blue-alt {
  color: #3d7dd1 !important;
}

.bg-blue-alt {
  background: #3d7dd1 !important;
}

.clr-req {
  color: #bc2525 !important;
}

.bg-req {
  background: #bc2525 !important;
}

.clr-red {
  color: #dc1e1e !important;
}

.bg-red {
  background: #dc1e1e !important;
}

.clr-pink {
  color: #ffdfdf !important;
}

.bg-pink {
  background: #ffdfdf !important;
}

.clr-green {
  color: #00ce29 !important;
}

.bg-green {
  background: #00ce29 !important;
}

.clr-mint {
  color: #e8ffe4 !important;
}

.bg-mint {
  background: #e8ffe4 !important;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #343434;
}

a {
  color: #0672ff;
}

.filter-title {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.f-xs {
  font-size: 11px !important;
}

.f-sm {
  font-size: 12px !important;
}

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

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

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

.f-xl {
  font-size: 24px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.lh-xs {
  line-height: 1;
}

.lh-sm {
  line-height: 1.25;
}

.lh-md {
  line-height: 1.5;
}

.required {
  color: #bc2525 !important;
}

.clr-brand {
  color: #008286 !important;
}

.clr-blue {
  color: #0672ff !important;
}

.clr-font-light {
  color: #868686 !important;
}

.fw-r {
  font-weight: normal !important;
}

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

.text-underline {
  text-decoration: underline;
}

.btn {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: inset 2px 2px 0px rgba(255, 255, 255, 0.1607843137);
  cursor: pointer;
  text-decoration: none;
}
.btn__brand {
  font-size: 14px;
  color: #fff;
  background: transparent linear-gradient(180deg, #02989d 0%, #008286 100%);
  box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.1607843137);
  border: 1px solid #017275;
  font-weight: bold;
}
.btn__red {
  background: transparent linear-gradient(180deg, #bc2525 0%, #a41515 100%);
  box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.1607843137);
  border: 1px solid #961b20;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.btn__white {
  background: #fff;
  font-size: 14px;
  border: 1px solid #dbdbdb;
}
.btn__ghost {
  background: transparent;
  font-size: 14px;
  border: 1px solid #dbdbdb;
  color: #0672ff;
}
.btn__pagination {
  background: #fff;
  height: 40px;
  width: 40px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}

.btn-sm {
  height: 40px !important;
}

.disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-back {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: -10px !important;
  position: relative;
}
.btn-back svg {
  transform: rotate(90deg);
  scale: 0.85;
}

a:is(.btn__white) {
  text-decoration: underline;
}

.media-btns-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 10px;
}

.media-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: #cecece;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 5px;
  cursor: pointer;
}
.media-btn svg {
  margin-right: 5px;
  fill: #cecece;
}
.media-btn .btn-text {
  padding-right: 3px;
}
.media-btn:is(.active) {
  border-color: #008286;
  background: #f5ffff;
  color: #008286;
}
.media-btn:is(.active) svg {
  fill: #008286;
}
@media (max-width: 420px) {
  .media-btn .btn-text {
    display: none;
  }
}

[data-overlay-btn] {
  cursor: pointer;
}

.arrow-light {
  opacity: 0.3;
}

fieldset .icon,
.icon {
  position: relative;
  background-position: calc(100% - 10px) center !important;
  background-size: 20px !important;
  border-radius: 5px;
  padding: 0;
}
fieldset .icon select,
fieldset .icon input,
.icon select,
.icon input {
  padding-right: 35px !important;
}
fieldset .icon__search,
.icon__search {
  padding-left: 35px !important;
  background-position: 10px center !important;
  background: url("../images/icons/search.svg") no-repeat #fff;
}
fieldset .icon__departure,
.icon__departure {
  background: url("../images/icons/flight-takeoff.svg") no-repeat #fff;
}
fieldset .icon__landing,
.icon__landing {
  background: url("../images/icons/flight-land.svg") no-repeat #fff;
}
fieldset .icon__mountains,
.icon__mountains {
  background: url("../images/icons/mountains.svg") no-repeat #fff;
}
fieldset .icon__calendar,
.icon__calendar {
  background: url("../images/icons/calendar-month.svg") no-repeat #fff;
}
fieldset .icon__clock,
.icon__clock {
  background: url("../images/icons/clock.svg") no-repeat #fff;
}
fieldset .icon__person,
.icon__person {
  background: url("../images/icons/face.svg") no-repeat #fff;
}
fieldset .icon__price,
.icon__price {
  background: url("../images/icons/paid.svg") no-repeat #fff;
}
fieldset .icon__filter,
.icon__filter {
  background: url("../images/icons/filter.svg") no-repeat #fff;
}
fieldset .icon__passenger,
.icon__passenger {
  background: url("../images/icons/passenger.svg") no-repeat #fff;
}
fieldset .icon__plane,
.icon__plane {
  background: url("../images/icons/plane.svg") no-repeat #fff;
}
fieldset .icon__bed,
.icon__bed {
  background: url("../images/icons/bed.svg") no-repeat #fff;
}

.main-menu {
  position: relative;
  width: 100%;
  height: 45px;
  background: #008286 0% 0% no-repeat padding-box;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.main-menu img {
  height: 25px;
  width: auto;
}

.navbar {
  position: relative;
  font-size: 12px;
}
.navbar > a {
  color: #fff;
  padding: 0 8px;
  text-decoration: none;
}
.navbar > a:last-of-type {
  margin-right: 32px;
}

.hamburger {
  position: relative;
  transform: translateY(-9px);
  width: 100%;
}
.hamburger span {
  position: absolute;
  right: 0;
  height: 3px;
  width: 22px;
  border-radius: 2px;
  background-color: #fff;
}
.hamburger span:first-of-type {
  transform: translateY(7px);
}
.hamburger span:last-of-type {
  transform: translateY(-7px);
}

.package-finder {
  padding: 20px 10px 10px;
  position: relative;
}
.package-finder > img {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
.package-finder > img:is(.active) {
  display: block;
}

.package-tabs {
  display: flex;
  margin: 0 5px;
  background: #f1f1f2;
  border-radius: 5px 5px 0 0;
}

.package-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0 10px;
  cursor: pointer;
  border-right: 1px solid #dbdbdb;
  color: #343434;
  font-size: 14px;
  text-decoration: none;
}
.package-tab:last-of-type {
  border-right: none;
}
.package-tab:first-of-type:is(.active) {
  width: 100%;
}
.package-tab:is(.active) {
  background: #fff;
  font-weight: bold;
  position: relative;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1019607843);
  border-right: none;
  z-index: 1;
}
.package-tab:is(.active) span {
  transform: translateY(-5px);
}
.package-tab:is(.active):first-of-type:after {
  left: -5px;
}
.package-tab:is(.active):last-of-type:after {
  right: -5px;
}
.package-tab:is(.active):after {
  content: "";
  position: absolute;
  height: 51px;
  width: calc(100% + 5px);
  border-radius: 5px 5px 0 0;
  top: -5px;
  background: #fff;
  z-index: -1;
}

.packages {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
}

.packages > fieldset {
  display: none;
  visibility: hidden;
}
.packages > fieldset:is(.active) {
  display: block;
  visibility: visible;
}

.package-cards > div {
  display: none;
}
.package-cards > div:is(.active) {
  display: block;
}

.card {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
  border-radius: 5px;
}
.card h4 {
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: bold;
}
.card p {
  font-size: 12px;
}
.card img {
  margin-right: 10px;
}

.details-card {
  background: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}

.booking-bonus-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}
.booking-bonus-card li {
  transform: translateX(5px);
  list-style-type: "-  " !important;
}

.card-brand {
  background: #f5ffff;
  border: 1px solid #005658;
  border-radius: 5px;
}
.card-brand img {
  height: 35px;
}

.package-finder .card:first-of-type {
  margin-top: 10px;
}

.results-card {
  display: block;
  margin-bottom: 5px;
  color: #343434;
  text-decoration: none;
}
.results-card:last-of-type {
  margin-bottom: 10px !important;
}
.results-card__result {
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-template-rows: 1fr;
}
.results-card__result .details-container {
  display: grid;
  gap: 5px;
  padding: 10px 0 10px 10px;
}
.results-card__result .details-container .card-title {
  font-size: 14px;
  font-weight: bold;
}
.results-card__result .details-container .tags {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 12px;
  color: #008286;
}
.results-card__result .details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.results-card__result .details span {
  font-size: 11px;
}
.results-card__result .details span b {
  font-size: 14px;
}
.results-card__result .details .spacer {
  display: inline-block;
  height: 1px;
  width: 20px;
  background: #343434;
  margin: 0 8px;
}
.results-card__result .details .time {
  font-size: 11px;
}
.results-card__result .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  border-left: 1px solid #dbdbdb;
  padding: 10px 0;
}
.results-card__result .price h3 {
  margin: 5px 0;
}

.category-price-card .header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
}
.category-price-card .header img {
  height: 70px;
  width: 130px;
  object-fit: cover;
}
.category-price-card .header__content {
  padding-left: 10px;
}
.category-price-card .header__content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.category-price-card .categories {
  padding: 0;
  display: none;
  overflow: hidden;
  border: none !important;
}
.category-price-card .categories .accordion {
  border-left: none;
  border-right: none;
}
.category-price-card .categories .accordion:first-of-type {
  border-top: none;
}
.category-price-card .categories .accordion .details {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
}
.category-price-card .categories .panel > .footer {
  padding: 0 0 10px 0;
}
.category-price-card .categories .accordion.active,
.category-price-card .categories .panel.active {
  border: none;
}
.category-price-card .categories .panel.active {
  border-bottom: 1px solid #dbdbdb;
}
.category-price-card .categories .panel.active .tips {
  border-bottom: none;
  padding: 0 0 10px 0;
}
.category-price-card .tips {
  padding: 10px;
  border-bottom: 1px solid #dbdbdb;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.category-price-card .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.category-price-card .footer span {
  font-size: 24px;
  font-weight: 600;
}
.category-price-card .footer .btn-container {
  display: flex;
  gap: 5px;
}
.category-price-card .footer .btn-container .btn {
  font-size: 14px;
  width: 100px;
  height: 40px;
}

.cic-card {
  border: 1px solid #008286;
  border-radius: 5px;
}
.cic-card .number,
.cic-card .header {
  padding: 10px;
}
.cic-card .header {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  background: #f5ffff;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.cic-card .header img {
  height: 40px;
  border: 1px solid #008286;
}
.cic-card .number {
  background: #008286;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.call-agent-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #343434 !important;
  text-decoration: none;
}

.card2 .header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
}
.card2 .header img {
  height: 70px;
  width: 130px;
  object-fit: cover;
}
.card2 .header__content {
  padding: 10px;
}
.card2 .header__content .title {
  font-size: 14px;
  font-weight: 600;
}
.card2 .header__content .sub-title {
  display: block;
  color: #868686;
  font-size: 12px;
  margin: 3px 0 5px;
}
.card2 .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.card2 .footer .price {
  font-size: 24px;
  font-weight: 600;
}
.card2 .footer .btn-container {
  display: flex;
  gap: 5px;
}
.card2 .footer .btn-container .btn {
  font-size: 14px;
  width: 100px;
  height: 40px;
}

.agent-card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  padding: 0;
}
.agent-card p {
  font-size: 16px;
  line-height: 1.5;
}
.agent-card .card-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  gap: 20px;
  padding: 20px;
}
.agent-card .agent-img,
.agent-card .agent-img-sm {
  margin: 0;
  border-radius: 100%;
}
.agent-card .agent-img {
  height: 150px;
  width: 150px;
  margin-top: 10px;
}
.agent-card .agent-img-sm {
  height: 40px;
  width: 40px;
}
.agent-card .agent-info {
  text-align: center;
}
.agent-card .agent-info h3 {
  margin-bottom: 5px;
}
.agent-card .agent-status {
  width: 100%;
  padding: 20px;
  background: #ffdfdf;
  color: #bc2525;
  border-radius: 30px;
  text-align: center;
  position: relative;
}
.agent-card .agent-status .arrow {
  position: absolute;
  top: -10px;
  left: calc(50% - 12px);
}
.agent-card .agent-status .arrow path {
  fill: #ffdfdf !important;
}
.agent-card .agent-status .in-office {
  background: #00ce29;
}
.agent-card .agent-status.in-office {
  background: #00ce29;
  color: #fff;
}
.agent-card .agent-status.in-office .arrow path {
  fill: #00ce29 !important;
}
.agent-card .card-footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0;
  border-top: 1px solid #dbdbdb;
}
.agent-card .card-footer a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 100%;
  color: #008286;
  text-decoration: none;
}
.agent-card .card-footer a svg {
  margin-right: 10px;
}
.agent-card .card-footer a:first-of-type {
  border-right: 1px solid #dbdbdb;
}
.agent-card .card-footer a h4 {
  font-size: 14px;
  font-weight: 600;
}
.agent-card .card-footer a span {
  font-size: 12px;
}

.agent-menu {
  list-style: none;
}
.agent-menu li {
  width: 100%;
  padding: 14px 20px;
}
.agent-menu li:last-of-type {
  border-bottom: none;
}
.agent-menu li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #343434;
  width: 100%;
}
.agent-menu li a img,
.agent-menu li a svg {
  margin-right: 25px;
}

.bg-mint .card-footer {
  border-color: #a2cf9a !important;
}
.bg-mint .card-footer a {
  border-color: #a2cf9a !important;
}

.gallery-card {
  width: 100%;
  min-width: auto;
}
.gallery-card .gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  width: 100%;
  min-width: auto;
  min-height: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.gallery-card .gallery::-webkit-scrollbar {
  display: none;
}
.gallery-card .gallery .slide {
  height: 180px;
  width: 186px !important;
  object-fit: cover;
  border-radius: 10px;
  margin: 0;
}
.gallery-card .gallery .view-more {
  background: #008286;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-card .gallery .view-more p {
  width: 186px;
  color: #fff;
  text-align: center;
}

.slider {
  margin-bottom: 10px;
}
.slider:first-of-type {
  margin-top: 5px;
}
.slider .slider-header {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px 10px 0;
  background: #fff;
}
.slider .slider-header a {
  font-size: 12px;
}
.slider .slide-title {
  font-size: 18px;
}
.slider .slides {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-right: 20px;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: none;
}
.slider .slides::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}
.slider .slide {
  width: 120px;
  position: relative;
  text-decoration: none;
  color: #343434;
}
.slider .slide img {
  width: inherit;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}
.slider .slide .slide-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.slider .slide .slide-info .location {
  font-size: 11px;
}
.slider .slide .slide-info .price {
  font-size: 14px;
  font-weight: bold;
}

.slide__search-history .img-dark {
  filter: brightness(50%);
}
.slide__search-history .slide-info {
  position: relative;
  top: -100px;
  color: #fff;
}
.slide__search-history .slide-info img {
  height: 16px;
  width: 16px;
  margin-right: 4px;
}
.slide__search-history .slide-info .cities,
.slide__search-history .slide-info .departure,
.slide__search-history .slide-info .return {
  position: absolute;
}
.slide__search-history .slide-info .departure,
.slide__search-history .slide-info .return {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-size: 11px;
  left: 12px;
}
.slide__search-history .slide-info .cities {
  top: 10px;
  left: 10px;
  font-size: 14px;
}
.slide__search-history .slide-info .departure {
  top: 53px;
}
.slide__search-history .slide-info .return {
  top: 70px;
}

.tips-slider {
  color: #343434;
}
.tips-slider .slide-info {
  height: 100px;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8px;
}
.tips-slider .slide-info h4 {
  font-size: 14px;
}
.tips-slider .slide-info p,
.tips-slider .slide-info a {
  font-size: 12px;
}
.tips-slider .slide-info p {
  padding-top: 5px;
}
.tips-slider .slide {
  width: 240px !important;
}
.tips-slider img {
  height: 130px !important;
}

.slider-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  text-align: center;
  color: #868686;
  font-size: 12px;
}

.overlay_ {
  display: none !important;
  height: 100% !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 4 !important;
}

.overlay-scrollable_ {
  max-height: 74dvh !important;
  overflow-y: scroll !important;
}
.overlay-scrollable_::-webkit-scrollbar {
  display: none !important;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}
.overlay-scrollable_ .os-st {
  background: #f1f1f2 !important;
  padding: 10px 0 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 3 !important;
}

.overlay_.open {
  display: flex !important;
}
.overlay_.open .overlay-container_ {
  animation: slideUp 0.3s ease-in-out !important;
}

.overlay-bg {
  position: absolute !important;
  top: 0 !important;
  background: rgba(0, 0, 0, 0.7) !important;
  min-height: 20px !important;
  height: 100% !important;
  width: 100% !important;
}

.overlay-container_ {
  position: relative !important;
  align-self: flex-end !important;
  width: 100% !important;
  max-height: 93dvh !important;
}
.overlay-container_ form {
  display: none;
}
.overlay-container_ form strong {
  display: inline;
  font-size: inherit;
  margin: none;
}
.overlay-container_ [data-overlay=shipDetails] p,
.overlay-container_ [data-overlay=overview] p {
  line-height: 1.3 !important;
  padding: 0 !important;
}
.overlay-container_ [data-overlay=shipDetails] .detail-type,
.overlay-container_ [data-overlay=overview] .detail-type {
  width: 110px !important;
}
.overlay-container_ [data-overlay=media] {
  margin-bottom: 0 !important;
}
.overlay-container_ header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: #fff !important;
  height: 50px !important;
  border-radius: 5px 5px 0px 0px !important;
  border-bottom: 1px solid #dbdbdb !important;
  padding: 0 10px !important;
}
.overlay-container_ header .overlay-heading {
  line-height: 1 !important;
}
.overlay-container_ header .overlay-subtitle {
  font-size: 14px !important;
}
.overlay-container_ header .overlay-close {
  font-size: 14px !important;
  padding: 10px !important;
  right: 10px !important;
  cursor: pointer !important;
}
.overlay-container_ .overlay-content_ {
  position: relative !important;
  background: #f1f1f2 !important;
  font-size: 14px !important;
}
.overlay-container_ .overlay-content_ p {
  padding-bottom: 10px !important;
}
.overlay-container_ .overlay-content_ .fg-label {
  font-size: 12px !important;
  font-weight: bold !important;
  padding: 10px 0 8px !important;
  display: block !important;
}
.overlay-container_ .overlay-content_ .form-group select:not(.icon) {
  padding: 0 12px !important;
}
.overlay-container_ .overlay-content_ .form-group .icon select {
  padding: 10px 0 0 10px !important;
}
.overlay-container_ input[type=text],
.overlay-container_ input[type=email],
.overlay-container_ input[type=tel] {
  max-height: 40px !important;
  height: 100% !important;
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid #cecece !important;
  border-radius: 5px !important;
}
.overlay-container_ input[type=checkbox] {
  padding: 15px !important;
  margin-right: 10px !important;
}
.overlay-container_ li {
  list-style: none !important;
}

.overlay-container_ .open {
  display: none !important;
  transition: 0.5s !important;
}

.overlay-controls_ {
  height: 70px !important;
  width: 100% !important;
  padding: 10px 10px 0 10px !important;
  background: #fff !important;
  border-top: 1px solid #dbdbdb !important;
  position: sticky !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  gap: 10px !important;
}
.overlay-controls_ {
  height: 70px !important;
  width: 100% !important;
  padding: 10px 10px 0 10px !important;
  background: #fff !important;
  border-top: 1px solid #dbdbdb !important;
  position: sticky !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: flex !important;
  gap: 10px !important;
}

.overlay-controls__left {
  display: flex !important;
}
.overlay-controls__left .price {
  font-size: 24px !important;
  font-weight: bold !important;
}
.overlay-controls__left .price-ti {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  margin-left: 5px !important;
  line-height: 0.9 !important;
  font-size: 12px !important;
}

.list-cities {
  padding: 0 !important;
  padding-left: 5px !important;
}
.list-cities .checkbox {
  font-weight: normal !important;
}

.list-children li {
  padding: 5px;
  padding-left: 10px;
}
.list-children li:last-of-type {
  padding-bottom: 10px;
}

.airline-list .checkbox {
  font-weight: normal !important;
}
.airline-list .checkbox:first-of-type {
  font-weight: bold;
}

.media-container .media-content {
  display: none;
}
.media-container .media-content:is(.active) {
  display: block;
}
.media-container .media-content .media-large {
  width: 100%;
  padding: 10px 0;
}
.media-container .media-content .media-large h4 {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
}
.media-container .media-content .media-large video {
  width: 100%;
}
.media-container .media-content .swipe {
  overflow: hidden;
  visibility: hidden;
  position: relative;
  height: 0px;
  padding-bottom: 66%;
}
.media-container .media-content .swipe .swipe-wrap {
  overflow: hidden;
  position: absolute;
  height: 100%;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}
.media-container .media-content .swipe .swipe-wrap img {
  display: block;
  width: 100%;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  transition: opacity 100ms;
}
.media-container .media-content .swipe .swipe-controls {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 33%;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  -moz-background-size: auto 50%;
  background-size: auto 50%;
  opacity: 0.5;
  -webkit-transition: opacity 150ms;
  -moz-transition: opacity 150ms;
  transition: opacity 150ms;
  cursor: pointer;
}
.media-container .media-content .swipe .swipe-controls:hover {
  opacity: 1;
}
.media-container .media-content .previous {
  background-image: url(../images/icons/arrow-left.svg);
  filter: invert(98%) sepia(7%) saturate(229%) hue-rotate(162deg) brightness(120%) contrast(100%);
}
.media-container .media-content .next {
  background-image: url(../images/icons/arrow-right.svg);
  left: auto !important;
  right: 0 !important;
  filter: invert(98%) sepia(7%) saturate(229%) hue-rotate(162deg) brightness(120%) contrast(100%);
}
.media-container .media-content .reviews-heading {
  padding: 15px 0 10px;
}
.media-container .media-content .reviews-heading__rating {
  font-size: 12px;
  margin: 5px 0 10px;
}

.ui-datepicker {
  width: 100%;
  padding: 5px 20px 20px 20px;
  border-radius: 5px;
}
.ui-datepicker thead span {
  color: #868686;
}
.ui-datepicker td.highlight > a {
  background: #e50104 !important;
  color: #fff !important;
}
.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
}
.ui-datepicker .ui-datepicker-calendar tbody tr {
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
.ui-datepicker .ui-datepicker-title {
  text-align: left !important;
  margin: 0 !important;
  min-height: 42px;
  display: flex;
  align-items: center;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  position: relative;
  width: 130px;
  border: none;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  position: relative;
  width: 80px;
  border: none;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  height: auto;
  top: 10px;
}
.ui-datepicker .ui-datepicker-prev {
  left: auto;
  right: 40px;
}
.ui-datepicker .ui-state-disabled span {
  padding: 0;
  margin: auto;
  border: 1px solid transparent;
  background: transparent !important;
  max-width: 32px !important;
  line-height: 32px;
  text-align: center;
}
.ui-datepicker .ui-datepicker-today a:not(.ui-state-highlight),
.ui-datepicker .ui-datepicker-today a:not(.ui-state-active) {
  color: #454545 !important;
  background-color: #fff !important;
  text-align: center !important;
  border-radius: 100%;
}
.ui-datepicker td {
  cursor: pointer;
}
.ui-datepicker td:hover a:not(.ui-state-active) {
  background: #f1f1f2 !important;
  color: #343434 !important;
  border-radius: 100%;
}
.ui-datepicker td a {
  padding: 0;
  margin: auto;
  border: 1px solid transparent;
  color: #666666;
  background: transparent !important;
  max-width: 32px !important;
  line-height: 32px;
  text-align: center;
}

.ui-widget-header {
  border: none;
}

.ui-datepicker-next,
.ui-datepicker-prev {
  background-color: #fff;
  cursor: pointer;
}
.ui-datepicker-next .ui-icon,
.ui-datepicker-prev .ui-icon {
  height: 32px;
  width: 32px;
  background: url("/tour-detail/assets/images/icons/arrow-down.svg");
  background-position: center;
  background-size: 24px 24px;
  background-repeat: no-repeat;
}
.ui-datepicker-next .ui-state-hover,
.ui-datepicker-prev .ui-state-hover {
  background-color: #fff;
  border: none !important;
}
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover {
  background-color: #fff;
  border: none !important;
}
.ui-datepicker-next span,
.ui-datepicker-prev span {
  background: url("/tour-detail/assets/icons/arrow-down.svg");
  background-repeat: no-repeat;
}

.ui-datepicker-next .ui-icon {
  transform: rotate(-90deg);
}

.ui-datepicker-prev .ui-icon {
  transform: rotate(90deg);
}

.ui-widget.ui-widget-content {
  border-color: #dbdbdb;
}

.ui-datepicker-header {
  background-color: #fff;
}

.ui-datepicker-calendar .ui-state-active,
.ui-datepicker-calendar a.ui-button:active,
.ui-datepicker-calendar .ui-button:active,
.ui-datepicker-calendar .ui-button.ui-state-active:hover {
  background: #008286 !important;
  border-color: #008286 !important;
  color: #fff !important;
  border-radius: 100%;
  align-items: center;
  vertical-align: middle;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
  border: none;
}

.datepicker-container .ui-datepicker-calendar .ui-state-hover,
.datepicker-container .ui-datepicker-calendar .in-between-highlight span,
.datepicker-container .ui-datepicker-calendar .in-between-highlight a {
  border: none;
  background-color: #ececec;
}

td.ui-datepicker-days-cell-over a {
  background: #008286 !important;
  color: #fff !important;
  border-radius: 100%;
}

.add-highlight {
  background-color: #ececec !important;
}

.add-highlight-depart {
  position: relative;
}
.add-highlight-depart:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 50%;
  background-color: #ececec !important;
}
.add-highlight-depart > a {
  position: relative;
  z-index: 1;
  background: #008286 !important;
  color: #fff !important;
  border-radius: 100%;
}

.add-highlight-return {
  position: relative;
}
.add-highlight-return:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  left: 0;
  width: 50%;
  background-color: #ececec !important;
}
.add-highlight-return > a {
  position: relative;
  z-index: 1;
}

.star-rating img:not(:last-of-type) {
  margin-right: -4px;
}

.tooltip-container {
  background: #f5ffff;
  border: 1px solid #008286;
  border-radius: 5px;
  margin: 10px 0;
  padding: 10px;
  position: relative;
  font-size: 14px;
}
.tooltip-container .tooltip-title {
  font-weight: bold;
  color: #008286;
}
.tooltip-container .tooltip-link {
  text-decoration: underline;
  cursor: pointer;
}
.tooltip-container .close {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 5px;
}
.tooltip-container .close img {
  height: 18px;
  width: 18px;
}
.tooltip-container a {
  font-weight: bold;
  text-decoration: underline;
  color: #008286;
}
.tooltip-container p {
  padding-top: 8px;
}
.tooltip-container__arrow:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 23px;
  border-right: solid 10px transparent;
  border-left: solid 10px transparent;
  border-bottom: solid 14px #008286;
}
.tooltip-container__arrow:after {
  content: "";
  position: absolute;
  top: -13px;
  left: 23px;
  border-right: solid 10px transparent;
  border-left: solid 10px transparent;
  border-bottom: solid 15px #f5ffff;
}
.tooltip-container .tooltip-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.tooltip-container .tooltip-controls .tooltip-btn {
  cursor: pointer;
  border: none;
  background-color: transparent;
  text-decoration: underline;
  color: #0672ff;
}

.tooltip {
  display: none;
}

.tooltip-body {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.tooltip-highlight {
  border: 1px solid #008286;
  color: #008286;
  background: #f5ffff;
  border-bottom: 1px solid #008286 !important;
}
.tooltip-highlight:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tooltip-highlight:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tooltip-highlight select,
.tooltip-highlight input {
  background-color: #f5ffff;
  color: #008286;
  font-weight: bold;
}
.tooltip-highlight img {
  filter: invert(37%) sepia(70%) saturate(671%) hue-rotate(135deg) brightness(91%) contrast(103%);
}

.close {
  cursor: pointer;
  z-index: 2;
}

.tip-warning {
  background: #fff3f3;
  color: #bc2525;
  border: 1px solid #bc2525;
}

.tip-brand {
  background: #f5ffff;
  color: #008286;
  border: 1px solid #008286;
}

.tip-blue {
  background: #f3f8ff;
  color: #0672ff;
  border: 1px solid #0672ff;
}

.tip-warning,
.tip-brand,
.tip-blue {
  border-radius: 5px;
  font-size: 14px;
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  grid-template-rows: 1fr;
  align-items: center;
  padding: 10px;
}
.tip-warning :nth-child(2),
.tip-brand :nth-child(2),
.tip-blue :nth-child(2) {
  padding: 0 10px;
}

.tip-no-icon {
  grid-template-columns: 1fr 24px;
}

.detailed-reviews.maxed {
  padding-bottom: 20px;
}

.detailed-reviews.maxed:after {
  content: none;
  display: none;
}

.detailed-review {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  -moz-border-radius: 5px;
  background-color: #ffffff;
  color: #343434;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}

.detailed-review + .detailed-review {
  margin-top: 10px;
}

.reviewer-information {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
}
.reviewer-information div {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 5px;
}

.detailed-reviews .reviewer-headshot {
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 15px;
  width: 40px;
  height: 40px;
  display: none;
}

.detailed-reviews .rating {
  color: #fdb00a;
  font-size: 14px;
  margin: 0px 5px 0px 0px;
}

.detailed-reviews .reviewer-name {
  color: #008286;
}

.detailed-reviews .review-date {
  margin-right: 10px;
}

.detailed-reviews .verified-purchaser {
  font-size: 12px;
  background: url(../images/icons/verified-purchaser.png) no-repeat left center;
  padding-left: 20px;
  white-space: pre;
}


.overlay-title{
  display: block;
  margin-block-start: 1.33em;
  margin-block-end: 1.33em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-size:16px;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: bold;
}

.detailed-reviews .review-title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 5px;
}

.detailed-reviews .review-text {
  margin-bottom: auto;
  max-height: 99999px;
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 150ms;
  -moz-transition: max-height 150ms;
  transition: max-height 150ms;
}

.detailed-reviews .review-text.truncated {
  max-height: 100px;
}

.detailed-reviews .review-text.truncated:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 30px;
  background: -webkit-linear-gradient(bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  background: -moz-linear-gradient(bottom, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  background: linear-gradient(to top, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

.detailed-reviews .review-text-read-more {
  color: #008286;
  text-decoration: underline;
  cursor: pointer;
}

.detailed-reviews .review-ratings {
  width: 100%;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid #e8ebee;
  text-align: center;
}

.detailed-reviews .review-ratings ul {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  word-spacing: 25px;
}

.detailed-reviews .review-ratings li {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  word-spacing: normal;
  width: 33.333%;
  padding-bottom: -moz-calc(32.857% + 20px);
  padding-bottom: calc(32.857% + 20px);
  text-align: center;
}

.detailed-reviews .review-ratings li strong {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
}

.detailed-reviews .review-ratings li .rating-circle {
  position: absolute;
  bottom: 0px;
  left: 12px;
  width: -moz-calc(100% - 25px);
  width: calc(100% - 25px);
  height: -moz-calc(100% - 25px);
  height: calc(100% - 25px);
}

.detailed-reviews .review-ratings li .rating-circle svg {
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
}

.detailed-reviews .review-ratings li .rating-circle circle {
  fill: none;
  stroke: #f1f1f1;
  stroke-width: 8px;
  position: absolute;
}

.detailed-reviews .review-ratings li .rating-circle .rating {
  -webkit-transform-origin: 50px 50px;
  -moz-transform-origin: 50px 50px;
  transform-origin: 50px 50px;
  -webkit-transform: scale(-1, 1) rotate(-90deg);
  -moz-transform: scale(-1, 1) rotate(-90deg);
  transform: scale(-1, 1) rotate(-90deg);
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  -webkit-transition: stroke-dashoffset 500ms;
  -moz-transition: stroke-dashoffset 500ms;
  transition: stroke-dashoffset 500ms;
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-5 {
  stroke: #4ebd00;
  stroke-dashoffset: 0;
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-4 {
  stroke: #bbd321;
  stroke-dashoffset: 56.6;
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-3 {
  stroke: #dcb711;
  stroke-dashoffset: 113.2;
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-2 {
  stroke: #d08801;
  stroke-dashoffset: 169.8;
}

.detailed-reviews .review-ratings li .rating-circle .rating.rating-1 {
  stroke: #d03f01;
  stroke-dashoffset: 226.4;
}

.detailed-reviews .review-ratings .rating-text {
  position: absolute;
  top: -moz-calc(50% + 3px);
  top: calc(50% + 3px);
  right: 0px;
  left: 0px;
  font-family: Arial;
  font-size: 24px;
  font-weight: bold;
}

.detailed-reviews .review-ratings li.rating-5 .rating-text {
  color: #4ebd00;
}

.detailed-reviews .review-ratings li.rating-4 .rating-text {
  color: #bbd321;
}

.detailed-reviews .review-ratings li.rating-3 .rating-text {
  color: #dcb711;
}

.detailed-reviews .review-ratings li.rating-2 .rating-text {
  color: #d08801;
}

.detailed-reviews .review-ratings li.rating-1 .rating-text {
  color: #d03f01;
}

.detailed-reviews .review-ratings li.rating-none .rating-text,
.detailed-reviews .review-ratings li.rating-none strong {
  color: #ccc;
}

.media-overlay-container {
  -webkit-overflow-scrolling: touch !important;
}

.smallImageContainer {
  background-color: black;
  height: 100%;
}

.smallOldImage {
  width: 256px !important;
  height: 151px !important;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.list-group {
  background: #fff;
  border: #dbdbdb 1px solid;
  border-radius: 5px;
  margin-bottom: 5px;
}
.list-group__header {
  margin: 12px 0 5px 2px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.list-group__header .options {
  display: flex;
  gap: 30px;
  padding-right: 5px;
}
.list-group__border li {
  border-bottom: #dbdbdb 1px solid;
}
.list-group__brand {
  border: 1px solid #005658;
}
.list-group__brand li {
  border-bottom: #008286 1px solid;
}
.list-group__brand li:first-of-type {
  background: #f5ffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}



.list-group .fw-r.flex.gap-10 {
  display: flex;
  align-items: center;
  gap: 10px; /* space between radio and text */
  cursor: pointer;
}

/* Styles for the list items when selected */
.list-group li.selected {
  background-color: #e6f7ff; /* Soft blue background color */
  border: 2px solid #99c2ff; /* Blue-ish border */
  padding: 5px; /* Padding for better appearance */
}





.list-group li {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px;
  padding-right: 0;
  font-size: 14px;
}
.list-group li:has(.checkbox) {
  justify-content: space-between;
  width: 100%;
}
.list-group li .checkbox {
  padding: 0 0 0 30px;
  margin: 0;
  font-weight: bold;
  width: 100%;
}
.list-group li .options {
  padding-right: 5px;
  display: flex;
  gap: 0px;
  width: 115px;
  justify-content: space-between;
}
.list-group li .options .only-btn {
  position: relative;
  right: 0;
}
.list-group li:last-of-type {
  border-bottom: none;
}
.list-group li .only-btn {
  position: absolute;
  right: 10px;
  font-size: 12px;
  font-weight: normal;
  color: #0672ff;
  text-transform: capitalize;
}
.list-group ul {
  width: 100%;
}
.list-group ul li {
  border: none;
}

.list-group li a {
  position: relative;
  right: unset;
  font-size: unset;
  font-weight: unset;
  text-transform: unset;
}
.media-list {
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(auto, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (max-width: 375px) {
  .media-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.media-list li {
  cursor: pointer;
  opacity: 0.65;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  transition: opacity 100ms;
}
.media-list li .selected, .media-list li:hover {
  opacity: 1;
}
.media-list li img {
  height: 100%;
  width: 100%;
}

.agent-select-container {
  background: #f5ffff;
  display: flex;
  flex-direction: column;
  border: 1px solid #005658;
  border-radius: 5px;
}
.agent-select-container .content,
.agent-select-container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: auto;
  padding: 10px;
  font-size: 14px;
  border-top: 1px solid #008286;
  border-bottom: 1px solid #008286;
}
.agent-select-container .content:first-of-type,
.agent-select-container .header:first-of-type {
  border-top: none;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.agent-select-container select {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 5px;
  box-shadow: none;
  padding-left: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("/tour-detail/assets/images/icons/arrow-down.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 20px;
}
.agent-select-container .list {
  background: #fff;
  border-radius: 5px;
}
.agent-select-container .list .list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 10px;
  padding-right: 15px;
  font-size: 14px;
  border-bottom: #008286 1px solid;
}
.agent-select-container .list .list-item:last-of-type {
  border-bottom: none;
}
@media (min-width: 768px) {
  .agent-select-container {
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
  }
  .agent-select-container .content,
  .agent-select-container .header {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: flex-end;
    border-bottom: none;
    padding: 0;
  }
  .agent-select-container .content span,
  .agent-select-container .header span {
    margin-left: 10px;
  }
  .agent-select-container select {
    border: 1px solid #008286 !important;
    max-width: 400px;
  }
}

.list-styled {
  line-height: 1.5;
}
.list-styled li {
  list-style: initial;
  list-style-type: "- ";
  margin-left: 5px;
}
.list-styled b {
  margin: 0;
}

.list-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
}

dl {
  border-top: 1px solid #dbdbdb;
  column-count: 3;
  column-gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}

dt,
dd {
  border: 1px solid #dbdbdb;
  border-left: none;
  border-top: none;
  padding: 20px;
  width: 100%;
}
dt a,
dd a {
  color: #008286;
  text-decoration: none;
}

dt {
  font-weight: bold;
}

dd {
  padding-left: 40px;
}

.accordion-container {
  background: #fff;
}

.accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 10px 0 10px 10px;
  font-size: 14px;
  border: 1px solid #dbdbdb;
  border-top: none;
  cursor: pointer;
}
.accordion:first-of-type {
  border-top: 1px solid #dbdbdb;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.accordion .icon {
  margin-right: 10px;
}

.accordion.active {
  border: 1px solid #dbdbdb;
  border-bottom: none;
}
.accordion.active .icon {
  transform: rotate(90deg);
}

.panel {
  padding: 0 10px;
  background: #fff;
  display: none;
  overflow: hidden;
}
.panel .panel-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.panel .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 5px;
  border-bottom: none;
}
.panel .header h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.panel.active {
  border: 1px solid #dbdbdb;
  border-top: none;
}

.panel-brand.active,
.accordion-brand.active {
  background: #f5ffff;
  border-color: #008286;
}

.airport-selector {
  position: relative;
  height: 100%;
}
.airport-selector .form-item,
.airport-selector .form-group {
  position: relative;
}

.airports-list {
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
}

.mobile-autocomplete {
  top: 0 !important;
  bottom: 0;
  background-color: #f1f1f2 !important;
  border: none !important;
  max-height: 78dvh;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
.mobile-autocomplete > .ui-menu-item {
  border-top: 1px solid #dbdbdb;
}
.mobile-autocomplete > .ui-menu-item .ui-menu-item-wrapper {
  padding: 8px;
}

[data-overlay=fltDepartFrom],
[data-overlay=fltDestination] {
  height: 100%;
}

footer {
  padding: 0;
}

.footer-top,
.footer-bottom {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.footer-top a,
.footer-bottom a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 5px 0;
}

.footer-top {
  justify-content: center;
  align-items: center;
  background: #008286;
}
.footer-top .images {
  padding-top: 10px;
}
.footer-top .images img {
  padding: 10px 15px;
}
.footer-top .social img {
  padding: 5px;
}
.footer-top .logo {
  height: 35px;
  margin-bottom: 15px;
}

.footer-bottom {
  background: #005658;
  color: #fff;
}
.footer-bottom span {
  color: #129ea2;
  font-size: 12px;
  padding-bottom: 10px;
}
.footer-bottom a {
  text-align: left;
}

input,
select {
  padding: inherit;
  box-shadow: none;
}

form b,
form strong {
  font-size: 12px;
  display: block;
  margin: 10px 0 8px;
}

select {
  width: 100%;
  height: 40px;
  border: 1px solid #cecece;
  border-radius: 5px;
  padding-left: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("/tour-detail/assets/images/icons/arrow-down.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 20px;
}

.input {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  height: 40px;
}

.form-bg-mbl {
  border: none;
}

.depart-date-only,
.return-date {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.form-group {
  padding-bottom: 5px;
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.form-group .form-item {
  width: 100%;
  position: relative;
}
.form-group .form-item .label {
  z-index: 2;
}
.form-group .form-item:not(.icon) select:not(.icon) {
  background-image: url("/tour-detail/assets/images/icons/arrow-down.svg");
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 20px;
  background-color: #fff;
}
.form-group .form-item .error-message {
  font-size: 12px;
  color: #dc1e1e;
  margin-top: 3px;
  font-weight: bold;
}
.form-group .label {
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  left: 11px;
  top: 6px;
}
.form-group select {
  width: 100%;
  height: 40px;
  border: 1px solid #cecece;
  border-radius: 5px;
  padding: 10px 0 0 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select:not(.icon) {
  background-image: none;
}
.form-group input[type=text],
.form-group input[type=date],
.form-group input[type=tel],
.form-group input[type=email] {
  width: 100%;
  height: 40px;
  border: 1px solid #cecece;
  border-radius: 5px;
  padding: 10px 0 0 10px;
  cursor: pointer;
}

.form-group__extended {
  flex-direction: column;
  gap: 0 !important;
}
.form-group__extended .form-item:first-of-type > * {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.form-group__extended .form-group__options {
  border: 1px solid #dbdbdb;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
}

.flight-types {
  display: flex;
  list-style: none;
  width: 100%;
}
.flight-types li {
  padding: 1px 0 11px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flight-types input[type=radio] {
  display: none;
  height: 15px;
  width: 15px;
}
.flight-types input[type=radio]:checked + label {
  font-weight: bold;
  color: #343434;
  text-decoration: none;
}
.flight-types input[type=radio] + label:after {
  display: none;
}
.flight-types label {
  padding: 5px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  color: #0672ff;
  text-decoration: underline;
}

.checkbox {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 0 5px 28px;
  margin: 5px 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 18px;
  width: 18px;
}
.checkbox img {
  margin-right: 14px;
}

.checkmark {
  position: absolute;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.checkbox input:checked ~ .checkmark {
  background-color: #0672ff;
  border-color: #0672ff;
}

.checkbox input:disabled ~ .checkmark {
  background-color: #dbdbdb;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 6px;
  top: 3px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

form[data-overlay=filters] {
  padding: 0 !important;
}
form[data-overlay=filters] .list-group {
  margin-bottom: 10px;
}
form[data-overlay=filters] .list-group:last-of-type {
  margin-bottom: 5px;
}
form[data-overlay=filters] .list-group li {
  padding: 0;
}
form[data-overlay=filters] .list-group li .options span {
  position: relative;
  text-transform: none;
}
form[data-overlay=filters] .list-group li .options a {
  text-transform: none;
  font-size: 14px;
  text-align: left;
}
form[data-overlay=filters] .list-group li > * {
  border: none;
}
form[data-overlay=filters] li:not(.tooltip-highlight) select {
  background-color: #fff;
}
form[data-overlay=filters] .checkbox {
  font-weight: normal;
  padding: 10px;
  padding-left: 30px;
  margin-left: 10px;
}
form[data-overlay=filters] .tooltip-container,
form[data-overlay=filters] .overlay-list {
  margin-top: 0;
}
form[data-overlay=filters] .icon {
  padding-left: 10px;
}

.select-link {
  width: auto;
  height: auto;
  border: none;
  color: #0672ff;
  font-size: 16px;
  text-decoration: underline;
  padding: 10px 10px 10px 5px;
  transform: translate(0, 9px);
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: none;
}
.select-link option {
  color: #343434;
}

.range-card__header {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.range-card__header .active {
  color: #343434;
  text-decoration: none;
}
.range-card__range {
  padding: 0 10px;
}
.range-card__range input[type=range] {
  width: 100%;
  padding: 0;
}
.range-card__range .times {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.range-card__range .times span {
  font-size: 12px;
}

.error * {
  border-color: #dc1e1e !important;
}

.flight-details {
  border-top: 1px solid #dbdbdb;
  padding-top: 10px;
  margin: 5px 0;
}
.flight-details:first-of-type {
  border-top: none;
  padding-top: 0;
  margin: 0 0 5px;
}
.flight-details:nth-of-type(2) {
  margin-top: 10px;
}

.clear-field {
  position: absolute;
  height: 18px;
  width: 18px;
  right: 40px;
  top: calc(50% - 8px);
  background: url(../images/icons/close-sm.svg) center no-repeat;
}

.package-page {
  padding: 20px 0 0 20px;
  display: none;
  visibility: hidden;
}
.package-page:is(.active) {
  display: block;
  visibility: visible;
}
.package-page .section-title {
  font-size: 24px;
  padding-right: 20px;
  margin-bottom: 5px;
}
.package-page i {
  display: block;
  width: 100%;
  font-size: 12px;
  padding-right: 20px;
}

.travel-tips {
  padding: 0 0 20px 20px;
}

.page {
  padding: 30px 0;
  background: #f1f1f2;
}
@media (max-width: 1024px) {
  .page {
    padding: 10px 0;
  }
}

.container {
  max-width: 1420px;
  padding: 0 10px;
  margin: 0 auto;
}

.sidebar-left {
  display: flex;
  gap: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .sidebar-left {
    flex-direction: column;
  }
}
.sidebar-left .sidebar {
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .sidebar-left .sidebar {
    max-width: 100%;
  }
}
.sidebar-left .main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-left .main .card {
  border-radius: 10px;
  padding: 0;
}
.sidebar-left .main .card .card-content {
  padding: 20px;
  display: block !important;
}
.sidebar-left .main .card .card-content p {
  font-size: 14px;
  line-height: 1.7;
}

.gallery2 {
  padding: 20px;
}
.gallery2 .gallery-wrap {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 186px;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  min-width: 300px;
  max-width: 970px;
  width: min-content;
}
.gallery2 .gallery-wrap .item img {
  height: 180px;
  width: 180px;
  object-fit: cover;
}

.main-menu {
  position: sticky;
  top: 0;
  z-index: 2;
}

.pkg-header {
  min-height: 70px;
  padding: 0 10px;
  border-bottom: 1px solid #dbdbdb;
}
.pkg-header__heading {
  padding: 10px;
  border-left: 1px solid #dbdbdb;
  margin-left: -10px;
}
.pkg-header .heading {
  font-size: 16px;
  font-weight: 600;
  color: #008286;
}
.pkg-header .sub-heading {
  color: #868686;
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.pkg-header .icons {
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-header .icons__type {
  display: flex;
  align-items: center;
}
.pkg-header .icons__type span {
  font-size: 11px;
  padding: 0px 4px;
}
.pkg-header .btn-back {
  margin-right: 10px;
}

.results-header {
  background: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 45px;
  z-index: 3;
  border-bottom: 1px solid #dbdbdb;
}
.results-header__found {
  margin-left: 10px;
  display: flex;
  align-items: flex-end;
}
.results-header__found div span {
  font-size: 12px;
  font-weight: bold;
}
.results-header__found div h2 {
  font-size: 16px;
  font-weight: 500;
}
.results-header__num {
  font-size: 40px;
  font-weight: bold;
  color: #bc2525;
}

.results {
  background: #f1f1f2;
}
.results [data-overlay-btn] > * {
  pointer-events: none;
}
.results__container {
  padding: 10px;
}
.results__filter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.results__filter .btn {
  max-width: 120px;
  height: 40px;
  font-weight: bold;
}
.results__filter .btn img {
  height: 20px;
  width: auto;
  padding-right: 10px;
}
.results__filter select {
  width: 100%;
  height: 40px;
  border: 1px solid #cecece;
  border-radius: 5px;
}
.results__results-container {
  background: #fff;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  margin: 10px 0;
}
.results__result {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  padding: 10px;
  color: inherit;
  text-decoration: none;
  gap: 10px;
}
.results__result:last-of-type {
  border-bottom: none;
}
.results__result .results-left {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.results__result .results-left a:is(.date) {
  font-size: 14px;
}
.results__result .result-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
}
.results__result .result-right:has(.price) {
  min-width: 80px;
}
@media (max-width: 365px) {
  .results__result .result-right:has(.price) {
    min-width: auto;
  }
}
.results__result .result-right .star-rating {
  min-width: 70px;
}
.results__result .result-right .price {
  text-align: right;
}
.results__result .result-loc {
  font-size: 12px;
  color: #868686;
  margin-bottom: 2px;
  display: block;
}
.results__result .duration {
  color: #868686;
  font-size: 12px;
}
.results__result h4 {
  font-size: 14px;
  line-height: 1.3;
  font-weight: bold;
}
.results__result .result-icons {
  display: flex;
  gap: 5px;
}
.results__result li {
  list-style: none;
  font-size: 12px;
}
.results__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.results__pagination div {
  display: flex;
  align-items: center;
  gap: 5px;
}
.results__pagination div .btn img {
  height: 20px;
  width: 20px;
}
.results__pagination div .btn:first-of-type img {
  transform: rotate(90deg);
}
.results__pagination div .btn:last-of-type img {
  transform: rotate(-90deg);
}
.results__pagination span {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.details-hero img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
}

.details-header {
  height: auto;
  padding: 10px;
}
.details-header span {
  font-size: 14px;
}
.details-header .heading {
  font-size: 18px;
}

.details-card ul li span,
.details-card div span {
  font-size: 14px;
}
.details-card .icon-plane {
  transform: rotate(45deg);
  height: 16px;
  padding: 0 10px;
}
.details-card .airline-icon {
  height: 14px;
  margin-right: 5px;
}

.details-results .btn {
  font-size: 14px !important;
}
.details-results .btn__white {
  height: 40px;
}
.details-results .form-group {
  margin-bottom: 0;
}
.details-results .list-group li {
  padding-right: 15px;
}
.details-results .icon-container {
  margin-right: -5px;
  fill: #343434;
}

.pkg-details-links {
  padding: 0 20px 20px 20px;
}
.pkg-details-links .list-group li {
  padding-right: 10px;
}

.booking-bonus-img {
  height: 60px;
  width: 60px;
  border-radius: 10px;
  border: 1px solid #008286;
}

.agent-select-container {
  background: #f5ffff;
  display: flex;
  flex-direction: column;
  border: 1px solid #005658;
  border-radius: 5px;
}
.agent-select-container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid #008286;
}
@media (min-width: 768px) {
  .agent-select-container {
    flex-direction: row;
    align-items: center;
    padding: 10px 20px;
  }
  .agent-select-container .content {
    flex-direction: row-reverse;
    justify-content: flex-end;
    border-bottom: none;
    padding: 0;
  }
  .agent-select-container .content span {
    margin-left: 10px;
  }
  .agent-select-container select {
    border: 1px solid #008286 !important;
    max-width: 400px;
  }
}

.secure-checkout {
  background: #f3f3f3;
  padding: 12px 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #dbdbdb;
}
.secure-checkout img {
  margin-left: 10px;
}

.checkout-header {
  background: #f5ffff;
  font-size: 14px;
  padding: 10px;
}
.checkout-header .heading {
  font-size: 18px;
}
.checkout-header .grid {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 10px;
}
.checkout-header .grid div {
  display: flex;
  justify-content: space-between;
}

.checkout-img {
  max-height: 200px;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.checkout {
  padding: 10px 10px 20px;
}
.checkout h4 {
  font-size: 14px;
  margin: 5px 0 2px;
}
.checkout .terms p {
  line-height: 1.2;
  padding-bottom: 5px;
}
.checkout .terms p:last-of-type {
  padding-bottom: 0;
}
.checkout .list-group li {
  padding-right: 15px;
}
.checkout form b {
  display: block;
  margin-top: 0;
}
.checkout form .form-group {
  padding-bottom: 0;
}
.checkout form .form-group:last-of-type {
  padding-bottom: 5px;
}
.checkout form .form-group select {
  padding: 10px;
}
.checkout form .form-group .form-item {
  margin-bottom: 8px;
}
.checkout form input[type=text],
.checkout form input[type=date],
.checkout form input[type=tel],
.checkout form input[type=email] {
  width: 100%;
  padding: 10px;
  border: #cecece 1px solid;
  border-radius: 5px;
  cursor: unset;
}
.checkout form input[type=date] {
  font-family: arial;
}
.checkout form input[type=date]::-webkit-inner-spin-button,
.checkout form input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.featured-options input[type=radio] {
  margin-right: 12px;
  display: block;
}
.featured-options b {
  margin: 0;
  display: block;
}
.featured-options li img {
  height: 24px;
}
.featured-options li a {
  position: unset;
  font-size: 14px;
}
.featured-options small {
  color: #868686;
}

.passengers-list li {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  padding: 10px !important;
}

.checkout__checkboxes label + a {
  margin-left: 28px;
  font-size: 14px;
}
.checkout__checkboxes label:has(+ a) {
  margin-bottom: -5px !important;
}

.booking-number-container {
  padding: 15px 10px;
  text-align: center;
  border-bottom: 1px solid #dbdbdb;
}
.booking-number-container strong {
  display: block;
  font-size: 18px;
  line-height: 1.5;
}
.booking-number-container .booking-number {
  padding: 10px;
  font-size: 24px;
  color: #008286;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid #008286;
  border-radius: 5px;
  margin: 5px 0 10px;
  background: url(../images/stripes-bg.jpg);
}
.booking-number-container p {
  word-wrap: break-word;
  line-height: 1.3;
}

.airports {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 10px 15px 8px 10px;
  border-right: 1px solid #dbdbdb;
}
.airports h2 {
  font-size: 20px;
}
.airports img {
  transform: rotate(45deg);
  height: 14px;
  margin: 0 10px;
}

.flt-header {
  height: 50px;
  border-bottom: 1px solid #dbdbdb;
  display: grid;
  grid-template-columns: 135px 1fr 40px;
  grid-template-rows: 1fr;
  position: relative;
  top: 0;
  z-index: 1;
}
.flt-header .dates {
  display: flex;
  align-items: center;
  padding-left: 10px;
  height: 100%;
  border-right: 1px solid #dbdbdb;
}
.flt-header .dates .dates__date {
  display: flex;
  flex-direction: column;
}
.flt-header .dates .dates__date span {
  font-size: 11px;
}
.flt-header .dates .icon-plane {
  transform: rotate(45deg);
  height: 14px;
  margin: 0 10px;
}
.flt-header .edit {
  display: flex;
  align-items: center;
  justify-content: center;
}

.best-val {
  border-color: #00ce29;
}
.best-val__txt {
  color: #00ce29;
  font-size: 11px;
}
.best-val .flt-price {
  border-color: #00ce29 !important;
}

.low-price {
  border-color: #0672ff;
}
.low-price__txt {
  color: #0672ff;
  font-size: 11px;
}
.low-price .flt-price {
  border-color: #0672ff !important;
}

.low-stock {
  color: #dc1e1e;
  font-size: 11px;
}

.flt-results {
  margin-bottom: 5px;
}
.flt-results:last-of-type {
  margin-bottom: 10px !important;
}
.flt-results__result {
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-template-rows: 1fr;
}
.flt-results__result .flt-details__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 10px 0 10px 10px;
}
.flt-results__result .flt-details {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.flt-results__result .flt-details span {
  font-size: 11px;
}
.flt-results__result .flt-details span b {
  font-size: 14px;
}
.flt-results__result .flt-details .spacer {
  display: inline-block;
  height: 1px;
  width: 20px;
  background: #343434;
  margin: 0 8px;
}
.flt-results__result .flt-details .time {
  font-size: 11px;
}
.flt-results__result .flt-price {
  display: grid;
  align-items: center;
  text-align: center;
  position: relative;
  border-left: 1px solid #dbdbdb;
  padding: 10px 0;
}
.flt-results__result .flt-price h3 {
  margin: 5px 0;
}

.airline-info {
  display: flex;
  align-items: center;
  font-size: 11px;
}
.airline-info img {
  margin-right: 10px;
  height: 18px;
  width: 18px;
  border: 1px solid #008286;
}
.airline-info i {
  margin-left: 5px;
}

.flt-card header {
  background: #008286;
  color: #fff;
  height: 55px;
  padding: 0 10px;
}
.flt-card header .airports {
  border: none;
}
.flt-card header .airports h2 {
  font-size: 24px;
}
.flt-card header .right {
  text-align: right;
}
.flt-card header .right span:first-of-type {
  font-weight: bold;
  display: block;
}
.flt-card .card-content {
  padding: 10px;
}
.flt-card .card-content .airline {
  display: flex;
}
.flt-card .card-content .airline img {
  height: 18px;
  width: 18px;
  border: 1px solid #008286;
  margin-right: 10px;
}
.flt-card .card-content .airline i {
  font-size: 12px;
  color: #868686;
  line-height: 1.4;
  padding-left: 5px;
}
.flt-card .card-content .flt-info {
  display: flex;
  padding: 10px 0;
}
.flt-card .card-content .flt-info div {
  width: 100%;
}
.flt-card .card-content .flt-info div > * {
  line-height: 1.3;
}
.flt-card .card-content .flt-info div h4 {
  font-weight: bold;
  font-size: 14px;
}
.flt-card .card-content .flt-info div p {
  padding: 0;
}
.flt-card .card-content .flt-info div p:last-of-type {
  font-size: 18px;
}

[data-overlay=flt-details] .btn__white {
  justify-content: space-between;
  font-size: 14px;
  text-decoration: underline;
  color: #0672ff;
  padding: 10px;
  margin-top: 10px;
}

.crs-header {
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  position: relative;
  top: 0;
  z-index: 1;
}
.crs-header h4 {
  font-weight: normal;
}
.crs-header small {
  font-size: 11px;
}

.crs-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
  color: #343434;
  text-decoration: none;
}
.crs-results .price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
}
.crs-results .price span {
  font-size: 11px;
}
.crs-results .price h3 {
  font-size: 20px;
}

.crs-overlay__header {
  background: #fff;
  border-bottom: 1px solid #dbdbdb;
}
.crs-overlay__header .header-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}
.crs-overlay__header-heading {
  display: flex;
  padding: 10px;
}
.crs-overlay__header-heading img {
  height: 30px;
  border: 1px solid #008286;
  margin-right: 10px;
}
.crs-overlay__header-heading div * {
  font-size: 14px;
  margin: 0;
  padding: 0 !important;
}

.crs-departure-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.crs-departure-table tbody,
.crs-departure-table tbody tr {
  background: #fff;
}
.crs-departure-table thead tr,
.crs-departure-table th {
  border: none;
  font-size: 12px;
  padding: 5px 0;
  text-align: center;
}
.crs-departure-table th a {
  font-weight: normal;
}
.crs-departure-table th a:is(.active) {
  color: #343434;
  text-decoration: none;
}
.crs-departure-table th a:first-of-type {
  padding-left: 5px;
}
.crs-departure-table td {
  border-width: 1px;
  border-color: #dbdbdb;
  border-style: solid;
  padding: 10px;
}
.crs-departure-table tr td {
  text-align: center;
  border-collapse: collapse;
}
.crs-departure-table tr th:first-child,
.crs-departure-table tr td:first-child {
  text-align: left !important;
}
.crs-departure-table tr td:first-child {
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */


/* tour detail pages also require /style/product-details/V1/main.css */

.tour-details-heading {
  color: #569E30;
  background-color: #CDEABE;
  border-bottom-color: #87C466;
}

@media(max-width: 1200px) {
  .tour-details-heading {
      background: #FFF;
  }
}

.tour-details .overview h2 {
  color: #569E30;
}

.tour-details .overview .read-more {
  color: #569E30;
}

.tour-details .product-summary,
.tour-details .product-summary td,
.tour-details .product-summary th {
  border-color: #87C466;
}

.tour-details .product-summary th {
  background-color: #CDEABE;
  background-color: #E1F3D8;
}

@media(max-width: 1200px) {
  .tour-details .product-summary th,
  .tour-details .product-summary td {
      display: inline-block;
      padding: 10px;
  }
  .tour-details .product-summary th {
      width: 115px;
      white-space: nowrap;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      -webkit-box-flex: 0;
      -moz-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      color: #666666;
  }
}

.tour-details .pricing tbody .price {
  color: #D0021B;
  font-family: Helvetica;
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  text-decoration: line-through;
}

.tour-details .pricing .controls {
  text-align: right;
  white-space: nowrap;
}

.tour-details .pricing .button,
.tour-details .find-air .prices .get-call-in-code {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  padding: 0px 25px;
  font-family: Arial;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  white-space: nowrap;
  text-align: center;
  background: none;
  border: 1px solid #4C92C7;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #FFFFFF;
  -moz-box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
  box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
  color: #4C92C7;
}

.tour-details .pricing .get-lower-quote,
.tour-details .find-air .prices .get-call-in-code {
  background: -webkit-linear-gradient(top, #BC2525 0%, #A41515 100%);
  background: -moz-linear-gradient(top, #BC2525 0%, #A41515 100%);
  background: linear-gradient(180deg, #BC2525 0%, #A41515 100%);
  -moz-box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
  box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.16);
  border: 1px solid #961B20;
  color: #FFFFFF;
  font-size: 16px;
}

.tour-details .pricing .bonus-available .bonus-details strong {
  color: #569E30
}

.tour-details .pricing .view-more-prices {
  color: #569E30;
  text-decoration: underline;
}

.tour-details .pricing-overlay .pricing .date .price {
  color: #D0021B;
  font-size: 24px;
  font-weight: bold;
  line-height: 22px;
  text-align: right;
}

.tour-details .find-air {
  position: relative;
  border: 1px solid #B5B5B5;
  padding: 20px;
  margin-bottom: 20px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #FFF;
}

.tour-details .find-air .summary {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.tour-details .find-air .summary li {
  display: inline-block;
  width: 35%;
}

.tour-details .find-air .tabs {
  margin-bottom: 0px;
}

.tour-details .find-air .journey+.journey {
  margin-top: 15px;
  border-top: 1px solid #D8D8D8;
  padding-top: 15px;
}

.tour-details .find-air .airlines li {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.tour-details .find-air .airlines li+li {
  margin-left: 10px;
}

.tour-details .find-air .airlines img {
  vertical-align: middle;
}

.tour-details .find-air .flight-timeline {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: Arial;
  font-size: 12px;
  line-height: 14px;
  color: #AAA;
}

.tour-details .find-air .flight-timeline:before {
  content: '';
  position: absolute;
  top: 10px;
  width: 100%;
  height: 0px;
  border-top: 1px dashed #D2D2D2;
}

.tour-details .find-air .flight-timeline li {
  position: relative;
  text-align: center;
}

.tour-details .find-air .flight-timeline .departure,
.tour-details .find-air .flight-timeline .arrival {
  text-align: left;
}

.tour-details .find-air .flight-timeline .time {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  height: 20px;
  background: #FFF;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  color: #666666;
}

.tour-details .find-air .flight-timeline .departure .time:after,
.tour-details .find-air .flight-timeline .arrival .time:before,
.tour-details .find-air .flight-timeline .stop:before {
  content: '';
  position: absolute;
  top: 8px;
  display: inline-block;
  width: 5px;
  height: 5px;
  background: #666;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
}

.tour-details .find-air .flight-timeline .departure .time {
  padding-right: 20px;
  position: relative;
}

.tour-details .find-air .flight-timeline .departure .time:after {
  right: 0;
}

.tour-details .find-air .flight-timeline .arrival {
  padding-left: 20px;
  background: #FFF;
}

.tour-details .find-air .flight-timeline .arrival .time:before {
  left: 0;
}

.tour-details .find-air .flight-timeline .stop {
  padding-top: 20px;
  color: #D0021B;
}

.tour-details .find-air .flight-timeline .airport {
  display: block;
  color: #666666;
}

.tour-details .find-air .prices {
  position: relative;
  margin: 15px -20px -20px;
  padding: 20px 250px 20px 20px;
  border-top: 1px solid #B5B5B5;
  background-color: #F8F8F8;
  color: #D0021B;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
}

.tour-details .find-air .prices li {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  line-height: 21px;
}

.tour-details .find-air .prices li+li {
  margin-left: 20px;
}

.tour-details .find-air .prices em {
  color: #666666;
  font-family: Arial;
  font-size: 18px;
  font-weight: bold;
  line-height: 21px;
}

.tour-details .find-air .prices .button {
  position: absolute;
  top: 20px;
  right: 20px;
}

.tour-detail-tabs .tab-navigation {
  background-color: #CDEABE;
}

@media(max-width: 1200px) {
  .tour-detail-tabs .tab-navigation {
      background-color: rgb(232, 235, 238);
  }
}

.tour-details .itinerary {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.tour-details .itinerary li {
  padding: 0px 15px 15px;
}

.tour-details .itinerary li+li {
  /*padding-top: 15px;*/
}

.tour-details .itinerary strong {
  position: relative;
  display: block;
  margin: 0px -15px 15px;
  padding: 15px 15px 15px 100px;
  border: 1px solid #569E30;
  background-color: #FFFFFF;
  color: #666666;
  font-family: Arial;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
}

.tour-details .itinerary strong em {
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  width: 80px;
  padding: 15px 0px;
  background-color: #569E30;
  color: #FFFFFF;
  text-align: center;
}

.tour-details .itinerary strong em:after {
  content: '';
  position: absolute;
  right: -6px;
  top: -moz-calc(50% - 10px);
  top: calc(50% - 10px);
  border-left: 7px solid #569E30;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
} 

@media(max-width: 767px) {
  .tour-details .itinerary li {
      padding: 15px;
  }
  .tour-details .itinerary strong {
      margin: 0px;
      padding: 0px;
      border: none;
      background: none;        
      font: inherit;
      font-weight: bold;
  }
  .tour-details .itinerary strong em {
      position: static;
      background: none;
      color: #569E30;
      text-align: center;
  }
  .tour-details .itinerary strong em:after {
      content: none;
  }
}



/* fallback */
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url('/style/fonts/icon-material.woff2') format('woff2');
}

.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}




.tour-map-overlay {
  z-index: 1000;
  display: none;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.8);
}

.tour-map-overlay.show {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

@media(max-width: 650px) {
  .tour-map-overlay {
      -webkit-box-align: start;
      -moz-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
  }
}

.tour-map-overlay span {
  display: none;
  position: relative;
  height: auto;
  padding: 15px 10px;
  background: #127478;
  color: #FFFFFF;
  font-family: Arial;
  font-size: 18px;
  line-height: 21px;
  text-align: left;
  font-weight: normal;
}

.tour-map-overlay .primary-close {
  position: absolute;
  z-index: 1001;
  width: 24px;
  height: 24px;
  top: -12px;
  right: -12px;
  color: #FFF;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
}

@media(max-width: 650px) {
  .tour-map-overlay header {
      display: block;
  }
  .tour-map-overlay .primary-close {
      top: 15px;
      right: 10px;
  background-color:#008286;
     border: 2px solid #008286;
     -moz-border-radius: 5px;
      border-radius: 5px;
  }
}

@media(min-width: 651px) {
  .tour-map-overlay .primary-close {
      background: #666;
      border: 2px solid #FFF;
      -moz-border-radius: 50%;
      border-radius: 50%;
  }
}

.tour-map-overlay .tour-map-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  background-color: #FFFFFF;
  color: #666666;
  font-family: Arial;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

.tour-map-container .itinerary li {
  display: none;
  padding: 10px 100px;
}

.tour-map-container .itinerary li.show {
  display: block;
}

.tour-map-container .itinerary img {
  display: block;
  width: -moz-calc(100% + 200px);
  width: calc(100% + 200px);
  height: auto;
  border-bottom: 1px solid #BBBDBF;
  margin: -10px -100px 20px;
}

@media(max-width: 650px) {
  .tour-map-container .itinerary li {
      padding: 10px;
  }
  .tour-map-container .itinerary img {
      width: -moz-calc(100% + 20px);
      width: calc(100% + 20px);
      margin: -10px -10px 20px;
  }
}

.tour-map-container .itinerary strong {
  display: block;
  /* margin-bottom: 5px; */
  color: #569E30;
  font-size: 16px;
  line-height: 26px;
padding:10px;
}

.tour-map-container .controls {
  padding: 10px 20px 20px;
  font-size: 0px;
}

.tour-map-container .controls .button {
  min-width: 0px;
  height: 40px;
  font: inherit;
  padding: 10px 15px;
  background: #F1F1F2;
  border: 1px solid #BBBDBF;
  color: #666666;
  font-size: 14px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

.tour-map-container .controls .button+.button {
  margin-left: 10px;
}

.tour-map-container .controls .close {
  min-width: 125px;
  text-align: center;
}

.tour-map-container .controls .material-icons {
  font-family: 'Material Icons';
  font-size: 25px;
}

.tour-map-container .controls .next,
.tour-map-container .controls .previous {
  padding: 10px;
  background-color: #CDEABE;
  border: 1px solid #ADC5A1;
  color: rgba(86, 158, 48, 1);
}

@media(min-width: 651px) {
  .tour-map-container .controls .close {
      display: none;
  }
  .tour-map-container .controls .next,
  .tour-map-container .controls .previous {
      position: absolute;
      bottom: 25%;
      left: 0px;
      margin: 0px !important;
  }
  .tour-map-container .controls .next {
      left: auto;
      right: 0px;
  }
}
