@charset "UTF-8";
@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: 20px !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-top: 10px !important;
  padding-bottom: 10px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !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;
}

.mt-20 {
  margin-top: 20px !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;
}

.ml-20 {
  margin-left: 20px !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-33 {
  width: 33% !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%;
}

.br-5 {
  border-radius: 5px;
}

.br-10 {
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .hide-lg {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (min-width: 768px) {
  .hide-md {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 767px) {
  .hide-sm {
    display: none !important;
    visibility: hidden !important;
  }
}

.rotate-180 {
  transform: rotate(180deg) !important;
}

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

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

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

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

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

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

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

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

.border-brand-dark-font {
  border: 1px solid #129ea2;
}

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

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

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

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

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

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

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

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

.border-grey {
  border: 1px solid #f1f1f2;
}

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

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

.border-border {
  border: 1px solid #dbdbdb;
}

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

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

.border-font {
  border: 1px solid #343434;
}

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

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

.border-font-light {
  border: 1px solid #868686;
}

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

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

.border-blue {
  border: 1px solid #0672ff;
}

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

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

.border-blue-alt {
  border: 1px solid #3d7dd1;
}

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

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

.border-req {
  border: 1px solid #bc2525;
}

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

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

.border-red {
  border: 1px solid #dc1e1e;
}

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

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

.border-pink {
  border: 1px solid #ffdfdf;
}

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

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

.border-green {
  border: 1px solid #00ce29;
}

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

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

.border-mint {
  border: 1px solid #e8ffe4;
}

.clr-white {
  color: #fff !important;
}

.bg-white {
  background: #fff !important;
}

.border-white {
  border: 1px solid #fff;
}

body {
  height: auto !important;
}

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

.content {
  font: medium/normal 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-left {
  text-align: left;
}

.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__green {
  background: #158b3e;
  color: #fff;
}
.btn__book {
  background: #158b3e;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  font-size: 20px;
  padding: 15px 25px;
  width: fit-content;
  border: 1px solid #020202;
  box-shadow: none;
}
.btn__update-price {
  background: #c4141d;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  font-size: 20px;
  padding: 15px 25px;
  width: fit-content;
  border: 1px solid #020202;
  box-shadow: none;
}
.btn__white {
  background: #fff;
  font-size: 14px;
  border: 1px solid #dbdbdb;
}
.btn__ghost {
  background: transparent;
  font-size: 14px;
  border: 1px solid #dbdbdb;
  color: #0672ff;
  text-decoration: underline;
}
.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 !important;
  pointer-events: none;
}

.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("/matchmaker/assets/images/icons/search.svg") no-repeat #fff;
}
fieldset .icon__departure,
.icon__departure {
  background: url("/matchmaker/assets/images/icons/flight-takeoff.svg") no-repeat #fff;
}
fieldset .icon__landing,
.icon__landing {
  background: url("/matchmaker/assets/images/icons/flight-land.svg") no-repeat #fff;
}
fieldset .icon__mountains,
.icon__mountains {
  background: url("/matchmaker/assets/images/icons/mountains.svg") no-repeat #fff;
}
fieldset .icon__calendar,
.icon__calendar {
  background: url("/matchmaker/assets/images/icons/calendar-month.svg") no-repeat #fff;
}
fieldset .icon__clock,
.icon__clock {
  background: url("/matchmaker/assets/images/icons/clock.svg") no-repeat #fff;
}
fieldset .icon__person,
.icon__person {
  background: url("/matchmaker/assets/images/icons/face.svg") no-repeat #fff;
}
fieldset .icon__child,
.icon__child {
  background: url("/matchmaker/assets/images/icons/child.svg") no-repeat #fff;
}
fieldset .icon__price,
.icon__price {
  background: url("/matchmaker/assets/images/icons/paid.svg") no-repeat #fff;
}
fieldset .icon__filter,
.icon__filter {
  background: url("/matchmaker/assets/images/icons/filter.svg") no-repeat #fff;
}
fieldset .icon__passenger,
.icon__passenger {
  background: url("/matchmaker/assets/images/icons/passenger.svg") no-repeat #fff;
}
fieldset .icon__plane,
.icon__plane {
  background: url("/matchmaker/assets/images/icons/plane.svg") no-repeat #fff;
}
fieldset .icon__bed,
.icon__bed {
  background: url("/matchmaker/assets/images/icons/bed.svg") no-repeat #fff;
}
fieldset .icon__select,
.icon__select {
  background: url("/matchmaker/assets/images/icons/arrow-down.svg") no-repeat #fff;
}

.lock-outline {
  stroke-width: 3;
  fill: blue;
  background: red;
  padding: 10px;
}

.info-icon-link {
  margin-left: 5px;
}

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

@media (min-width: 768px) {
  .main-menu {
    height: 65px;
  }	  
}

.main-menu .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.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;
}

.box {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
}

.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;
  color: inherit !important;
  font: inherit !important;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 4;
}

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

.overlay.open {
  display: flex;
  overflow-y: hidden !important;
}

.overlay.open .overlay-container {
  animation: slideUp 0.3s ease-in-out;
  display: block;
  height: auto;
  max-height: 93vh;
  max-height: 93dvh;
  top: auto;
}

.overlay.open header {
  position: relative !important;
  background: #fff !important;
  color: inherit !important;
  font: inherit !important;
  height: 50px !important;
}

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

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

.overlay-container .open {
  display: none;
  transition: 0.5s;
}

.overlay-controls {
  height: 70px;
  width: 100%;
  padding: 10px 10px 0 10px;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
}
.overlay-controls__left {
  display: flex;
}
.overlay-controls__left .price {
  font-size: 24px;
  font-weight: bold;
}
.overlay-controls__left .price-ti {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 5px;
  line-height: 0.9;
  font-size: 12px;
}

.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(/matchmaker/assets/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(/matchmaker/assets/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;
}

.range-card__range .slider {
  box-sizing: border-box;
  display: block;
  position: relative;
  height: 5px;
  margin: 15px 5px;
  background: #d6d9dc;
  /* border-bottom: 1px solid #f1f3f4; */
  border-radius: 5px;
}

.ui-datepicker {
  width: 100% !important;
  padding: 5px 20px 20px 20px !important;
  border-radius: 5px !important;
}
.ui-datepicker-inline {
  min-height: 355px !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
}
.ui-datepicker-header {
  background-color: #fff !important;
  border: none !important;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  height: auto !important;
  position: absolute !important;
  top: 10px !important;
  background-color: #fff !important;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev {
  left: auto !important;
  right: 40px !important;
}
.ui-datepicker-next .ui-icon,
.ui-datepicker-prev .ui-icon {
  height: 32px !important;
  width: 32px !important;
  background: url("/matchmaker/assets/images/icons/arrow-down.svg") !important;
  background-position: center !important;
  background-size: 24px 24px !important;
  background-repeat: no-repeat !important;
}
.ui-datepicker-next .ui-icon {
  transform: rotate(-90deg) !important;
}
.ui-datepicker-prev .ui-icon {
  transform: rotate(90deg) !important;
}
.ui-datepicker-next .ui-state-hover,
.ui-datepicker-prev .ui-state-hover,
.ui-datepicker-next:hover,
.ui-datepicker-prev:hover {
  background-color: #fff;
  border: none !important;
}
.ui-datepicker .ui-datepicker-title {
  text-align: left !important;
  margin: 0 !important;
  min-height: 42px;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-month {
  position: relative;
  width: 100px;
  border: none;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-title .ui-datepicker-year {
  position: relative;
  width: 100px;
  border: none;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
  font-size: 14px;
}
.ui-datepicker thead span {
  color: #868686;
}
.ui-datepicker .ui-datepicker-calendar tbody tr {
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
.ui-datepicker td {
  cursor: pointer;
  border: none !important;
}
.ui-datepicker td:hover a:not(.ui-state-active) {
  background: #f1f1f2 !important;
  color: #343434 !important;
  border-radius: 100%;
}
.ui-datepicker td a {
  padding: 0 !important;
  margin: auto !important;
  border: 1px solid transparent !important;
  color: #555 !important;
  background: transparent !important;
  max-width: 32px !important;
  line-height: 32px !important;
  text-align: center !important;
}
.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-calendar a.ui-state-active {
  background: #008286 !important;
  border-color: #008286 !important;
  color: #fff !important;
  border-radius: 100%;
  align-items: center;
  vertical-align: middle;
}

.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;
  margin-top: 10px;
  border-radius: 5px;
  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,
.tip-preferences {
  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-preferences.all-positive {
  background: #F7FFF3;
  color: #40BB0E;
  border: 1px solid #40BB0E;
}

.tip-preferences.some-positive {
  background: #FCF7E1;
  color: #E69C08;
  border: 1px solid #E69C08;
}

.tip-warning,
.tip-brand,
.tip-blue,
.tip-preferences {
  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),
.tip-preferences :nth-child(2) {
  padding: 0 10px;
}

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

.tip-no-icon :nth-child(2) {
  padding: 0;
}

.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(/matchmaker/assets/images/icons/verified-purchaser.png) no-repeat left center;
  padding-left: 20px;
  white-space: pre;
}

.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 li {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px;
  padding-right: 0;
  font-size: 14px;
}
.list-group li .link-plain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  color: #343434;
  text-decoration: none;
}
.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;
  max-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("/matchmaker/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: 78vh;
  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%;
}

@media (max-width: 767px) {
  #results {
    width: 100%;
    border-spacing: 0;
  }
  #results tbody {
    width: 100%;
  }
  #results tr td {
    display: flex;
    align-items: center;
  }
  #results tr {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 85px;
    grid-template-areas: "hotel right" "destination right" "icons right";
    column-gap: 5px;
    row-gap: 2px;
    border-bottom: 1px solid #dbdbdb;
    cursor: pointer;
  }
  #results tr:last-of-type {
    border-bottom: none;
  }
  #results tr .hotel-name {
    grid-area: hotel;
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
  }
  #results tr .hotel-name a {
    text-decoration: none;
    color: initial;
  }
  #results tr .destination {
    grid-area: destination;
    font-size: 12px;
    color: #868686;
  }
  #results tr .month {
    grid-area: right;
    grid-row: 1/3;
    justify-self: end;
    align-items: end;
    font-size: 20px;
    height: 100%;
  }
  #results tr .month a {
    text-decoration: none;
    color: initial;
    font-weight: bold;
  }
  #results tr .star-rating {
    grid-area: right;
    justify-self: end;
    grid-row: 3;
    color: #f2a900;
  }
}
#popover {
  background: #f1f1f2;
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  display: block;
  width: 100%;
  border: 1px solid #cecece;
  z-index: 11;
  font-size: 14px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: 0px 8px 9px 0px rgba(0, 0, 0, 0.2);
}
#popover .form-group:first-of-type {
  margin-top: 5px;
}
#popover .overlay-controls {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
#popover:after {
  content: "▲";
  position: absolute;
  right: 15px;
  top: -20px;
  font-size: 24px;
  color: #f1f1f2;
  width: 20px;
}
#popover:before {
  content: "▲";
  position: absolute;
  right: 15px;
  top: -24px;
  font-size: 24px;
  color: #cecece;
  height: 20px;
  width: 20px;
}

#popoverBG {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.tippy-box {
  position: relative;
  background-color: #fff;
  color: #343434;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
  border: 1px solid #dbdbdb;
}

.tippy-box[data-placement^=bottom] > .tippy-arrow::before {
  content: "▲";
  color: #fff;
  font-size: 1px;
}

.tippy-arrow::after {
  content: "▲";
  color: black;
  font-size: 1px;
}

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;
  color: black;
}

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

.select-wrapper {
  border-radius: 5px;
  display: flex;
  align-items: center;
  width: 100%;
}

.select-wrapper .label {
  flex-shrink: 0;
  color: black;
  padding-left: 10px;
}

.select-wrapper select {
  flex-grow: 1;
  border: none;
  font-size: 14px;
  padding-left: 5px !important;
}

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

select:disabled,
input:disabled {
  opacity: 0.5	
}

option:disabled {
  color: Gainsboro !important;
}

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

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

.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("/matchmaker/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],
.form-group input[type=search] {
  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 input:disabled {
  cursor: default;
}
.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] .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;
  font-size: 14px;
}
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;
  color: black;
}
form[data-overlay=filters] .tooltip-container,
form[data-overlay=filters] .overlay-list {
  margin-top: 0;
}
form[data-overlay=filters] .icon {
  padding-left: 10px;
  padding-right: 30px;
}

form[data-overlay=pkgDestination] .overlay-scrollable {
  max-height: calc(100% - 50px) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
form[data-overlay=pkgDestination] .overlay-controls {
  padding-bottom: 10px !important;
}
form[data-overlay=pkgDestination] a {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}
form[data-overlay=pkgDestination] .country {
  border-bottom: none;
}

.select-link {
  height: auto;
  border: none;
  color: #0672ff;
  font-size: 16px;
  text-decoration: underline;
  padding: 0 5px !important;
  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(/matchmaker/assets/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: 1480px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0;
  }
}

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

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 767px) {
  .grid-3-col {
    grid-template-columns: 1fr;
  }
}

.main-menu, .white-bg, .newMobileHeaderConatiner {
  position: sticky;
  top: 0;
  z-index: 4;
}

.pkg-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70px;
  height: auto;
  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;
  position: sticky;
  top: 45px;
  z-index: 3;
  border-bottom: 1px solid #dbdbdb;
}

@media (min-width: 768px) {
  .desktopFullHeader > nav .menu-container {
	margin: 0 -1px;
  }
	
  .results-header {
    top: 65px;
  }
}

@media (max-width: 1099px) {
  .desktopFullHeader > nav {
	height: 100vh;
	height: 100dvh;
  }
}

@media (min-width: 1100px) {
  .desktopFullHeader {
	height: 65px;
  }	  

  .desktopFullHeader > nav {
    display: none;
  }
}

.results-header__found {
  margin-left: 10px;
  display: flex;
  flex-direction: column;
}
.results-header__found #matches-text {
  font-size: 12px;
  font-weight: bold;
}
.results-header__found div h2 {
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.results-header__num {
  font-size: 40px;
  font-weight: bold;
  color: #bc2525;
}

.matches-header, .hotel-header {
  display: flex;
  align-items: center;
}

#back-to-matches {
  margin-left: -10px;
}

#back-to-matches img {
  height: 40px;
  vertical-align: middle;
}

.hotel-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #dbdbdb;
  padding: 5px 0 5px 10px;
  min-height: 70px;
}

#hotel-name {
  font-size: 16px;
  color: #008286;
}

#hotel-location {
  font-size: 14px;
  color: #868686;
  font-weight: normal;
}

#hotel-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

#segmentation-details {
  border-radius: 5px;
  font-size: 11px;
  padding: 2px 5px 2px 18px;
  flex-shrink: 0;
}

.segmentation-details {
  border-radius: 3px;
  font-size: 10px;
  padding: 1px 3px 0 16px;
  display: block;
  height: 16px;
}

.cheap-and-cheerful {
  color: #00ce29;
  border: 1px solid #00ce29;
  background: url("/matchmaker/assets/images/icons/cheap-cheerful-borderless.svg") no-repeat left center;
  padding-left: 14px !important;
}

.luxury {
  color: #343434;
  border: 1px solid #343434;
  background: url("/matchmaker/assets/images/icons/luxury-borderless.svg") no-repeat left center;
}

.top-seller {
  color: #ffbb01;
  border: 1px solid #ffbb01;
  background: url("/matchmaker/assets/images/icons/top-seller-borderless.svg") no-repeat left center;
}

.hidden-gem {
  color: #ff01e6;
  border: 1px solid #ff01e6;
  background: url("/matchmaker/assets/images/icons/hidden-gem-borderless.svg") no-repeat left center;
}

.cruise {
  color: #0672ff;
  border: 1px solid #0672ff;
  background: url("/matchmaker/assets/images/icons/cruise-borderless.svg") no-repeat left center;
}


.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-child {
  border-bottom: none;
}
.results__result.featureRowHotel {
  background-color: #e7ffb8;
}
.results__result .result-left > img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border: 1px solid #cecece;
  border-radius: 7px;
}
.results__result .result-left .connection {
  font-size: 14px;
  color: #343434;
  margin-left: 5px;
}
.results__result .result-left .date {
  font-size: 14px;
  color: #0672ff;
  text-decoration: underline;
}
.results__result .result-right {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  text-align: right;
}
.results__result .result-right .star-rating {
  min-width: 70px;
}
.results__result .result-loc,
.results__result .result-room {
  font-size: 12px;
  color: #868686;
  display: block;
}
.results__result h4 {
  font-size: 14px;
  line-height: 1.1;
  font-weight: bold;
}
.results__result .result-icons {
  display: flex;
  gap: 5px;
  transform: translateY(2px);
}
.results__result .result-icons .score-indicator {
  display: none;
}
.results__result.all-positive .result-icons .score-indicator,
.results__result.some-positive .result-icons .score-indicator,
.results__result.all-negative .result-icons .score-indicator {
  display: block;
}
.results__result .result-icons .child-available {
  background: url(/matchmaker/assets/images/icons/max-age.svg) no-repeat left center;
  color: #E78623;
  border: 1px solid #E78623;
  border-radius: 3px;
  padding: 1px 3px 0 12px;
  font-size: 10px;
  height: 16px;
  display: none;
}
.results__result.child-available .result-icons .child-available {
  display: block;
}
.results__result li {
  list-style: none;
  font-size: 12px;
}
.over-max-price {
  color: #ccc !important;
}
.results__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.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;
  }
}

.manditory-info p {
  font-size: 14px;
  margin-bottom: 1rem;
  line-height: 18px;
}

.req-documentation {
  border-top: 1px solid #dbdbdb;
  padding: 20px;
}
@media (max-width: 767px) {
  .req-documentation {
    border-top: none;
    padding: 0;
    margin-bottom: 30px;
  }
}
.req-documentation > div {
  display: flex;
  border: 1px solid #dbe2e8;
  border-radius: 5px;
  overflow: hidden;
}
.req-documentation > div .left {
  width: 25%;
  border-right: 1px solid #dbe2e8;
  padding: 10px;
  display: flex;
  align-items: center;
}
.req-documentation > div .right {
  border-left: none;
  width: 76%;
  padding: 10px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .req-documentation > div {
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #dbe2e8;
  }
  .req-documentation > div .left {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #dbe2e8;
    display: flex;
    align-items: center;
  }
  .req-documentation > div .right {
    width: 100%;
    font-size: 12px;
  }
}

.secure-payment-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.secure-payment-container .secure-payment-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
}

.secure {
  margin-top: 20px;
  max-width: 400px;
  padding-left: 50px;
  background: url(/matchmaker/assets/images/icons/shield.png) no-repeat left center/auto 100%;
  background-size: 35px;
  font-size: 12px;
  line-height: 18px;
}

@media (max-width: 767px) {
  .cc-payment .w-50 {
    width: 100% !important;
  }
}

.trip-protection {
  text-align: center;
  border-radius: 5px;
  padding: 20px;
}
.trip-protection header h2 {
  color: #008286;
}
.trip-protection li {
  line-height: 1.5;
  font-size: 14px;
  list-style: none;
}
@media (max-width: 767px) {
  .trip-protection {
    text-align: left;
    padding: 10px;
  }
  .trip-protection header {
    display: flex;
    align-items: center;
  }
  .trip-protection header svg {
    height: 30px;
    width: 30px;
    margin-right: 5px;
  }
  .trip-protection h2 {
    color: #008286;
    font-size: 14px;
  }
  .trip-protection li {
    line-height: 1.5;
    font-size: 12px;
    position: relative;
    margin-left: 20px;
  }
  .trip-protection li::before {
    content: "";
    display: block;
    height: 15px;
    width: 15px;
    background-size: 15px 15px;
    background-image: url(/matchmaker/assets/images/icons/chevron-right.png);
    background-repeat: no-repeat;
    position: absolute;
    left: -20px;
    top: 1px;
  }
}

.additional-options {
  font-size: 12px;
  line-height: 14px;
}
.additional-options .gray-box {
  border-radius: 5px;
  background-color: #f2f2f2;
  border: 1px solid #b7bbc0;
  background: #eee;
  margin-bottom: 5px;
  padding: 0 10px 0 5px;
}
.additional-options table {
  border-collapse: separate;
  border-spacing: 0 7px;
  width: 100%;
}
.additional-options table th {
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 16px;
  text-align: left;
}
.additional-options table th.price-pp {
  text-align: right;
}
.additional-options table td {
  color: #666666;
  text-align: left;
}
.additional-options table .one {
  width: 43px;
}
.additional-options table .two {
  width: 430px;
}
.additional-options table .three {
  width: 90px;
}
.additional-options table .white {
  background: #fff;
  border: 1px solid #d0d0d0;
  border-width: 1px 0 1px 0;
  padding: 5px 15px;
  font: 12px/15px arial;
  color: #8d8d8d;
  line-height: 16px;
}
.additional-options table .white.left {
  border-left: 1px solid #d0d0d0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 10px;
  border-right: 1px solid #d0d0d0;
}
.additional-options table .white.right {
  border-right: 1px solid #d0d0d0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  font: bold 14px/16px arial;
  color: #9c9c9c;
  text-align: right;
}
.additional-options table .white.selected {
  background: #e88a0b url(//media.tripcentral.ca/style/images/package-booking/bg-orange-selected.png) repeat-x top;
  color: #fff;
  text-shadow: 0.1em 0.1em 0.05em rgba(0, 0, 0, 0.15);
  border: 1px solid #e68401;
  line-height: 16px;
}
.additional-options .additional-options-display input {
  margin: 0px 0px 0px 10px;
}

.options-container a {
  font-size: 14px;
}
@media (max-width: 767px) {
  .options-container {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .passenger-info-form {
    padding: 20px;
  }
  .passenger-info-form .row label {
    display: none;
    visibility: hidden;
  }
  .passenger-info-form .row:nth-of-type(1) label {
    display: block;
    visibility: visible;
  }
}

.options-container .options-list {
  display: inline-flex !important;
  gap: 20px;
  list-style: none;
}
.options-container .options-list li {
  position: relative;
}
.options-container .options-list li:after {
  content: "|";
  position: absolute;
  left: -10px;
}
.options-container .options-list li:first-of-type:after {
  content: "";
}
.options-container .options-list b {
  display: inline !important;
}

.booking-bonus-img {
  height: 20px;
  width: auto;
  border-radius: 3px;
}

.booking-bonus-list {
  position: relative;
  list-style: disc;
  padding-left: 15px;
}
.booking-bonus-list .list-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.booking-bonus-list .list-title:before {
  display: none;
}
.booking-bonus-list li {
  position: relative;
  padding-left: 10px;
  overflow: visible !important;
  margin-bottom: 5px;
  line-height: 1.2;
}
.booking-bonus-list li:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #343434;
  transform: translateX(-14px);
  top: 5px;
}

.pay-in-cash span {
  display: inline-block;
}
@media (max-width: 767px) {
  .pay-in-cash {
    font-size: 14px;
    text-align: center;
  }
}

.oa-container {
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .oa-container {
    border: 1px solid #008286;
    margin-top: 0;
  }
}

.oa-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  position: relative;
  background: #008286;
  color: #fff;
  cursor: pointer;
  border: 1px solid #0b4749;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.oa-header svg {
  transform: rotate(90deg);
}
.oa-header.closed svg {
  transform: rotate(0deg);
}
.oa-header div h4 {
  font-size: 18px !important;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .oa-header div h4 {
    font-size: 14px !important;
  }
}
.oa-header > span {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .oa-header {
    background: #f5ffff;
    color: #343434;
    border: none;
    display: flex;
    align-items: center;
    padding: 10px 12px;
  }
}

.oa-content {
  padding: 20px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media (max-width: 767px) {
  .oa-content {
    border: none;
    border-top: 1px solid #008286;
    padding: 10px;
  }
}
.oa-content .optional-addon header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 767px) {
  .oa-content .optional-addon header {
    cursor: pointer;
    pointer-events: auto;
  }
}
.oa-content .optional-addon header .left {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 3px;
}
.oa-content .optional-addon header span {
  font-size: 14px;
  font-weight: bold;
}
.oa-content .optional-addon header i {
  color: #868686;
  font-size: 12px;
}
.oa-content .optional-addon header svg {
  transform: rotate(90deg);
}
.oa-content .optional-addon .oa-list {
  list-style: none;
}
.oa-content .optional-addon .oa-list li {
  background: #f3f3f3;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}
.oa-content .optional-addon .oa-list li:last-of-type {
  margin-bottom: 0;
}
.oa-content .optional-addon .oa-list li label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.oa-content .optional-addon .oa-list li label input[type=radio] {
  margin-right: 5px;
}
.oa-content .optional-addon .oa-list li label .price {
  font-weight: bold;
  font-size: 12px;
}

.reverify-txt {
  text-align: center;
  font-size: 14px;
  color: #bc2525;
  font-weight: bold;
}

.reverify {
  color: #bc2525;
}

@media (max-width: 767px) {
  .important-disclosures .cb-content {
    border: 1px solid #dbdbdb !important;
    padding: 10px;
    border-radius: 5px;
    margin-top: 5px;
  }
}

.agree-terms {
  font-size: 14px;
  border-radius: 5px;
  border: 2px solid #008286;
  overflow: hidden;
}
@media (max-width: 767px) {
  .agree-terms {
    margin-bottom: 10px;
    border-width: 1px;
    font-size: 12px;
  }
}
.agree-terms .cb-header {
  display: flex;
  align-items: center;
  gap: 3px;
  position: relative;
  background: #f5ffff !important;
  padding: 0;
}
@media (max-width: 767px) {
  .agree-terms .cb-header {
    justify-content: space-between;
    padding: 0 10px;
  }
}
.agree-terms .cb-header > * {
  flex-shrink: 0;
}
.agree-terms .cb-header svg {
  transform: rotate(90deg);
  margin-left: auto;
}
.agree-terms .cb-header .left {
  display: flex;
  flex-shrink: 1;
  flex-grow: 0;
  padding: 20px 0px 20px 20px;
}
.agree-terms .cb-header .left label {
  display: flex;
  gap: 5px;
}
@media (max-width: 767px) {
  .agree-terms .cb-header .left {
    padding: 10px 0px;
  }
}
.agree-terms .cb-header .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  padding: 20px 20px 20px 0px;
  padding-left: 0px;
  cursor: pointer;
}
.agree-terms .cb-header .right span {
  text-decoration: underline;
  color: #0672ff;
}
@media (max-width: 767px) {
  .agree-terms .cb-header .right {
    padding: 10px 0px;
  }
}
.agree-terms .cb-header,
.agree-terms .cb-content {
  border: none;
}
.agree-terms .cb-content {
  border-top: 2px solid #008286;
}
@media (max-width: 767px) {
  .agree-terms .cb-content {
    border-width: 1px;
    padding: 10px;
  }
}
.agree-terms .terms {
  margin-left: 20px;
}
.agree-terms .terms li {
  margin-bottom: 10px;
}

.email-opt-in {
  padding: 20px;
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  background: #fff;
  margin-top: 10px;
  font-size: 14px;
}
.email-opt-in label {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .email-opt-in {
    padding: 20px 10px;
    font-size: 12px;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .checkout-body {
    background: #f3f6f9;
  }
}

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

.fast-secure-checkout {
  background: #f3f3f3;
  padding: 12px 10px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbdbdb;
  width: 100%;
}
@media (min-width: 768px) {
  .fast-secure-checkout {
    background: #fff;
    height: 80px;
    margin-bottom: 20px;
  }
}
.fast-secure-checkout .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fast-secure-checkout .container > div {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 5px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .fast-secure-checkout .container > div {
    column-gap: 30px;
  }
}
.fast-secure-checkout h2 {
  font-size: 14px;
}
@media (min-width: 768px) {
  .fast-secure-checkout h2 {
    font-weight: 500;
    font-size: 28px;
  }
}
.fast-secure-checkout .savings {
  display: flex;
}
.fast-secure-checkout .savings img {
  margin-right: 5px;
}
.fast-secure-checkout .savings > div {
  display: block;
}
.fast-secure-checkout .savings > div p {
  font-size: 12px;
}
.fast-secure-checkout .img-right {
  height: 40px;
}

.checkout-header {
  background: #f5ffff;
  font-size: 14px;
  padding: 10px;
  border-bottom: 1px solid #dbdbdb;
  min-height: 70px;
}
@media (min-width: 768px) {
  .checkout-header {
    background: #fff;
    font-size: 16px;
    padding: 0;
    border: 1px solid #dbdbdb;
    display: flex;
  }
  .checkout-header > div {
    position: relative;
    flex-grow: 1;
    width: 50%;
  }
}
.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-header__heading {
  padding: 10px;
  border-left: 1px solid #dbdbdb;
  margin-left: -10px;
}
.checkout-header .heading {
  font-size: 16px;
  font-weight: 600;
  color: #008286;
}
@media (min-width: 768px) {
  .checkout-header .heading {
    font-size: 24px;
    color: #343434;
    font-weight: normal;
  }
}
.checkout-header .room-type {
  color: #008286;
  font-weight: bold;
}
@media (max-width: 767px) {
  .checkout-header .room-type {
    color: #343434;
    font-weight: normal;
  }
}
.checkout-header .sub-heading {
  color: #868686;
  font-size: 14px;
  font-weight: normal;
  display: block;
}
.checkout-header .icons {
  margin-top: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.checkout-header .checkout-list {
  list-style: none;
  display: flex;
}
@media (min-width: 768px) {
  .checkout-header .checkout-list {
    padding: 20px;
    flex-direction: column;
  }
}
.checkout-header .checkout-list li {
  position: relative;
  padding-right: 3px;
}
@media (max-width: 767px) {
  .checkout-header .checkout-list li:after {
    content: ",";
    right: 2px;
  }
  .checkout-header .checkout-list li:nth-last-child(2):after {
    content: "";
  }
  .checkout-header .checkout-list li strong {
    font-weight: normal;
  }
}
@media (min-width: 768px) {
  .checkout-header .checkout-list li {
    line-height: 24px;
  }
}
.checkout-header .left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 1;
}
@media (min-width: 768px) {
  .checkout-header .left {
    padding: 20px;
  }
}
.checkout-header .right {
  display: flex;
  justify-content: space-between;
  border-left: 1px solid #dbdbdb;
  position: relative;
}
.checkout-header .star-rating {
  flex-shrink: 0;
}
.checkout-header .checkout-img {
  height: 100%;
  width: 100%;
  max-width: 220px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1023px) {
  .checkout-header .checkout-img {
    width: 150px;
  }
}

.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 {
  padding: 0;
}
@media (min-width: 768px) {
  .checkout {
    background: #f3f6f9;
    padding: 0 10px;
  }
}
.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 .details-card b {
  display: inline-block;
  margin: 0;
  margin-right: 2px;
}
.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;
}
@media (min-width: 768px) {
  .checkout form .form-group:last-of-type {
    padding-bottom: 0;
  }
}
.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],
.checkout form input[type=search] {
  width: 100%;
  padding: 10px;
  border: #cecece 1px solid;
  border-radius: 5px;
  cursor: unset;
}
.checkout form input[type=date] {
  font-family: arial;
}

.checkout-container .checkout {
  padding: 0;
}
@media (min-width: 768px) {
  .checkout-container .checkout {
    background: #f3f6f9;
    padding: 0 10px;
  }
}
.checkout-container .checkout h4 {
  font-size: 14px;
  margin: 5px 0 2px;
}
.checkout-container .checkout .terms p {
  line-height: 1.2;
  padding-bottom: 5px;
}
.checkout-container .checkout .terms p:last-of-type {
  padding-bottom: 0;
}
.checkout-container .checkout .list-group li {
  padding-right: 15px;
}
.checkout-container .checkout form .details-card b {
  display: inline-block;
  margin: 0;
  margin-right: 2px;
}
.checkout-container .checkout form b {
  display: block;
  margin-top: 0;
}
.checkout-container .checkout form .form-group {
  padding-bottom: 0;
}
.checkout-container .checkout form .form-group:last-of-type {
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .checkout-container .checkout form .form-group:last-of-type {
    padding-bottom: 0;
  }
}
.checkout-container .checkout form .form-group select {
  padding: 10px;
}
.checkout-container .checkout form .form-group .form-item {
  margin-bottom: 8px;
}
.checkout-container .checkout form input[type=text],
.checkout-container .checkout form input[type=date],
.checkout-container .checkout form input[type=tel],
.checkout-container .checkout form input[type=email],
.checkout-container .checkout form input[type=search] {
  width: 100%;
  padding: 10px;
  border: #cecece 1px solid;
  border-radius: 5px;
  cursor: unset;
}
.checkout-container .checkout form input[type=date] {
  font-family: arial;
}

.featured-options li {
  padding: 0;
  padding-right: 0 !important;
  overflow: hidden;
}
.featured-options li:last-of-type label {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.featured-options li img {
  height: 24px;
}
.featured-options li a {
  position: unset;
  font-size: 14px;
}
.featured-options label,
.featured-options .option-title {
  display: flex;
  width: 100%;
  align-items: center;
  height: 100%;
  padding: 10px;
  position: relative;
  overflow: hidden;
}
.featured-options label .right,
.featured-options .option-title .right {
  margin-left: auto;
  text-align: right;
}
.featured-options label:hover {
  background: #f3f3f3;
  cursor: pointer;
}
.featured-options label:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  background: transparent;
  box-sizing: inherit;
  left: 0;
}
.featured-options label.selected {
  background: #f3f3f3;
}
.featured-options label.selected:before {
  background: #0672ff;
}
.featured-options label input[type=radio] {
  margin-right: 12px;
  display: block;
}
.featured-options b {
  margin: 0;
  display: block;
}
.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(/matchmaker/assets/images/stripes-bg.jpg);
}
.booking-number-container p {
  word-wrap: break-word;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .checkout-container .checkout {
    padding-left: 0;
    padding-right: 0;
  }
  .cb-header {
    background: #f8f6ea;
    padding: 20px;
    margin-bottom: 0 !important;
    border: 1px solid #dbdbdb;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
    position: relative;
  }
  .cb-header h4 {
    font-size: 18px !important;
    margin: 0 !important;
  }
  .cb-header h4 img {
    vertical-align: bottom;
  }
  .cb-header p {
    font-size: 14px;
    margin-top: 5px;
  }
  .cb-header a {
    font-size: 14px;
    flex-shrink: 0;
  }
  .header-brand {
    background: #008286;
    color: #fff;
    border-color: #0b4749;
  }
  .cb-content {
    padding: 20px;
    background: #fff;
    border: 1px solid #dbdbdb;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: none;
  }
  .cb-content .row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
  }
  .cb-content .row .form-group {
    width: 100%;
  }
  .cb-content .row .form-group:first-of-type, .cb-content .row .form-group:nth-of-type(2) {
    width: auto;
  }
  .cb-content .row:last-of-type {
    margin-bottom: 0;
  }
  .cb-content .form-group {
    flex-direction: row;
    padding: 0;
  }
  .cb-content .form-group .w-50 {
    width: 100% !important;
  }
  .cb-content .form-group .psngr-title {
    min-width: 70px;
  }
  .cb-content .list-group {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .cb-content .list-group:first-of-type {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
}
.checkout-container {
  display: flex;
  gap: 10px;
}
.checkout-container .checkout {
  width: 100%;
}
.checkout-container .checkout .checkout-content {
  padding: 0 10px 20px 10px;
}
@media (min-width: 768px) {
  .checkout-container .checkout .checkout-content {
    padding: 0 0 20px 0;
  }
}
.checkout-container .sidebar {
  min-width: 340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  display: grid;
  gap: 10px;
  flex: 0;
  position: sticky;
  top: 10px;
}
.checkout-container .sidebar .br-5 {
  overflow: hidden;
}
@media (max-width: 1200px) {
  .checkout-container .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    flex-basis: 50%;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    display: none;
    visibility: hidden;
  }
  .checkout-container .sidebar > * {
    height: 100%;
    width: 100%;
  }
}
.checkout-container .sidebar .additional-questions {
  border-radius: 5px;
  color: #fff;
  padding: 20px;
  background: #008286 url(/matchmaker/assets/images/icons/phone2.svg) no-repeat 234px center/64px auto;
}
.checkout-container .sidebar .additional-questions > div {
  padding-right: 100px;
}
.checkout-container .sidebar .additional-questions > div h4 {
  font-size: 20px;
}
.checkout-container .sidebar .additional-questions > div p {
  line-height: 18px;
}
.checkout-container .pricing-summary li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: 12px;
}
.checkout-container .pricing-summary li:last-of-type {
  margin-top: 5px;
  font-size: 16px;
}
.checkout-container .pricing-summary li .total {
  font-size: 16px;
  font-weight: bold;
}
.checkout-container .pricing-summary li .price {
  font-size: 20px;
  color: #008286;
  font-weight: bold;
}
.checkout-container .pricing-summary li small {
  color: #569e30 !important;
}
.checkout-container .payment-options-sb {
  border: 1px solid #dbdbdb;
  border-radius: 5px;
  overflow: hidden;
}
.checkout-container .payment-options-sb li {
  background: #fff;
  padding: 20px;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checkout-container .payment-options-sb li:nth-of-type(even) {
  background: #f5ffff;
  border-top: 1px solid #8ec2c3;
}
@media (max-width: 1200px) {
  .checkout-container {
    flex-direction: column-reverse;
  }
}

.flight-info {
  width: 100%;
  border-spacing: 0;
}
.flight-info tr th {
  font-weight: bold;
  color: #666;
  background: #d1ebfc;
  border-bottom: 1px solid #dbdbdb;
  padding: 13px 20px;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
}
.flight-info tr td {
  font-size: 14px;
  line-height: 16px;
  color: #666666;
  padding: 13px 20px;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 1024px) {
  .flight-info tr th,
  .flight-info tr td {
    padding: 13px 10px;
  }
  .flight-info th:nth-of-type(2),
  .flight-info td:nth-of-type(2) {
    padding: 5px;
  }
}

.tablet-pricing {
  display: flex;
  width: 100%;
  gap: 10px;
}
.tablet-pricing > * {
  width: 50%;
}
@media (min-width: 1200px) {
  .tablet-pricing {
    display: none;
    visibility: hidden;
  }
}

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

header.new.mobile {
  line-height: 22px;
}

header.new.mobile .overlay-content {
  background: inherit !important;
}

#header-menu header, #contact-us-overlay header {
  border-radius: 0;	
}

#contact-us-overlay a {
  color: #666;
}

#overlay .overlay-content, #overlay2 .overlay-content {
  overflow-y: hidden;
  padding-top: 0;
}

#loading {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  text-align: center;
  z-index: 99999;
}

#loading .content {
  display: inline-block;
  background: #FFF;
  border: 5px solid #e8e8e8;
  border-radius: 5px;
  width: 420px;
  height: 170px;
  font-size: 20px;
  color: #000;
  position: absolute;
  z-index: 9999;
  left: 50%;
  top: 30%;
  margin-left: -210px;
}

@media (max-width: 767px) {
  #loading .content {
    width: 280px;
    margin-left: -140px;
  }

  #loading .content .loader {
    width: 240px;
  }
}

#loading .logo {
  margin-top: 25px;
  margin-bottom: 20px;
  width: 196px;
}

#loading .overlay {
  display: block;
  background: #FFF;
  opacity: .5;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 9980;
  overflow-y: hidden;
}

#additional-dates-list li {
  box-sizing: border-box;
  height: 50px;
  font-size: 14px;
  line-height: 50px;
  white-space: nowrap;
  text-align: center;
  margin: 5px 0 0 !important;
}

#additional-dates-list li a, #additional-dates-list li span {
  color: inherit;
  text-decoration: none;
  text-align: center;
}

#additional-dates-list li a::before, #additional-dates-list li span::before {
  content: attr(full-date);
  display: block;
  color: #666;
  background: #F1F1F2;
  border: 1px solid #BBBDBF;
  width: auto;
  height: 100%;
  padding: 0px;
  margin: 0px;
}

#additional-dates-list li span::before {
  color: #d7d7d7;
  background: #fdfdfd;
  border: 1px solid #e7e7e7; 
}

#additional-dates-list li a.selected::before {
  border: 2px solid #FDB00A;
  background-color: #FFF;
  color: #E49D03;
  font-weight: 700;
  line-height: 48px;
}

.segmentation-details-tooltip {
  z-index: 2000;
  width: 230px;
  position: absolute;
  display: inline-block;
  border-width: 5px;
  border-color: black;
  border-style: solid;
  border-radius: 5px;
  background-color: #FFF;
  padding: 10px;
  font-size: 14px;
  text-align: center;
}

.segmentation-details-tooltip .point {
  width: 0px;
  height: 0px;
  display: block;
  position: absolute;
  top: -9px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid black;
}

.childRoomWarning {
  color: #961B20;
  padding-bottom: 10px;
}

.no-border-bottom:not(.tooltip-highlight) {
  border-bottom: none !important;
}

.no-border-bottom.tooltip-highlight {
  border-radius: 5px;
}

/*# sourceMappingURL=main.css.map */
