@charset "UTF-8";

/* projects/generic/src/styles.scss */

/* projects/intelligentindexmarketing/core/assets/scss/common.scss */
.row-with-checkbox label {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-blue, #1f2a44);
  position: relative;
}
.row-with-checkbox label:after {
  content: "";
  height: calc(100% + 10px);
  width: 1px;
  background-color: var(--border-color, silver);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-height: 24px;
}
.row-with-checkbox.single {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  border: 1px solid var(--border-color, silver);
  padding: 16px 20px;
  align-items: center;
  border-radius: var(--border-radius, 3px);
  margin-bottom: 15px;
}
.row-with-checkbox input {
  border: 1px solid var(--border-color);
}
.setting-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--border-color, silver);
  padding: 20px 0;
  color: var(--dark-blue, #1f2a44);
  font-size: 14px;
}
.setting-row:last-child {
  border-bottom: none;
}
.setting-row .item,
.setting-row .value {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-blue, #1f2a44);
  position: relative;
}
.setting-row .item:after,
.setting-row .value:after {
  content: "";
  height: calc(100% + 10px);
  width: 1px;
  background-color: var(--border-color, silver);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  max-height: 24px;
}
.tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 25px;
  position: relative;
}
@media (max-width: 768px) {
  .tabs {
    gap: 10px;
  }
}
.tabs:after {
  content: none;
  height: 1px;
  width: 100%;
  background-color: rgba(31, 42, 68, 0.22);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.tabs .tab {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-transform: capitalize;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 35px;
  padding: 7px 20px;
  gap: 5px;
}
.tabs .tab .tab-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-blue, #1f2a44);
  position: relative;
  line-height: 20px;
}
.tabs .tab.active {
  border: 1px solid var(--dark-blue, #1f2a44);
}
@media (max-width: 768px) {
  .tabs .tab {
    font-size: 14px;
  }
}
.counter {
  width: 20px;
  height: 20px;
  background-color: var(--dark-blue, #1f2a44);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 12px;
}
.counter.ipad {
  width: 13px;
  height: 13px;
  font-size: 8px;
}
@media (orientation: landscape) {
  .counter.ipad {
    width: 16px;
    height: 16px;
    font-size: 12px;
  }
}
.counter.square {
  border-radius: 3px;
  padding: 0 3px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: initial;
}
@media screen and (max-width: 992px) {
  .counter {
    width: 18px;
    height: 18px;
    line-height: 1;
    font-size: 10px;
    right: 0px;
    padding: 0;
  }
}
input[type=number] {
  appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input:-internal-autofill-selected {
  background-color: #ffffff !important;
}
.color-label {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.green {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green, #28a745);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.green-slight {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(16, 185, 129, 0.7);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.orange {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-orange, #e89830);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.orange-slight {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 158, 11, 0.7);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.blue {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-blue, #1668e3);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.dark-blue {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-blue, #1f2a44);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.dark-blue-slight {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(31, 42, 68, 0.7);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.pink {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-pink, #f43f5e);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.pink-slight {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(244, 63, 94, 0.7);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.yellow {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-yellow, #facc15);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.yellow-slight {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(250, 204, 21, 0.7);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.grey {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-grey, #6c757d);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-label.grey-slight {
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(108, 117, 125, 0.7);
  border-radius: 10px;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  line-height: 20px;
  min-width: 30px;
  font-weight: 700;
}
.color-bubble {
  background-color: var(--black, #000);
  padding: 5px 10px;
  color: var(--white, #fff);
  font-family: "Lato";
  font-size: 12px;
  line-height: 20px;
  border-radius: 35px;
  letter-spacing: 0;
  width: max-content;
  max-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
@keyframes addToFavorite {
  0% {
    display: block;
    opacity: 0;
    z-index: 1;
  }
  5% {
    display: block;
    opacity: 1;
    z-index: 1;
  }
  95% {
    display: block;
    opacity: 1;
    z-index: 1;
  }
  100% {
    display: none;
    z-index: -1;
  }
}
@keyframes slideInFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOutFade {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.price,
.price-not-bold {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-align: left;
  color: var(--dark-blue);
}
.price p,
.price-not-bold p {
  line-height: 1.2 !important;
}
.price p:has(.per-person),
.price-not-bold p:has(.per-person) {
  display: inline;
}
.price .per-person,
.price-not-bold .per-person {
  font-size: 10px;
  line-height: 1.4;
  color: var(--dark-blue, #1f2a44);
  font-weight: 400;
  white-space: nowrap;
}
.price.md,
.price-not-bold.md {
  font-size: 18px;
  line-height: 1;
}
.price.sm,
.price-not-bold.sm {
  font-size: 16px;
  line-height: 1;
}
.google-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  grid-area: google;
}
.google-rating-row .rating-badge {
  background: var(--main-green);
  color: white;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 3px;
}
.google-rating-row .google-logo {
  height: 10px;
  width: auto;
}
*.mobile .google-rating-row .rating-badge {
  padding: 3px 5px;
  font-size: 11px;
}
*.mobile .google-rating-row .google-logo {
  height: 10px;
  width: auto;
}
:root {
  --white: #ffffff;
  --black: #000000;
  --dark-grey: #686868;
  --grey: #999999;
  --light-grey: #f7f7f7;
  --soft-grey: #dddddd42;
  --main-orange: #ff6a39;
  --text-color: #1f2a44;
  --dark-blue: rgba(31, 42, 68, 1);
  --bg-main: #3970cf;
  --light-blue: rgb(87, 133, 214);
  --online-colour: rgb(19, 206, 102);
  --border-color: #dddddd;
  --main-color: #e73e45;
  --rewards-color-primary: #4fc3f7;
  --rewards-color-secondary: #9575cd;
  --rewards-color-tertiary: #263238;
  --main-blue: #1668e3;
  --main-blue-darker: #0d5ca8;
  --main-blue-hover: #006be0;
  --main-red: #e82a00;
  --hot-color: #ff4500;
  --main-green: #2ebd59;
  --ios-green: #53d769;
  --main-violet: #343377;
  --orange: rgb(255 158 34);
  --dark-orange: #fd4b31;
  --checkbox-text-color: #313137;
  --header-icon-color: var(--dark-blue);
  --header-logo-color: var(--main-color);
  --black-alpha: rgba(0, 0, 0, 0.7);
  --main-green-alpha: rgba(46, 189, 89, 0.7);
  --orange-alpha: rgba(255, 158, 34, 0.7);
  --deep-blue: #223b58;
  --yellow: rgb(255 204 0);
  --yellow-alpha: rgb(255 204 0 / 70%);
  --mint: rgb(0 206 209 / 100%);
  --mint-alpha: rgb(0 206 209 /70%);
  --holiday-element-color-alpha: rgba(0, 151, 167, 0.7);
  --holiday-element-color: rgba(0, 151, 167, 1);
  --cruise-element-color-alpha: rgba(32, 136, 250, 0.7);
  --cruise-element-color: rgba(32, 136, 250, 1);
  --ski-element-color-alpha: rgba(47, 192, 90, 0.7);
  --ski-element-color: rgba(47, 192, 90, 1);
  --border-radius: 3px;
  --border-radius-middle: 8px;
  --border-radius-big: 14px;
  --border-radius-mobile: 4px;
  --border-radius-images-mobile: 8px;
  --shadow: drop-shadow(0px 5px 14px rgba(31, 42, 68, 0.15));
  --box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 2px;
  --header-bg: var(--dark-blue);
  --tabs-color: var(--main-blue);
  --app-incomming-call-toast-color: rgb(32, 136, 250);
  --comon-search-console-bg-color: rgba(0, 0, 0, 0.3);
}
.holiday-color {
  background-color: var(--holiday-element-color-alpha);
}
.cruise-color {
  background-color: var(--cruise-element-color-alpha);
}
.ski-color {
  background-color: var(--ski-element-color-alpha);
}
.m-0 {
  margin: 0px !important;
}
.mt-0 {
  margin-top: 0px !important;
}
.mb-0 {
  margin-bottom: 0px !important;
}
.ml-0 {
  margin-left: 0px !important;
}
.mr-0 {
  margin-right: 0px !important;
}
.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.m-2 {
  margin: 2px !important;
}
.mt-2 {
  margin-top: 2px !important;
}
.mb-2 {
  margin-bottom: 2px !important;
}
.ml-2 {
  margin-left: 2px !important;
}
.mr-2 {
  margin-right: 2px !important;
}
.mx-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}
.my-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}
.m-3 {
  margin: 3px !important;
}
.mt-3 {
  margin-top: 3px !important;
}
.mb-3 {
  margin-bottom: 3px !important;
}
.ml-3 {
  margin-left: 3px !important;
}
.mr-3 {
  margin-right: 3px !important;
}
.mx-3 {
  margin-left: 3px !important;
  margin-right: 3px !important;
}
.my-3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}
.m-5 {
  margin: 5px !important;
}
.mt-5 {
  margin-top: 5px !important;
}
.mb-5 {
  margin-bottom: 5px !important;
}
.ml-5 {
  margin-left: 5px !important;
}
.mr-5 {
  margin-right: 5px !important;
}
.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.m-10 {
  margin: 10px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.mr-10 {
  margin-right: 10px !important;
}
.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.m-12 {
  margin: 12px !important;
}
.mt-12 {
  margin-top: 12px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.ml-12 {
  margin-left: 12px !important;
}
.mr-12 {
  margin-right: 12px !important;
}
.mx-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}
.my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.m-15 {
  margin: 15px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.mr-15 {
  margin-right: 15px !important;
}
.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.m-20 {
  margin: 20px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.m-25 {
  margin: 25px !important;
}
.mt-25 {
  margin-top: 25px !important;
}
.mb-25 {
  margin-bottom: 25px !important;
}
.ml-25 {
  margin-left: 25px !important;
}
.mr-25 {
  margin-right: 25px !important;
}
.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.m-30 {
  margin: 30px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.m-35 {
  margin: 35px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mb-35 {
  margin-bottom: 35px !important;
}
.ml-35 {
  margin-left: 35px !important;
}
.mr-35 {
  margin-right: 35px !important;
}
.mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}
.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}
.m-40 {
  margin: 40px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.ml-40 {
  margin-left: 40px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}
.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}
.m-50 {
  margin: 50px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.ml-50 {
  margin-left: 50px !important;
}
.mr-50 {
  margin-right: 50px !important;
}
.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}
.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}
.m-60 {
  margin: 60px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}
.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}
.m-65 {
  margin: 65px !important;
}
.mt-65 {
  margin-top: 65px !important;
}
.mb-65 {
  margin-bottom: 65px !important;
}
.ml-65 {
  margin-left: 65px !important;
}
.mr-65 {
  margin-right: 65px !important;
}
.mx-65 {
  margin-left: 65px !important;
  margin-right: 65px !important;
}
.my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}
.m-75 {
  margin: 75px !important;
}
.mt-75 {
  margin-top: 75px !important;
}
.mb-75 {
  margin-bottom: 75px !important;
}
.ml-75 {
  margin-left: 75px !important;
}
.mr-75 {
  margin-right: 75px !important;
}
.mx-75 {
  margin-left: 75px !important;
  margin-right: 75px !important;
}
.my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}
.m-100 {
  margin: 100px !important;
}
.mt-100 {
  margin-top: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.ml-100 {
  margin-left: 100px !important;
}
.mr-100 {
  margin-right: 100px !important;
}
.mx-100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}
.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.mb-auto {
  margin-bottom: auto !important;
}
.ml-auto {
  margin-left: auto !important;
}
.mr-auto {
  margin-right: auto !important;
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.p-0 {
  padding: 0px !important;
}
.pt-0 {
  padding-top: 0px !important;
}
.pb-0 {
  padding-bottom: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
.pr-0 {
  padding-right: 0px !important;
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.p-2 {
  padding: 2px !important;
}
.pt-2 {
  padding-top: 2px !important;
}
.pb-2 {
  padding-bottom: 2px !important;
}
.pl-2 {
  padding-left: 2px !important;
}
.pr-2 {
  padding-right: 2px !important;
}
.px-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.py-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.p-3 {
  padding: 3px !important;
}
.pt-3 {
  padding-top: 3px !important;
}
.pb-3 {
  padding-bottom: 3px !important;
}
.pl-3 {
  padding-left: 3px !important;
}
.pr-3 {
  padding-right: 3px !important;
}
.px-3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}
.py-3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}
.p-4 {
  padding: 4px !important;
}
.pt-4 {
  padding-top: 4px !important;
}
.pb-4 {
  padding-bottom: 4px !important;
}
.pl-4 {
  padding-left: 4px !important;
}
.pr-4 {
  padding-right: 4px !important;
}
.px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.p-5 {
  padding: 5px !important;
}
.pt-5 {
  padding-top: 5px !important;
}
.pb-5 {
  padding-bottom: 5px !important;
}
.pl-5 {
  padding-left: 5px !important;
}
.pr-5 {
  padding-right: 5px !important;
}
.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.p-6 {
  padding: 6px !important;
}
.pt-6 {
  padding-top: 6px !important;
}
.pb-6 {
  padding-bottom: 6px !important;
}
.pl-6 {
  padding-left: 6px !important;
}
.pr-6 {
  padding-right: 6px !important;
}
.px-6 {
  padding-left: 6px !important;
  padding-right: 6px !important;
}
.py-6 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}
.p-7 {
  padding: 7px !important;
}
.pt-7 {
  padding-top: 7px !important;
}
.pb-7 {
  padding-bottom: 7px !important;
}
.pl-7 {
  padding-left: 7px !important;
}
.pr-7 {
  padding-right: 7px !important;
}
.px-7 {
  padding-left: 7px !important;
  padding-right: 7px !important;
}
.py-7 {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
.p-8 {
  padding: 8px !important;
}
.pt-8 {
  padding-top: 8px !important;
}
.pb-8 {
  padding-bottom: 8px !important;
}
.pl-8 {
  padding-left: 8px !important;
}
.pr-8 {
  padding-right: 8px !important;
}
.px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.p-9 {
  padding: 9px !important;
}
.pt-9 {
  padding-top: 9px !important;
}
.pb-9 {
  padding-bottom: 9px !important;
}
.pl-9 {
  padding-left: 9px !important;
}
.pr-9 {
  padding-right: 9px !important;
}
.px-9 {
  padding-left: 9px !important;
  padding-right: 9px !important;
}
.py-9 {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.p-10 {
  padding: 10px !important;
}
.pt-10 {
  padding-top: 10px !important;
}
.pb-10 {
  padding-bottom: 10px !important;
}
.pl-10 {
  padding-left: 10px !important;
}
.pr-10 {
  padding-right: 10px !important;
}
.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.p-11 {
  padding: 11px !important;
}
.pt-11 {
  padding-top: 11px !important;
}
.pb-11 {
  padding-bottom: 11px !important;
}
.pl-11 {
  padding-left: 11px !important;
}
.pr-11 {
  padding-right: 11px !important;
}
.px-11 {
  padding-left: 11px !important;
  padding-right: 11px !important;
}
.py-11 {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}
.p-12 {
  padding: 12px !important;
}
.pt-12 {
  padding-top: 12px !important;
}
.pb-12 {
  padding-bottom: 12px !important;
}
.pl-12 {
  padding-left: 12px !important;
}
.pr-12 {
  padding-right: 12px !important;
}
.px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.p-15 {
  padding: 15px !important;
}
.pt-15 {
  padding-top: 15px !important;
}
.pb-15 {
  padding-bottom: 15px !important;
}
.pl-15 {
  padding-left: 15px !important;
}
.pr-15 {
  padding-right: 15px !important;
}
.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.p-17 {
  padding: 17px !important;
}
.pt-17 {
  padding-top: 17px !important;
}
.pb-17 {
  padding-bottom: 17px !important;
}
.pl-17 {
  padding-left: 17px !important;
}
.pr-17 {
  padding-right: 17px !important;
}
.px-17 {
  padding-left: 17px !important;
  padding-right: 17px !important;
}
.py-17 {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}
.p-18 {
  padding: 18px !important;
}
.pt-18 {
  padding-top: 18px !important;
}
.pb-18 {
  padding-bottom: 18px !important;
}
.pl-18 {
  padding-left: 18px !important;
}
.pr-18 {
  padding-right: 18px !important;
}
.px-18 {
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}
.p-19 {
  padding: 19px !important;
}
.pt-19 {
  padding-top: 19px !important;
}
.pb-19 {
  padding-bottom: 19px !important;
}
.pl-19 {
  padding-left: 19px !important;
}
.pr-19 {
  padding-right: 19px !important;
}
.px-19 {
  padding-left: 19px !important;
  padding-right: 19px !important;
}
.py-19 {
  padding-top: 19px !important;
  padding-bottom: 19px !important;
}
.p-20 {
  padding: 20px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.p-25 {
  padding: 25px !important;
}
.pt-25 {
  padding-top: 25px !important;
}
.pb-25 {
  padding-bottom: 25px !important;
}
.pl-25 {
  padding-left: 25px !important;
}
.pr-25 {
  padding-right: 25px !important;
}
.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}
.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}
.p-30 {
  padding: 30px !important;
}
.pt-30 {
  padding-top: 30px !important;
}
.pb-30 {
  padding-bottom: 30px !important;
}
.pl-30 {
  padding-left: 30px !important;
}
.pr-30 {
  padding-right: 30px !important;
}
.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.p-35 {
  padding: 35px !important;
}
.pt-35 {
  padding-top: 35px !important;
}
.pb-35 {
  padding-bottom: 35px !important;
}
.pl-35 {
  padding-left: 35px !important;
}
.pr-35 {
  padding-right: 35px !important;
}
.px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}
.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}
.p-40 {
  padding: 40px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pl-40 {
  padding-left: 40px !important;
}
.pr-40 {
  padding-right: 40px !important;
}
.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}
.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}
.p-45 {
  padding: 45px !important;
}
.pt-45 {
  padding-top: 45px !important;
}
.pb-45 {
  padding-bottom: 45px !important;
}
.pl-45 {
  padding-left: 45px !important;
}
.pr-45 {
  padding-right: 45px !important;
}
.px-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}
.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}
.p-50 {
  padding: 50px !important;
}
.pt-50 {
  padding-top: 50px !important;
}
.pb-50 {
  padding-bottom: 50px !important;
}
.pl-50 {
  padding-left: 50px !important;
}
.pr-50 {
  padding-right: 50px !important;
}
.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}
.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}
.p-55 {
  padding: 55px !important;
}
.pt-55 {
  padding-top: 55px !important;
}
.pb-55 {
  padding-bottom: 55px !important;
}
.pl-55 {
  padding-left: 55px !important;
}
.pr-55 {
  padding-right: 55px !important;
}
.px-55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}
.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}
.p-60 {
  padding: 60px !important;
}
.pt-60 {
  padding-top: 60px !important;
}
.pb-60 {
  padding-bottom: 60px !important;
}
.pl-60 {
  padding-left: 60px !important;
}
.pr-60 {
  padding-right: 60px !important;
}
.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}
.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.p-70 {
  padding: 70px !important;
}
.pt-70 {
  padding-top: 70px !important;
}
.pb-70 {
  padding-bottom: 70px !important;
}
.pl-70 {
  padding-left: 70px !important;
}
.pr-70 {
  padding-right: 70px !important;
}
.px-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}
.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}
.p-80 {
  padding: 80px !important;
}
.pt-80 {
  padding-top: 80px !important;
}
.pb-80 {
  padding-bottom: 80px !important;
}
.pl-80 {
  padding-left: 80px !important;
}
.pr-80 {
  padding-right: 80px !important;
}
.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}
.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.p-90 {
  padding: 90px !important;
}
.pt-90 {
  padding-top: 90px !important;
}
.pb-90 {
  padding-bottom: 90px !important;
}
.pl-90 {
  padding-left: 90px !important;
}
.pr-90 {
  padding-right: 90px !important;
}
.px-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}
.py-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
.p-100 {
  padding: 100px !important;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.pl-100 {
  padding-left: 100px !important;
}
.pr-100 {
  padding-right: 100px !important;
}
.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.fw-100 {
  font-weight: 100 !important;
}
.fw-200 {
  font-weight: 200 !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}
.font-italic {
  font-style: italic !important;
}
.fz-5 {
  font-size: 5px !important;
}
.fz-6 {
  font-size: 6px !important;
}
.fz-7 {
  font-size: 7px !important;
}
.fz-8 {
  font-size: 8px !important;
}
.fz-9 {
  font-size: 9px !important;
}
.fz-10 {
  font-size: 10px !important;
}
.fz-11 {
  font-size: 11px !important;
}
.fz-12 {
  font-size: 12px !important;
}
.fz-13 {
  font-size: 13px !important;
}
.fz-14 {
  font-size: 14px !important;
}
.fz-15 {
  font-size: 15px !important;
}
.fz-16 {
  font-size: 16px !important;
}
.fz-18 {
  font-size: 18px !important;
}
.fz-20 {
  font-size: 20px !important;
}
.fz-22 {
  font-size: 22px !important;
}
.fz-24 {
  font-size: 24px !important;
}
.fz-26 {
  font-size: 26px !important;
}
.fz-28 {
  font-size: 28px !important;
}
.fz-30 {
  font-size: 30px !important;
}
.fz-32 {
  font-size: 32px !important;
}
.fz-34 {
  font-size: 34px !important;
}
.fz-36 {
  font-size: 36px !important;
}
.fz-38 {
  font-size: 38px !important;
}
.fz-40 {
  font-size: 40px !important;
}
.fz-45 {
  font-size: 45px !important;
}
.fz-50 {
  font-size: 50px !important;
}
.fz-52 {
  font-size: 52px !important;
}
.fz-55 {
  font-size: 55px !important;
}
.fz-60 {
  font-size: 60px !important;
}
.flex {
  display: flex;
}
.d-none {
  display: none !important;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
.flex-row {
  flex-direction: row;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-column {
  flex-direction: column;
}
.flex-column-reverse {
  flex-direction: column-reverse;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.justify-content-start {
  justify-content: flex-start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}
.align-items-start {
  align-items: flex-start;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-stretch {
  align-items: stretch;
}
.align-items-baseline {
  align-items: baseline;
}
.align-content-start {
  align-content: flex-start;
}
.align-content-center {
  align-content: center;
}
.align-content-end {
  align-content: flex-end;
}
.align-content-between {
  align-content: space-between;
}
.align-content-around {
  align-content: space-around;
}
.align-content-evenly {
  align-content: space-evenly;
}
.align-content-stretch {
  align-content: stretch;
}
.center-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.gap-0 {
  gap: 0px !important;
}
.gap-2 {
  gap: 2px !important;
}
.gap-3 {
  gap: 3px !important;
}
.gap-4 {
  gap: 4px !important;
}
.gap-5 {
  gap: 5px !important;
}
.gap-8 {
  gap: 8px !important;
}
.gap-10 {
  gap: 10px !important;
}
.gap-15 {
  gap: 15px !important;
}
.gap-16 {
  gap: 16px !important;
}
.gap-18 {
  gap: 18px !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}
.gap-25 {
  gap: 25px !important;
}
.gap-30 {
  gap: 30px !important;
}
.gap-32 {
  gap: 32px !important;
}
.gap-35 {
  gap: 35px !important;
}
.gap-50 {
  gap: 50px !important;
}
.gap-60 {
  gap: 60px !important;
}
.gap-70 {
  gap: 70px !important;
}
.gap-80 {
  gap: 80px !important;
}
.gap-100 {
  gap: 100px !important;
}
.flex-fill {
  flex: 1 1 auto;
}
.flex-grow {
  flex: 1 0 auto;
}
.flex-shrink {
  flex: 0 1 auto;
}
.full-height {
  height: 100%;
}
.full-width {
  width: 100%;
}
.border-top {
  border-top: 1px solid var(--border-color, #dddddd);
}
.border-right {
  border-right: 1px solid var(--border-color, #dddddd);
}
.border-bottom {
  border-bottom: 1px solid var(--border-color, #dddddd);
}
.border-left {
  border-left: 1px solid var(--border-color, #dddddd);
}
.border-solid {
  border: 1px solid var(--border-color, #dddddd);
}
.border-x {
  border-left: 1px solid var(--border-color, #dddddd);
  border-right: 1px solid var(--border-color, #dddddd);
}
.border-y {
  border-top: 1px solid var(--border-color, #dddddd);
  border-bottom: 1px solid var(--border-color, #dddddd);
}
.br-0-px {
  border-radius: 0px !important;
}
.br-0-percent {
  border-radius: 0% !important;
}
.br-4-px {
  border-radius: 4px !important;
}
.br-4-percent {
  border-radius: 4% !important;
}
.br-8-px {
  border-radius: 8px !important;
}
.br-8-percent {
  border-radius: 8% !important;
}
.br-10-px {
  border-radius: 10px !important;
}
.br-10-percent {
  border-radius: 10% !important;
}
.br-12-px {
  border-radius: 12px !important;
}
.br-12-percent {
  border-radius: 12% !important;
}
.br-14-px {
  border-radius: 14px !important;
}
.br-14-percent {
  border-radius: 14% !important;
}
.br-15-px {
  border-radius: 15px !important;
}
.br-15-percent {
  border-radius: 15% !important;
}
.br-25-px {
  border-radius: 25px !important;
}
.br-25-percent {
  border-radius: 25% !important;
}
.br-30-px {
  border-radius: 30px !important;
}
.br-30-percent {
  border-radius: 30% !important;
}
.br-34-px {
  border-radius: 34px !important;
}
.br-34-percent {
  border-radius: 34% !important;
}
.br-35-px {
  border-radius: 35px !important;
}
.br-35-percent {
  border-radius: 35% !important;
}
.br-37-px {
  border-radius: 37px !important;
}
.br-37-percent {
  border-radius: 37% !important;
}
.br-38-px {
  border-radius: 38px !important;
}
.br-38-percent {
  border-radius: 38% !important;
}
.br-50-px {
  border-radius: 50px !important;
}
.br-50-percent {
  border-radius: 50% !important;
}
.br-57-px {
  border-radius: 57px !important;
}
.br-57-percent {
  border-radius: 57% !important;
}
.br-60-px {
  border-radius: 60px !important;
}
.br-60-percent {
  border-radius: 60% !important;
}
.br-70-px {
  border-radius: 70px !important;
}
.br-70-percent {
  border-radius: 70% !important;
}
.br-80-px {
  border-radius: 80px !important;
}
.br-80-percent {
  border-radius: 80% !important;
}
.br-90-px {
  border-radius: 90px !important;
}
.br-90-percent {
  border-radius: 90% !important;
}
.br-100-px {
  border-radius: 100px !important;
}
.br-100-percent {
  border-radius: 100% !important;
}
.h-5-px {
  height: 5px !important;
}
.h-5-percent {
  height: 5% !important;
}
.h-6-px {
  height: 6px !important;
}
.h-6-percent {
  height: 6% !important;
}
.h-7-px {
  height: 7px !important;
}
.h-7-percent {
  height: 7% !important;
}
.h-8-px {
  height: 8px !important;
}
.h-8-percent {
  height: 8% !important;
}
.h-10-px {
  height: 10px !important;
}
.h-10-percent {
  height: 10% !important;
}
.h-12-px {
  height: 12px !important;
}
.h-12-percent {
  height: 12% !important;
}
.h-13-px {
  height: 13px !important;
}
.h-13-percent {
  height: 13% !important;
}
.h-15-px {
  height: 15px !important;
}
.h-15-percent {
  height: 15% !important;
}
.h-17-px {
  height: 17px !important;
}
.h-17-percent {
  height: 17% !important;
}
.h-20-px {
  height: 20px !important;
}
.h-20-percent {
  height: 20% !important;
}
.h-22-px {
  height: 22px !important;
}
.h-22-percent {
  height: 22% !important;
}
.h-24-px {
  height: 24px !important;
}
.h-24-percent {
  height: 24% !important;
}
.h-25-px {
  height: 25px !important;
}
.h-25-percent {
  height: 25% !important;
}
.h-26-px {
  height: 26px !important;
}
.h-26-percent {
  height: 26% !important;
}
.h-27-px {
  height: 27px !important;
}
.h-27-percent {
  height: 27% !important;
}
.h-30-px {
  height: 30px !important;
}
.h-30-percent {
  height: 30% !important;
}
.h-32-px {
  height: 32px !important;
}
.h-32-percent {
  height: 32% !important;
}
.h-35-px {
  height: 35px !important;
}
.h-35-percent {
  height: 35% !important;
}
.h-37-px {
  height: 37px !important;
}
.h-37-percent {
  height: 37% !important;
}
.h-40-px {
  height: 40px !important;
}
.h-40-percent {
  height: 40% !important;
}
.h-45-px {
  height: 45px !important;
}
.h-45-percent {
  height: 45% !important;
}
.h-49-px {
  height: 49px !important;
}
.h-49-percent {
  height: 49% !important;
}
.h-50-px {
  height: 50px !important;
}
.h-50-percent {
  height: 50% !important;
}
.h-52-px {
  height: 52px !important;
}
.h-52-percent {
  height: 52% !important;
}
.h-55-px {
  height: 55px !important;
}
.h-55-percent {
  height: 55% !important;
}
.h-56-px {
  height: 56px !important;
}
.h-56-percent {
  height: 56% !important;
}
.h-60-px {
  height: 60px !important;
}
.h-60-percent {
  height: 60% !important;
}
.h-62-px {
  height: 62px !important;
}
.h-62-percent {
  height: 62% !important;
}
.h-65-px {
  height: 65px !important;
}
.h-65-percent {
  height: 65% !important;
}
.h-67-px {
  height: 67px !important;
}
.h-67-percent {
  height: 67% !important;
}
.h-70-px {
  height: 70px !important;
}
.h-70-percent {
  height: 70% !important;
}
.h-75-px {
  height: 75px !important;
}
.h-75-percent {
  height: 75% !important;
}
.h-80-px {
  height: 80px !important;
}
.h-80-percent {
  height: 80% !important;
}
.h-82-px {
  height: 82px !important;
}
.h-82-percent {
  height: 82% !important;
}
.h-85-px {
  height: 85px !important;
}
.h-85-percent {
  height: 85% !important;
}
.h-87-px {
  height: 87px !important;
}
.h-87-percent {
  height: 87% !important;
}
.h-90-px {
  height: 90px !important;
}
.h-90-percent {
  height: 90% !important;
}
.h-92-px {
  height: 92px !important;
}
.h-92-percent {
  height: 92% !important;
}
.h-100-px {
  height: 100px !important;
}
.h-100-percent {
  height: 100% !important;
}
.h-120-px {
  height: 120px !important;
}
.h-120-percent {
  height: 120% !important;
}
.h-125-px {
  height: 125px !important;
}
.h-125-percent {
  height: 125% !important;
}
.h-150-px {
  height: 150px !important;
}
.h-150-percent {
  height: 150% !important;
}
.h-160-px {
  height: 160px !important;
}
.h-160-percent {
  height: 160% !important;
}
.h-180-px {
  height: 180px !important;
}
.h-180-percent {
  height: 180% !important;
}
.h-190-px {
  height: 190px !important;
}
.h-190-percent {
  height: 190% !important;
}
.h-195-px {
  height: 195px !important;
}
.h-195-percent {
  height: 195% !important;
}
.h-200-px {
  height: 200px !important;
}
.h-200-percent {
  height: 200% !important;
}
.h-205-px {
  height: 205px !important;
}
.h-205-percent {
  height: 205% !important;
}
.h-230-px {
  height: 230px !important;
}
.h-230-percent {
  height: 230% !important;
}
.h-240-px {
  height: 240px !important;
}
.h-240-percent {
  height: 240% !important;
}
.h-250-px {
  height: 250px !important;
}
.h-250-percent {
  height: 250% !important;
}
.h-260-px {
  height: 260px !important;
}
.h-260-percent {
  height: 260% !important;
}
.h-270-px {
  height: 270px !important;
}
.h-270-percent {
  height: 270% !important;
}
.h-300-px {
  height: 300px !important;
}
.h-300-percent {
  height: 300% !important;
}
.h-310-px {
  height: 310px !important;
}
.h-310-percent {
  height: 310% !important;
}
.h-330-px {
  height: 330px !important;
}
.h-330-percent {
  height: 330% !important;
}
.h-350-px {
  height: 350px !important;
}
.h-350-percent {
  height: 350% !important;
}
.h-400-px {
  height: 400px !important;
}
.h-400-percent {
  height: 400% !important;
}
.h-450-px {
  height: 450px !important;
}
.h-450-percent {
  height: 450% !important;
}
.h-480-px {
  height: 480px !important;
}
.h-480-percent {
  height: 480% !important;
}
.h-500-px {
  height: 500px !important;
}
.h-500-percent {
  height: 500% !important;
}
.h-600-px {
  height: 600px !important;
}
.h-600-percent {
  height: 600% !important;
}
.h-auto-px {
  height: auto !important;
}
.w-15-px {
  width: 15px !important;
}
.mw-15-px {
  max-width: 15px !important;
}
.w-15-percent {
  width: 15% !important;
}
.w-25-px {
  width: 25px !important;
}
.mw-25-px {
  max-width: 25px !important;
}
.w-25-percent {
  width: 25% !important;
}
.w-30-px {
  width: 30px !important;
}
.mw-30-px {
  max-width: 30px !important;
}
.w-30-percent {
  width: 30% !important;
}
.w-32-px {
  width: 32px !important;
}
.mw-32-px {
  max-width: 32px !important;
}
.w-32-percent {
  width: 32% !important;
}
.w-35-px {
  width: 35px !important;
}
.mw-35-px {
  max-width: 35px !important;
}
.w-35-percent {
  width: 35% !important;
}
.w-37-px {
  width: 37px !important;
}
.mw-37-px {
  max-width: 37px !important;
}
.w-37-percent {
  width: 37% !important;
}
.w-38-px {
  width: 38px !important;
}
.mw-38-px {
  max-width: 38px !important;
}
.w-38-percent {
  width: 38% !important;
}
.w-40-px {
  width: 40px !important;
}
.mw-40-px {
  max-width: 40px !important;
}
.w-40-percent {
  width: 40% !important;
}
.w-45-px {
  width: 45px !important;
}
.mw-45-px {
  max-width: 45px !important;
}
.w-45-percent {
  width: 45% !important;
}
.w-50-px {
  width: 50px !important;
}
.mw-50-px {
  max-width: 50px !important;
}
.w-50-percent {
  width: 50% !important;
}
.w-52-px {
  width: 52px !important;
}
.mw-52-px {
  max-width: 52px !important;
}
.w-52-percent {
  width: 52% !important;
}
.w-55-px {
  width: 55px !important;
}
.mw-55-px {
  max-width: 55px !important;
}
.w-55-percent {
  width: 55% !important;
}
.w-56-px {
  width: 56px !important;
}
.mw-56-px {
  max-width: 56px !important;
}
.w-56-percent {
  width: 56% !important;
}
.w-57-px {
  width: 57px !important;
}
.mw-57-px {
  max-width: 57px !important;
}
.w-57-percent {
  width: 57% !important;
}
.w-60-px {
  width: 60px !important;
}
.mw-60-px {
  max-width: 60px !important;
}
.w-60-percent {
  width: 60% !important;
}
.w-62-px {
  width: 62px !important;
}
.mw-62-px {
  max-width: 62px !important;
}
.w-62-percent {
  width: 62% !important;
}
.w-65-px {
  width: 65px !important;
}
.mw-65-px {
  max-width: 65px !important;
}
.w-65-percent {
  width: 65% !important;
}
.w-70-px {
  width: 70px !important;
}
.mw-70-px {
  max-width: 70px !important;
}
.w-70-percent {
  width: 70% !important;
}
.w-75-px {
  width: 75px !important;
}
.mw-75-px {
  max-width: 75px !important;
}
.w-75-percent {
  width: 75% !important;
}
.w-80-px {
  width: 80px !important;
}
.mw-80-px {
  max-width: 80px !important;
}
.w-80-percent {
  width: 80% !important;
}
.w-85-px {
  width: 85px !important;
}
.mw-85-px {
  max-width: 85px !important;
}
.w-85-percent {
  width: 85% !important;
}
.w-88-px {
  width: 88px !important;
}
.mw-88-px {
  max-width: 88px !important;
}
.w-88-percent {
  width: 88% !important;
}
.w-90-px {
  width: 90px !important;
}
.mw-90-px {
  max-width: 90px !important;
}
.w-90-percent {
  width: 90% !important;
}
.w-95-px {
  width: 95px !important;
}
.mw-95-px {
  max-width: 95px !important;
}
.w-95-percent {
  width: 95% !important;
}
.w-100-px {
  width: 100px !important;
}
.mw-100-px {
  max-width: 100px !important;
}
.w-100-percent {
  width: 100% !important;
}
.w-110-px {
  width: 110px !important;
}
.mw-110-px {
  max-width: 110px !important;
}
.w-110-percent {
  width: 110% !important;
}
.w-120-px {
  width: 120px !important;
}
.mw-120-px {
  max-width: 120px !important;
}
.w-120-percent {
  width: 120% !important;
}
.w-140-px {
  width: 140px !important;
}
.mw-140-px {
  max-width: 140px !important;
}
.w-140-percent {
  width: 140% !important;
}
.w-150-px {
  width: 150px !important;
}
.mw-150-px {
  max-width: 150px !important;
}
.w-150-percent {
  width: 150% !important;
}
.w-160-px {
  width: 160px !important;
}
.mw-160-px {
  max-width: 160px !important;
}
.w-160-percent {
  width: 160% !important;
}
.w-165-px {
  width: 165px !important;
}
.mw-165-px {
  max-width: 165px !important;
}
.w-165-percent {
  width: 165% !important;
}
.w-168-px {
  width: 168px !important;
}
.mw-168-px {
  max-width: 168px !important;
}
.w-168-percent {
  width: 168% !important;
}
.w-180-px {
  width: 180px !important;
}
.mw-180-px {
  max-width: 180px !important;
}
.w-180-percent {
  width: 180% !important;
}
.w-200-px {
  width: 200px !important;
}
.mw-200-px {
  max-width: 200px !important;
}
.w-200-percent {
  width: 200% !important;
}
.w-225-px {
  width: 225px !important;
}
.mw-225-px {
  max-width: 225px !important;
}
.w-225-percent {
  width: 225% !important;
}
.w-240-px {
  width: 240px !important;
}
.mw-240-px {
  max-width: 240px !important;
}
.w-240-percent {
  width: 240% !important;
}
.w-250-px {
  width: 250px !important;
}
.mw-250-px {
  max-width: 250px !important;
}
.w-250-percent {
  width: 250% !important;
}
.w-260-px {
  width: 260px !important;
}
.mw-260-px {
  max-width: 260px !important;
}
.w-260-percent {
  width: 260% !important;
}
.w-262-px {
  width: 262px !important;
}
.mw-262-px {
  max-width: 262px !important;
}
.w-262-percent {
  width: 262% !important;
}
.w-300-px {
  width: 300px !important;
}
.mw-300-px {
  max-width: 300px !important;
}
.w-300-percent {
  width: 300% !important;
}
.w-350-px {
  width: 350px !important;
}
.mw-350-px {
  max-width: 350px !important;
}
.w-350-percent {
  width: 350% !important;
}
.w-500-px {
  width: 500px !important;
}
.mw-500-px {
  max-width: 500px !important;
}
.w-500-percent {
  width: 500% !important;
}
.w-600-px {
  width: 600px !important;
}
.mw-600-px {
  max-width: 600px !important;
}
.w-600-percent {
  width: 600% !important;
}
.w-auto-px {
  width: auto !important;
}
.mw-auto-px {
  max-width: auto !important;
}
.w-auto {
  width: auto !important;
}
.h-auto {
  height: auto !important;
}
.mw-auto {
  max-width: auto !important;
}
.mh-auto {
  max-height: auto !important;
}
.mnw-auto {
  min-width: auto !important;
}
.mnh-auto {
  min-height: auto !important;
}
.w-50 {
  width: 50px !important;
}
.w-55 {
  width: 55px !important;
}
.w-60 {
  width: 60px !important;
}
.w-70 {
  width: 70px !important;
}
.w-80 {
  width: 80px !important;
}
.w-90 {
  width: 90px !important;
}
.w-95 {
  width: 95px !important;
}
.w-100 {
  width: 100% !important;
}
.w-120 {
  width: 120px !important;
}
.w-140 {
  width: 140px !important;
}
.w-150 {
  width: 150px !important;
}
.w-166 {
  width: 166px !important;
}
.w-200 {
  width: 200px !important;
}
.w-210 {
  width: 210px !important;
}
.w-250 {
  width: 250px !important;
}
.w-300 {
  width: 300px !important;
}
.w-350 {
  width: 350px !important;
}
.w-370 {
  width: 370px !important;
}
.w-450 {
  width: 450px !important;
}
.w-500 {
  width: 500px !important;
}
.w-auto {
  width: auto !important;
}
.h-50 {
  height: 50px !important;
}
.h-55 {
  height: 55px !important;
}
.h-60 {
  height: 60px !important;
}
.h-70 {
  height: 70px !important;
}
.h-80 {
  height: 80px !important;
}
.h-90 {
  height: 90px !important;
}
.h-95 {
  height: 95px !important;
}
.h-100 {
  height: 100% !important;
}
.h-120 {
  height: 120px !important;
}
.h-140 {
  height: 140px !important;
}
.h-150 {
  height: 150px !important;
}
.h-166 {
  height: 166px !important;
}
.h-200 {
  height: 200px !important;
}
.h-210 {
  height: 210px !important;
}
.h-250 {
  height: 250px !important;
}
.h-300 {
  height: 300px !important;
}
.h-350 {
  height: 350px !important;
}
.h-370 {
  height: 370px !important;
}
.h-450 {
  height: 450px !important;
}
.h-500 {
  height: 500px !important;
}
.h-auto {
  height: auto !important;
}
.mw-50 {
  max-width: 50px !important;
}
.mw-55 {
  max-width: 55px !important;
}
.mw-60 {
  max-width: 60px !important;
}
.mw-70 {
  max-width: 70px !important;
}
.mw-80 {
  max-width: 80px !important;
}
.mw-90 {
  max-width: 90px !important;
}
.mw-95 {
  max-width: 95px !important;
}
.mw-100 {
  max-width: 100% !important;
}
.mw-120 {
  max-width: 120px !important;
}
.mw-140 {
  max-width: 140px !important;
}
.mw-150 {
  max-width: 150px !important;
}
.mw-166 {
  max-width: 166px !important;
}
.mw-200 {
  max-width: 200px !important;
}
.mw-210 {
  max-width: 210px !important;
}
.mw-250 {
  max-width: 250px !important;
}
.mw-300 {
  max-width: 300px !important;
}
.mw-350 {
  max-width: 350px !important;
}
.mw-370 {
  max-width: 370px !important;
}
.mw-450 {
  max-width: 450px !important;
}
.mw-500 {
  max-width: 500px !important;
}
.mh-50 {
  max-height: 50px !important;
}
.mh-55 {
  max-height: 55px !important;
}
.mh-60 {
  max-height: 60px !important;
}
.mh-70 {
  max-height: 70px !important;
}
.mh-80 {
  max-height: 80px !important;
}
.mh-90 {
  max-height: 90px !important;
}
.mh-95 {
  max-height: 95px !important;
}
.mh-100 {
  max-height: 100% !important;
}
.mh-120 {
  max-height: 120px !important;
}
.mh-140 {
  max-height: 140px !important;
}
.mh-150 {
  max-height: 150px !important;
}
.mh-166 {
  max-height: 166px !important;
}
.mh-200 {
  max-height: 200px !important;
}
.mh-210 {
  max-height: 210px !important;
}
.mh-250 {
  max-height: 250px !important;
}
.mh-300 {
  max-height: 300px !important;
}
.mh-350 {
  max-height: 350px !important;
}
.mh-370 {
  max-height: 370px !important;
}
.mh-450 {
  max-height: 450px !important;
}
.mh-500 {
  max-height: 500px !important;
}
.mnw-50 {
  min-width: 50px !important;
}
.mnw-55 {
  min-width: 55px !important;
}
.mnw-60 {
  min-width: 60px !important;
}
.mnw-70 {
  min-width: 70px !important;
}
.mnw-80 {
  min-width: 80px !important;
}
.mnw-90 {
  min-width: 90px !important;
}
.mnw-95 {
  min-width: 95px !important;
}
.mnw-100 {
  min-width: 100% !important;
}
.mnw-120 {
  min-width: 120px !important;
}
.mnw-140 {
  min-width: 140px !important;
}
.mnw-150 {
  min-width: 150px !important;
}
.mnw-166 {
  min-width: 166px !important;
}
.mnw-200 {
  min-width: 200px !important;
}
.mnw-210 {
  min-width: 210px !important;
}
.mnw-250 {
  min-width: 250px !important;
}
.mnw-300 {
  min-width: 300px !important;
}
.mnw-350 {
  min-width: 350px !important;
}
.mnw-370 {
  min-width: 370px !important;
}
.mnw-450 {
  min-width: 450px !important;
}
.mnw-500 {
  min-width: 500px !important;
}
.mnh-50 {
  min-height: 50px !important;
}
.mnh-55 {
  min-height: 55px !important;
}
.mnh-60 {
  min-height: 60px !important;
}
.mnh-70 {
  min-height: 70px !important;
}
.mnh-80 {
  min-height: 80px !important;
}
.mnh-90 {
  min-height: 90px !important;
}
.mnh-95 {
  min-height: 95px !important;
}
.mnh-100 {
  min-height: 100% !important;
}
.mnh-120 {
  min-height: 120px !important;
}
.mnh-140 {
  min-height: 140px !important;
}
.mnh-150 {
  min-height: 150px !important;
}
.mnh-166 {
  min-height: 166px !important;
}
.mnh-200 {
  min-height: 200px !important;
}
.mnh-210 {
  min-height: 210px !important;
}
.mnh-250 {
  min-height: 250px !important;
}
.mnh-300 {
  min-height: 300px !important;
}
.mnh-350 {
  min-height: 350px !important;
}
.mnh-370 {
  min-height: 370px !important;
}
.mnh-450 {
  min-height: 450px !important;
}
.mnh-500 {
  min-height: 500px !important;
}
.truncate-1 {
  line-clamp: 1 !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-2 {
  line-clamp: 2 !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-3 {
  line-clamp: 3 !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-4 {
  line-clamp: 4 !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-5 {
  line-clamp: 5 !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-6 {
  line-clamp: 6 !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-7 {
  line-clamp: 7 !important;
  -webkit-line-clamp: 7 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-8 {
  line-clamp: 8 !important;
  -webkit-line-clamp: 8 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-9 {
  line-clamp: 9 !important;
  -webkit-line-clamp: 9 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-10 {
  line-clamp: 10 !important;
  -webkit-line-clamp: 10 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-11 {
  line-clamp: 11 !important;
  -webkit-line-clamp: 11 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-12 {
  line-clamp: 12 !important;
  -webkit-line-clamp: 12 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-13 {
  line-clamp: 13 !important;
  -webkit-line-clamp: 13 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-14 {
  line-clamp: 14 !important;
  -webkit-line-clamp: 14 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
.truncate-15 {
  line-clamp: 15 !important;
  -webkit-line-clamp: 15 !important;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
}
img {
  font-size: 12px;
  line-height: 20px;
  color: #999;
  font-weight: 400;
}
.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .container.no-padding {
    padding: 0;
  }
}
.uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
.box-with-shadow {
  position: relative;
  transition: all 0.3s ease;
  --shadow-height: 40%;
  --shadow-max-height: 50px;
  --shadow-color: #ffffff;
}
.box-with-shadow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--shadow-height);
  max-height: var(--shadow-max-height);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      var(--shadow-color) 100%);
  z-index: 1;
}
.box-with-shadow.horizontal::after {
  content: "";
  right: 0;
  left: auto;
  width: 40%;
  height: 100%;
  max-width: 50px;
  max-height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      var(--shadow-color) 100%);
}
.box-with-shadow.h-30::after {
  --shadow-height: 30%;
}
.box-with-shadow.h-50::after {
  --shadow-height: 50%;
}
.box-with-shadow.h-70::after {
  --shadow-height: 70%;
}
.box-with-shadow.mh-40::after {
  --shadow-max-height: 40px;
}
.box-with-shadow.sh-mh-100::after {
  --shadow-max-height: 100px;
}
.box-with-shadow.mh-150::after {
  --shadow-max-height: 150px;
}
.box-with-shadow.color-red::after {
  --shadow-color: #ff0000;
}
.box-with-shadow.color-blue::after {
  --shadow-color: #0000ff;
}
.box-with-shadow.color-green::after {
  --shadow-color: #00ff00;
}
.sr-card-data-row {
  font-weight: 400 !important;
  font-size: 8px;
  line-height: initial;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--dark-blue, #1f2a44);
}
.sr-card-data-row:has(lib-svg-icon) {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sr-card-data-row:has(.icon) > p {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sr-card-data-row .icon {
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
}
.sr-card-data-row .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--dark-blue, #1f2a44);
}
.sr-card-data-row .dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--dark-blue, #1f2a44);
  margin: 0 3px;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
  opacity: 0.7;
}
.sr-card-data-row .data-divider {
  font-weight: 400 !important;
  font-size: 8px !important;
  line-height: 1.2 !important;
  color: var(--dark-blue, #1f2a44);
  margin: 0 5px;
}
.sr-card-meta-data-row {
  text-transform: uppercase;
  cursor: pointer;
}
.sr-card-meta-data-row:has(.icon) {
  display: flex;
  align-items: center;
  gap: 5px;
}
.sr-card-meta-data-row .value {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.partnel-logo-sq-name {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.partnel-logo-sq-name img {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: contain;
}
.partnel-logo-sq-name span,
.partnel-logo-sq-name .name,
.partnel-logo-sq-name .partner-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: none;
}
flight-data-row-static .card-flight-info-portal.mobile .sr-card-data-row {
  line-height: 18px;
}
.mobile .sr-card-data-row {
  font-size: 8px;
}
.mobile .sr-card-meta-data-row .value {
  font-size: 10px;
}
.mobile .partnel-logo-sq-name {
  gap: 5px;
}
.mobile .partnel-logo-sq-name span,
.mobile .partnel-logo-sq-name .name,
.mobile .partnel-logo-sq-name .partner-name {
  font-size: 12px;
}
.avatar-stack {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.avatar-stack .avatar {
  position: relative;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d2125;
  line-height: 1;
  font-size: 14px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  background-color: #9fadbc;
  overflow: hidden;
  margin-left: -8px;
  border: 2px solid #fff;
}
.censore,
pm {
  background-color: var(--main-blue);
  display: inline-flex;
  padding: 0px 5px;
  border-radius: 14px;
  color: transparent;
}
.overflow-hidden {
  overflow: hidden !important;
}
.grey-info-text {
  font-size: 12px;
  line-height: 16px;
  color: #999;
}
.bold {
  font-weight: 600 !important;
}
input[type=file] {
  visibility: hidden;
  display: none;
}
.text-overflow {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: initial;
  min-width: 0;
}
.text-based-wrapper .docs-link {
  color: inherit;
  border-bottom: 1px solid #999;
  background-color: transparent;
  border-color: #999;
}
.annotation {
  color: var(--dark-blue, #1f2a44);
  font-size: 12px;
  letter-spacing: 0;
  line-height: 17px;
}
.massonry-labels-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0px auto 0px;
  align-content: baseline;
}
.price {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
}
.price p::first-letter {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.price sup {
  color: var(--dark-blue, #1f2a44);
  font-family: Lato;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 20px;
  vertical-align: baseline !important;
}
.transparent-text {
  color: transparent !important;
}
.pointer {
  cursor: pointer;
}
.massonry-label {
  display: inline-flex;
  cursor: pointer;
  border-radius: 20px;
  padding: 2px 10px;
  letter-spacing: 0;
  width: max-content;
  max-height: 26px;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  color: var(--dark-blue, #1f2a44);
  background: #f2f4f5;
  border-radius: 32px;
  font-style: normal;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: #090a0a;
  border: 1px solid transparent;
}
.massonry-label > * {
  cursor: pointer;
}
.massonry-label a {
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #090a0a;
}
.massonry-label:hover:not(.sr) {
  background-color: #ddd;
}
.massonry-label.checked,
.massonry-label.indeterminate {
  background-color: #000;
  transition: background-color 0.3s ease;
  color: #fff;
}
.massonry-label.checked a,
.massonry-label.indeterminate a {
  color: #fff;
}
.massonry-label.checked:hover,
.massonry-label.indeterminate:hover {
  background-color: #000;
  transition: background-color 0.3s ease;
  color: #fff;
}
.massonry-label.more {
  opacity: 0.7;
  background-color: #86ba71;
  color: #fff;
}
.massonry-label.button {
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 20px;
  border: 1px solid var(--main-blue) !important;
}
.massonry-label.button.skip {
  background-color: transparent;
  color: var(--dark-blue, #1f2a44);
}
.massonry-label.button:hover {
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 20px;
  border: 1px solid var(--main-blue) !important;
}
.massonry-label.black {
  background: #000;
  color: #fff;
  white-space: nowrap;
}
.massonry-label.black:hover {
  background: #000;
}
.massonry-label.dark-blue {
  background: #3970cf;
  color: #fff;
  white-space: nowrap;
}
.massonry-label.dark-blue:hover {
  background: #3970cf;
}
.massonry-label.pink {
  background-color: #ff5c5c;
  color: #fff;
}
.massonry-label.green {
  background-color: rgba(134, 186, 113, 0.7) !important;
  color: #fff !important;
  border-color: transparent !important;
}
.massonry-label.sm {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 14px;
}
#cookiescript_link,
#cookiescript_readmore {
  background-color: inherit !important;
}
#cookiescript_injected {
  border-radius: 14px !important;
}
#cookiescript_injected #cookiescript_manage_wrap {
  font-size: 14px;
  font-weight: 400;
}
#cookiescript_manage svg#cookiescript_manageicon {
  display: none;
}
[mobile-layout] #cookiescript_injected {
  top: calc(100% - (170px + env(safe-area-inset-bottom)));
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
img,
label,
legend,
table,
canvas,
footer,
header,
menu,
nav,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-weight: 400;
  text-rendering: optimizeLegibility;
}
ol,
ul {
  list-style: none;
}
ol.bullet-view,
ul.bullet-view {
  padding-left: 20px;
}
ol.bullet-view li,
ul.bullet-view li {
  list-style-type: disc;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
input {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
a {
  text-decoration: none;
}
@supports (scroll-margin-top: 54px) {
  * {
    scroll-margin-top: 54px;
  }
  :target:before {
    display: none;
  }
  @media (min-width: 992px) {
    * {
      scroll-margin-top: 100px;
    }
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  *:not(.play-icon) {
    border-width: 1px;
  }
  *:not(.play-icon) button {
    border-width: 1px !important;
  }
  *:not(.play-icon) button[type=button] {
    border-width: 1px !important;
  }
}
@media (-webkit-min-device-pixel-ratio: 3), (min-resolution: 288dpi) {
  .icon {
    font-size: 1.5rem;
  }
}
.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 1199px) {
  .container {
    min-width: 1150px;
  }
}
.mobile .container,
.ipad .container {
  min-width: 100%;
}
.cruise-itinerary-wrapper {
  font-size: 13px;
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 18px;
  margin-bottom: 5px;
  color: var(--dark-blue, #1f2a44);
}
.cruise-itinerary-wrapper .text-row {
  line-height: 13px;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-right: 5px;
  gap: 5px;
}
.cruise-itinerary-wrapper .text-row span {
  font-size: 10px;
}
.cruise-itinerary-wrapper b,
.cruise-itinerary-wrapper p.itinerary-title {
  line-height: 13px;
  display: inline-flex;
  margin-right: 3px;
}
.cruise-itinerary-wrapper p {
  white-space: normal;
}
.cruise-itinerary-wrapper .dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--dark-blue, #1f2a44);
  margin: 0 5px;
  flex-shrink: 0;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* node_modules/@angular/cdk/overlay-prebuilt.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
  z-index: 1000;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  opacity: 0;
  touch-action: manipulation;
  z-index: 1000;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (prefers-reduced-motion) {
  .cdk-overlay-backdrop {
    transition-duration: 1ms;
  }
}
.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media (forced-colors: active) {
  .cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing,
.cdk-high-contrast-active .cdk-overlay-transparent-backdrop {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
  z-index: 1000;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.cdk-overlay-popover {
  background: none;
  border: none;
  padding: 0;
  outline: 0;
  overflow: visible;
  position: fixed;
  pointer-events: none;
  white-space: normal;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  inset: auto;
  top: 0;
  left: 0;
}
.cdk-overlay-popover::backdrop {
  display: none;
}
.cdk-overlay-popover .cdk-overlay-backdrop {
  position: fixed;
  z-index: auto;
}

/* scss/common.scss */
button {
  cursor: pointer;
  outline: none;
  background: transparent;
  border: none;
}
a[target=_blank]:not(.default-link) :not(.clear-btn) :not(.clear-btn.bordered) :not(.docs-link) :not(.slider-item):not(.search-request-card):not(.origin-link) :not(.not-green) :not([href^="https://maps.google.com"]) {
  background-color: var(--main-green) !important;
  color: #fff !important;
  border-color: var(--main-green) !important;
}
.more-toggle-btn {
  display: flex;
  align-items: center;
  grid-gap: 10px;
  gap: 10px;
  border: none;
  color: var(--main-blue, #1668e3);
  line-height: 20px;
  letter-spacing: 0;
  position: relative;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
}
.more-toggle-btn .icon {
  width: 15px;
  height: 15px;
}
.more-toggle-btn .icon svg {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  fill: var(--main-blue, #1668e3);
  color: var(--main-blue, #1668e3);
}
.pill-btn {
  background-color: #e8e8e8;
  padding: 7px 10px;
  color: var(--dark-blue, #1f2a44);
  font-family: "Lato";
  font-size: 12px;
  line-height: 20px;
  border-radius: 14px;
  letter-spacing: 0;
  width: max-content;
  max-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.pill-btn.black {
  background-color: var(--black, #000000);
  color: var(--white, #ffffff);
}
.default-link {
  color: inherit;
  border-bottom: 1px solid #999;
  background-color: transparent;
  border-color: #999;
}
.default-link.no-border {
  border: none;
}
.close-btn-bg {
  width: 20px;
  height: 20px;
  background-image: url(https://content.agentpath.com/assets/images/svg-sprite/close.svg);
  background-size: 10px;
  background-size: 7px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: 50%;
  border: none;
}
.default-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.default-checkbox input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.default-checkbox label {
  font-size: 14px;
  line-height: normal;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.sort-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.radio-block {
  position: relative;
}
.radio-block input[type=radio] {
  position: absolute;
  left: -9999px;
}
.radio-block input[type=radio] + label {
  position: relative;
  padding-left: calc(24px + 10px);
  cursor: pointer;
  color: var(--dark-blue, #1f2a44);
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
}
.radio-block input[type=radio] + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #cdcfd0;
  background: #fff;
  border-radius: 50%;
}
.radio-block input[type=radio] + label:after {
  content: "";
  position: absolute;
  top: calc((24px - 8px) / 2);
  left: calc((24px - 8px) / 2);
  width: 8px;
  height: 8px;
  border: 1px solid transparent;
  background: #686868;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0;
  transform: scale(0);
}
.radio-block input[type=radio]:checked + label:before {
  background-color: var(--main-blue, #1668e3);
  border-color: var(--main-blue, #1668e3);
}
.radio-block input[type=radio]:checked + label:after {
  background: #fff;
  opacity: 1;
  transform: scale(1);
}
.shortlist-btn {
  cursor: pointer;
  position: relative;
  background-color: rgba(255, 255, 255, 0.1490196078);
  border-radius: 50%;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ddd;
}
.shortlist-btn .icon svg {
  width: 100%;
  height: 100%;
}
.shortlist-btn lib-svg-icon {
  width: 25px;
  height: 25px;
}
.shortlist-btn.small {
  width: 37px;
  height: 37px;
}
.shortlist-btn.no-border {
  border: none;
}
.shortlist-btn:hover {
  cursor: pointer;
}
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-blue);
  border: 1px solid var(--main-blue);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn:hover,
.cta-btn:focus,
.cta-btn:active {
  background-color: var(--main-blue);
}
.cta-btn_small,
.cta-btn.small,
.cta-btn.sm {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-blue);
  border: 1px solid var(--main-blue);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 18px;
  max-width: none;
}
@media screen and (max-width: 365px) {
  .cta-btn_small,
  .cta-btn.small,
  .cta-btn.sm {
    font-size: 12px;
    line-height: 1.2;
  }
}
.cta-btn_small:hover,
.cta-btn_small:focus,
.cta-btn_small:active,
.cta-btn.small:hover,
.cta-btn.small:focus,
.cta-btn.small:active,
.cta-btn.sm:hover,
.cta-btn.sm:focus,
.cta-btn.sm:active {
  background-color: var(--main-blue);
}
.cta-btn_medium,
.cta-btn.medium,
.cta-btn.md {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-blue);
  border: 1px solid var(--main-blue);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 7px 20px;
  max-width: 200px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn_medium,
  .cta-btn.medium,
  .cta-btn.md {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn_medium:hover,
.cta-btn_medium:focus,
.cta-btn_medium:active,
.cta-btn.medium:hover,
.cta-btn.medium:focus,
.cta-btn.medium:active,
.cta-btn.md:hover,
.cta-btn.md:focus,
.cta-btn.md:active {
  background-color: var(--main-blue);
}
.cta-btn.full {
  max-width: 100% !important;
  width: 100% !important;
}
.cta-btn.disabled,
.cta-btn:disabled,
.cta-btn[disabled] {
  opacity: 0.5;
}
.cta-btn.black {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--black, #000000);
  border: 1px solid var(--black, #000000);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.black {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.black:hover,
.cta-btn.black:focus,
.cta-btn.black:active {
  background-color: var(--black, #000000);
}
.cta-btn.black_small,
.cta-btn.black.small,
.cta-btn.black.sm {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--black, #000000);
  border: 1px solid var(--black, #000000);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 18px;
  max-width: none;
}
@media screen and (max-width: 365px) {
  .cta-btn.black_small,
  .cta-btn.black.small,
  .cta-btn.black.sm {
    font-size: 12px;
    line-height: 1.2;
  }
}
.cta-btn.black_small:hover,
.cta-btn.black_small:focus,
.cta-btn.black_small:active,
.cta-btn.black.small:hover,
.cta-btn.black.small:focus,
.cta-btn.black.small:active,
.cta-btn.black.sm:hover,
.cta-btn.black.sm:focus,
.cta-btn.black.sm:active {
  background-color: var(--black, #000000);
}
.cta-btn.black_medium,
.cta-btn.black.medium,
.cta-btn.black.md {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--black, #000000);
  border: 1px solid var(--black, #000000);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 7px 20px;
  max-width: 200px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.black_medium,
  .cta-btn.black.medium,
  .cta-btn.black.md {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.black_medium:hover,
.cta-btn.black_medium:focus,
.cta-btn.black_medium:active,
.cta-btn.black.medium:hover,
.cta-btn.black.medium:focus,
.cta-btn.black.medium:active,
.cta-btn.black.md:hover,
.cta-btn.black.md:focus,
.cta-btn.black.md:active {
  background-color: var(--black, #000000);
}
.cta-btn.dark-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--dark-blue, #1f2a44);
  border: 1px solid var(--dark-blue, #1f2a44);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.dark-blue {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.dark-blue:hover,
.cta-btn.dark-blue:focus,
.cta-btn.dark-blue:active {
  background-color: var(--dark-blue, #1f2a44);
}
.cta-btn.medium-blue {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-blue-darker);
  border: 1px solid var(--main-blue-darker);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.medium-blue {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.medium-blue:hover,
.cta-btn.medium-blue:focus,
.cta-btn.medium-blue:active {
  background-color: var(--main-blue-darker);
}
.cta-btn.blue-opacity {
  background-color: rgba(32, 136, 250, 0.7);
  color: #fff;
  border-color: rgba(32, 136, 250, 0.7) !important;
}
.cta-btn.blue-opacity:hover {
  background-color: rgba(32, 136, 250, 0.7) !important;
  color: #fff;
  border-color: rgba(32, 136, 250, 0.7) !important;
}
.cta-btn.green {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-green);
  border: 1px solid var(--main-green);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.green {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.green:hover,
.cta-btn.green:focus,
.cta-btn.green:active {
  background-color: var(--main-green);
}
.cta-btn.green-opacity {
  background-color: rgba(47, 192, 90, 0.7);
  color: #fff;
  border-color: rgba(47, 192, 90, 0.7) !important;
}
.cta-btn.green-opacity:hover {
  background-color: rgba(47, 192, 90, 0.7) !important;
  color: #fff;
  border-color: rgba(47, 192, 90, 0.7) !important;
}
.cta-btn.green-outline {
  border-color: var(--border-color) !important;
  color: var(--main-green);
  background-color: #fff;
}
.cta-btn.green-outline:hover {
  border-color: var(--border-color) !important;
  color: var(--main-green);
  background-color: #fff;
}
.cta-btn.light-blue {
  background-color: #5685d6;
  border: 1px solid #5685d6 !important;
}
.cta-btn.light-blue:hover {
  background-color: #5685d6;
  border: 1px solid #5685d6 !important;
}
.cta-btn.red {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-red, #e82a00);
  border: 1px solid var(--main-red, #e82a00);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.red {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.red:hover,
.cta-btn.red:focus,
.cta-btn.red:active {
  background-color: var(--main-red, #e82a00);
}
.cta-btn.red_small,
.cta-btn.red.small,
.cta-btn.red.sm {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-red, #e82a00);
  border: 1px solid var(--main-red, #e82a00);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 18px;
  max-width: none;
}
@media screen and (max-width: 365px) {
  .cta-btn.red_small,
  .cta-btn.red.small,
  .cta-btn.red.sm {
    font-size: 12px;
    line-height: 1.2;
  }
}
.cta-btn.red_small:hover,
.cta-btn.red_small:focus,
.cta-btn.red_small:active,
.cta-btn.red.small:hover,
.cta-btn.red.small:focus,
.cta-btn.red.small:active,
.cta-btn.red.sm:hover,
.cta-btn.red.sm:focus,
.cta-btn.red.sm:active {
  background-color: var(--main-red, #e82a00);
}
.cta-btn.red_medium,
.cta-btn.red.medium,
.cta-btn.red.md {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-red, #e82a00);
  border: 1px solid var(--main-red, #e82a00);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 7px 20px;
  max-width: 200px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.red_medium,
  .cta-btn.red.medium,
  .cta-btn.red.md {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.red_medium:hover,
.cta-btn.red_medium:focus,
.cta-btn.red_medium:active,
.cta-btn.red.medium:hover,
.cta-btn.red.medium:focus,
.cta-btn.red.medium:active,
.cta-btn.red.md:hover,
.cta-btn.red.md:focus,
.cta-btn.red.md:active {
  background-color: var(--main-red, #e82a00);
}
.cta-btn.main-red {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-color, #e73e45);
  border: 1px solid var(--main-color, #e73e45);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 15px 25px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.main-red {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.main-red:hover,
.cta-btn.main-red:focus,
.cta-btn.main-red:active {
  background-color: var(--main-color, #e73e45);
}
.cta-btn.main-red_small,
.cta-btn.main-red.small,
.cta-btn.main-red.sm {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-color, #e73e45);
  border: 1px solid var(--main-color, #e73e45);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 18px;
  max-width: none;
}
@media screen and (max-width: 365px) {
  .cta-btn.main-red_small,
  .cta-btn.main-red.small,
  .cta-btn.main-red.sm {
    font-size: 12px;
    line-height: 1.2;
  }
}
.cta-btn.main-red_small:hover,
.cta-btn.main-red_small:focus,
.cta-btn.main-red_small:active,
.cta-btn.main-red.small:hover,
.cta-btn.main-red.small:focus,
.cta-btn.main-red.small:active,
.cta-btn.main-red.sm:hover,
.cta-btn.main-red.sm:focus,
.cta-btn.main-red.sm:active {
  background-color: var(--main-color, #e73e45);
}
.cta-btn.main-red_medium,
.cta-btn.main-red.medium,
.cta-btn.main-red.md {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  background-color: var(--main-color, #e73e45);
  border: 1px solid var(--main-color, #e73e45);
  border-radius: 35px;
  font-weight: 700;
  cursor: pointer;
  color: white;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  padding: 7px 20px;
  max-width: 200px;
  line-height: 20px;
}
@media screen and (max-width: 365px) {
  .cta-btn.main-red_medium,
  .cta-btn.main-red.medium,
  .cta-btn.main-red.md {
    font-size: 14px;
    line-height: 1.2;
  }
}
.cta-btn.main-red_medium:hover,
.cta-btn.main-red_medium:focus,
.cta-btn.main-red_medium:active,
.cta-btn.main-red.medium:hover,
.cta-btn.main-red.medium:focus,
.cta-btn.main-red.medium:active,
.cta-btn.main-red.md:hover,
.cta-btn.main-red.md:focus,
.cta-btn.main-red.md:active {
  background-color: var(--main-color, #e73e45);
}
.cta-btn.dark-orange {
  background-color: var(--dark-orange);
  transition: background-color 0.3s ease;
  border-color: var(--dark-orange) !important;
}
.cta-btn.dark-orange:hover {
  background-color: rgb(252.7548076923, 52.9326923077, 23.7451923077) !important;
  transition: background-color 0.3s ease !important;
}
.cta-btn.white {
  background-color: #fff;
  color: var(--dark-blue);
}
.cta-btn.white:hover {
  background-color: #fff !important;
  color: var(--dark-blue);
}
.cta-btn.white-outline {
  background-color: #000;
  border: 1px solid white;
  min-width: 200px;
}
.cta-btn.white-outline:hover {
  background-color: rgb(242.25, 242.25, 242.25) !important;
  transition: background-color 0.3s ease !important;
  color: #000;
}
.cta-btn.white-outline.no-hover:hover {
  background-color: #000 !important;
  border: 1px solid white;
  color: #fff;
  transition: background-color 0.3s ease !important;
}
.cta-btn.red-outline {
  background-color: var(--main-red);
  border: 1px solid var(--main-red);
  min-width: 200px;
}
.cta-btn.red-outline:hover {
  background-color: rgb(229.5, 0, 0) !important;
  transition: background-color 0.3s ease !important;
  color: #fff;
}
.cta-btn.red-outline.no-hover:hover {
  background-color: var(--main-red) !important;
  border: 1px solid var(--main-red);
  color: #fff;
  transition: background-color 0.3s ease !important;
}
.cta-btn.blue-outline {
  background-color: transparent;
  border: 1px solid #3970cf;
  min-width: 200px;
  color: #3970cf;
}
.cta-btn.blue-outline:hover {
  background-color: transparent !important;
  transition: background-color 0.3s ease !important;
  color: #3970cf;
}
.cta-btn.blue-outline.no-hover:hover {
  background-color: var(--main-red) !important;
  border: 1px solid var(--main-red);
  color: #fff;
  transition: background-color 0.3s ease !important;
}
.cta-btn.mint {
  background-color: var(--mint-alpha);
  border: 1px solid var(--mint-alpha);
  color: white;
}
.cta-btn.mint:hover {
  background-color: var(--mint) !important;
  border: 1px solid var(--mint-alpha);
  color: white;
}
.cta-btn.yellow {
  background-color: var(--yellow-alpha);
  border: 1px solid var(--yellow-alpha);
  color: white;
}
.cta-btn.yellow:hover {
  background-color: var(--yellow) !important;
  border: 1px solid var(--yellow-alpha);
  color: white;
}
.cta-btn:has(.icon),
.cta-btn:has(lib-svg-icon) {
  gap: 10px;
  align-items: center;
}
.cta-btn .text {
  width: 100%;
  text-align: center;
}
.cta-btn.icon {
  position: relative;
}
.cta-btn.icon-left {
  padding-left: 35px;
}
.cta-btn.icon-left .icon,
.cta-btn.icon-left lib-svg-icon {
  position: absolute;
  left: 15px;
}
.cta-btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  outline: none;
  background-color: #fff;
  color: var(--main-blue);
  width: 100%;
  padding: 15px 25px;
  border-radius: 35px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  cursor: pointer;
  border: 1px solid var(--main-blue);
  position: relative;
}
.cta-btn-outline .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-btn-outline .icon.absolute {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.cta-btn-outline .icon svg {
  width: 100%;
  height: 100%;
}
.cta-btn-outline.middle,
.cta-btn-outline.md {
  color: var(--main-blue);
  background-color: #fff;
  border-color: var(--main-blue) !important;
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  width: auto;
  margin: 0;
  padding: 7px 20px;
}
.cta-btn-outline.small,
.cta-btn-outline.sm {
  padding: 5px 15px;
  line-height: 18px;
  font-size: 14px;
}
.cta-btn-outline.extra-small {
  display: flex;
  max-width: 130px;
  justify-content: center;
  width: 100%;
  margin: 5px auto;
  padding: 5px;
  background-color: #fff;
  border-radius: 35px;
  font-size: 14px;
}
.cta-btn-outline.red {
  color: var(--main-red);
  border-color: var(--main-red);
}
.cta-btn-outline.red:hover {
  color: var(--main-red);
  border-color: var(--main-red) !important;
  background: transparent;
}
.cta-btn-outline.white {
  color: var(--white);
  border-color: var(--white) !important;
  background: transparent;
}
.cta-btn-outline.white:hover {
  color: var(--white);
  border-color: var(--white) !important;
  background: transparent;
}
.cta-btn-outline.grey {
  border-color: rgb(200, 200, 200) !important;
  color: var(--dark-blue, #1f2a44);
}
.cta-btn-outline.black {
  color: var(--black);
  border-color: var(--black) !important;
  background: transparent;
}
.cta-btn-outline.black:hover {
  color: var(--black);
  border-color: var(--black) !important;
  background: transparent;
}
.cta-btn-outline.dark-blue {
  color: var(--dark-blue, #1f2a44);
  border-color: var(--dark-blue, #1f2a44) !important;
  background: transparent;
}
.cta-btn-outline.dark-blue:hover {
  color: var(--dark-blue, #1f2a44);
  border-color: var(--dark-blue, #1f2a44) !important;
  background: transparent;
}
.cta-btn-outline.green {
  background-color: white;
  border-color: var(--main-green);
  color: var(--main-green);
}
.cta-btn-outline.green.solid-green {
  border-color: var(--main-green);
  color: var(--main-green);
}
.cta-btn-outline.green:active,
.cta-btn-outline.green:focus,
.cta-btn-outline.green:hover {
  color: var(--main-green) !important;
  border-color: var(--main-green) !important;
}
.cta-btn-outline.text {
  background-color: transparent;
  border-color: transparent;
  color: var(--main-blue);
}
.cta-btn-outline.text:active,
.cta-btn-outline.text:focus,
.cta-btn-outline.text:hover {
  color: var(--main-blue) !important;
  border-color: transparent !important;
}
.cta-btn-outline.circle {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  padding: 0;
  border-color: var(--main-blue);
}
.cta-btn-outline.circle.md {
  width: 50px;
  height: 50px;
}
.cta-btn-outline.square {
  border-radius: 8px;
}
.cta-btn-outline.square.black {
  border-color: var(--dark-blue);
  color: var(--dark-blue);
}
.cta-btn-outline.media.chat {
  background-color: rgba(47, 192, 90, 0.7);
  border-color: rgba(47, 192, 90, 0.7);
}
.cta-btn-outline.media.call {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
}
.cta-btn-outline.media.video {
  background-color: rgba(32, 136, 250, 0.7);
  border-color: rgba(32, 136, 250, 0.7) !important;
}
.cta-btn-outline.media.white {
  background-color: #fff;
  border: 1px solid white;
}
.cta-btn-outline.media.black {
  border: 1px solid var(--black-alpha);
  color: var(--black-alpha);
  background-color: var(--black-alpha);
}
.cta-btn-outline.media.blue {
  border-color: var(--cruise-element-color-alpha);
  background-color: var(--cruise-element-color-alpha);
}
.cta-btn-outline.media.green {
  background-color: var(--ski-element-color-alpha);
  border: 1px solid var(--ski-element-color-alpha);
}
.cta-btn-outline.media.olive-green {
  background-color: var(--holiday-element-color-alpha);
  border: 1px solid var(--holiday-element-color-alpha);
}
.cta-btn-outline.media.orange {
  background-color: var(--orange-alpha);
  border: 1px solid var(--orange-alpha);
}
.cta-btn-outline.media.yellow {
  background-color: var(--yellow-alpha);
  border: 1px solid var(--yellow-alpha);
}
.cta-btn-outline.media.mint {
  background-color: var(--mint-alpha);
  border: 1px solid var(--mint-alpha);
}
.cta-btn-outline.transparent:not(.white) {
  color: var(--dark-blue) !important;
  border-color: transparent !important;
  background: transparent !important;
}
.cta-btn-outline.transparent:not(.white):hover {
  color: var(--dark-blue) !important;
  border-color: transparent !important;
  background: transparent !important;
}
.cta-btn-outline.disabled,
.cta-btn-outline:disabled,
.cta-btn-outline[disabled] {
  background-color: #fff;
  color: var(--dark-blue, #1f2a44);
  border-color: var(--grey);
}
.cta-btn-outline.icon {
  position: relative;
}
.cta-btn-outline.icon-left .icon,
.cta-btn-outline.icon-left lib-svg-icon {
  position: absolute;
  left: 15px;
}
.cta-btn-square {
  width: 100px;
  height: 100px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--dark-blue, #1f2a44);
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  border: none;
  padding: 15px;
}
.cta-btn-square.md {
  width: 75px;
  height: 75px;
}
.cta-btn-square.icon {
  flex-direction: column;
}
.cta-btn-square.icon .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.cta-btn-square.icon .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--dark-blue, #1f2a44);
}
.clear-btn {
  letter-spacing: 0;
  position: relative;
  border: none;
  background: transparent;
  width: max-content;
  cursor: pointer;
  color: var(--dark-blue, #1f2a44);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.clear-btn.blue {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  text-align: right;
  border: none;
  color: var(--main-blue);
}
.clear-btn.white {
  color: white;
}
.clear-btn.white.bordered {
  border-bottom: 1px solid white !important;
}
.clear-btn.danger {
  color: #aa2e25;
}
.clear-btn.warning {
  color: #b2a429;
}
.clear-btn.bordered {
  border-bottom: 1px solid currentColor;
  font-weight: 400;
  padding-bottom: 3px;
}
.clear-btn:disabled,
.clear-btn.disabled {
  color: #635f5f;
}
.clear-btn:has(.icon),
.clear-btn:has(lib-svg-icon) {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
}
.clear-btn:has(.icon) .icon,
.clear-btn:has(lib-svg-icon) .icon {
  width: 10px;
  height: 10px;
  display: inline-flex;
}
.toggle-more-btn {
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 3px;
  color: rgb(31, 42, 68);
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgb(31, 42, 68);
  cursor: pointer;
  width: max-content;
  line-height: 1.2;
}
.toggle-more-btn span {
  display: block;
  margin-right: 10px;
  border-bottom: 1px solid #000;
}
.toggle-more-btn svg {
  width: 14px;
  display: inline-flex;
}
.load-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: transparent;
  color: var(--dark-blue, #1f2a44);
  border: 1px solid rgb(200, 200, 200);
  padding: 10px 15px;
  min-height: auto;
  font-size: 14px;
  font-weight: 700;
  width: 170px;
  line-height: 1.2;
  outline: none;
  border-radius: 35px;
  cursor: pointer;
  position: relative;
}
.load-more-btn:has(.btn-icon) {
  display: inline-grid;
  place-items: center;
  grid-template-areas: "content";
}
.load-more-btn .btn-content {
  grid-area: content;
  visibility: visible;
  transition: visibility 0s linear 0.2s;
}
.load-more-btn .btn-icon {
  visibility: hidden;
}
.load-more-btn.loading .btn-text {
  visibility: hidden;
  transition-delay: 0s;
}
.load-more-btn.loading .btn-icon {
  visibility: visible;
  transition-delay: 0s;
}
.load-more-btn .reload {
  width: 17px;
  height: 17px;
  margin: 0 10px;
  color: currentColor;
  flex-shrink: 0;
  animation: spin 0.75s linear infinite;
}
.load-more-btn .reload svg {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  fill: currentColor;
}
.load-more-btn span {
  line-height: 17px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-blue, #1f2a44);
}
@media screen and (max-width: 575px) {
  .custom-checkbox {
    display: flex;
    align-items: center;
    padding-bottom: 0px;
  }
}
.custom-checkbox.green input {
  --active: var(--main-green);
}
.custom-checkbox.green input:checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: 0.3s;
  --d-t: 0.6s;
  --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  --ab: var(--active-inner);
  --x: 23px;
}
.custom-checkbox.green input:after {
  content: "";
  display: block;
  position: absolute;
  transition:
    transform var(--d-t, 0.3s) var(--d-t-e, ease),
    opacity var(--d-o, 0.2s),
    -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  left: 2px;
  top: 1px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: var(--ab, var(--border));
  transform: translateX(var(--x, 0));
}
.custom-checkbox input {
  min-width: 38px;
  width: 56px;
  height: 32px;
  border-radius: 32px;
  --active: var(--main-blue);
  --active-inner: #fff;
  --focus: 2px rgba(39, 94, 254, 0.3);
  --border: #bbc1e1;
  --border-hover: #ccc;
  --background: transparent;
  --disabled: #f6f8ff;
  --disabled-inner: #e1e6f9;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 0;
  cursor: pointer;
  border: 1px solid var(--bc, var(--border));
  background: var(--b, var(--background));
  transition:
    background 0.3s,
    border-color 0.3s,
    box-shadow 0.2s;
  flex-shrink: 0;
}
.custom-checkbox input:checked {
  --b: var(--active);
  --bc: var(--active);
  --d-o: 0.3s;
  --d-t: 0.6s;
  --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  --ab: var(--active-inner);
  --x: 23px;
  border: 1px solid var(--bc, var(--border));
}
.custom-checkbox input:after {
  content: "";
  display: block;
  position: absolute;
  transition:
    transform var(--d-t, 0.3s) var(--d-t-e, ease),
    opacity var(--d-o, 0.2s),
    -webkit-transform var(--d-t, 0.3s) var(--d-t-e, ease);
  left: 2px;
  top: 1px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background: var(--ab, var(--border));
  transform: translateX(var(--x, 0));
}
.custom-checkbox label {
  font-size: 14px;
  line-height: normal;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.custom-checkbox.with-subtitle {
  align-items: center;
}
.custom-checkbox.with-subtitle .title {
  color: var(--dark-blue, #1f2a44);
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  width: 100%;
  overflow: initial !important;
  white-space: initial !important;
  text-overflow: initial !important;
}
.custom-checkbox.with-subtitle .subtitle {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-blue, #1f2a44);
  font-weight: 400;
}
.custom-checkbox.with-subtitle label,
.custom-checkbox.with-subtitle .label {
  overflow: initial !important;
  white-space: initial !important;
  text-overflow: initial !important;
}
.copy-invite-link-btn {
  background-color: var(--main-blue);
  color: #fff;
  border-radius: 4px;
  border: 1px solid var(--main-blue);
  padding: 3px 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: initial;
  -webkit-user-select: none;
  user-select: none;
  min-width: 55px;
}
.copy-invite-link-btn svg {
  fill: #6eb533;
}
.input-block {
  position: relative;
  padding: 15px 21px;
  border: 1px solid var(--border-color, silver);
  cursor: pointer;
}
.input-block.single {
  border-radius: var(--border-radius, 3px);
}
.input-block label,
.input-block .label {
  font-size: 12px;
  line-height: 12px;
  color: #72777a;
  display: flex;
  align-items: center;
}
.input-block input,
.input-block .value {
  width: 100%;
  color: var(--text-color, #1f2a44);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background: transparent;
  border: none;
  opacity: 1;
  min-height: 20px;
  border-radius: var(--border-radius);
}
.input-block input::placeholder,
.input-block .value::placeholder {
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 500;
  color: rgba(31, 42, 68, 0.5);
}
.input-block input:read-only::placeholder,
.input-block input:disabled::placeholder,
.input-block .value:read-only::placeholder,
.input-block .value:disabled::placeholder {
  color: rgba(31, 42, 68, 0.5);
  font-size: 16px;
  font-weight: 500;
}
.custom-checkbox-square,
.custom-checkbox-circle {
  display: flex;
  align-items: center;
  margin-top: 10px;
  width: 100%;
}
.custom-checkbox-square:first-child,
.custom-checkbox-circle:first-child {
  margin-top: 0;
}
.custom-checkbox-square label,
.custom-checkbox-circle label {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: var(--checkbox-text-color);
  letter-spacing: 0;
  padding-left: 35px;
  position: relative;
  cursor: pointer;
  height: 24px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  min-width: 0px;
  display: inline-flex;
  line-height: 24px;
}
.custom-checkbox-square label:after,
.custom-checkbox-circle label:after {
  content: "";
  height: 24px;
  width: 24px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius, 3px);
  position: absolute;
  top: 0;
  left: 0;
}
.custom-checkbox-square label span,
.custom-checkbox-circle label span {
  max-width: 190px;
  display: inline-flex;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.custom-checkbox-square label .icon,
.custom-checkbox-circle label .icon {
  display: flex;
}
.custom-checkbox-square input,
.custom-checkbox-circle input {
  margin-right: 9px;
  outline: none;
  display: inline-block;
  vertical-align: top;
  position: absolute;
  margin: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  visibility: hidden;
}
.custom-checkbox-square input:checked ~ label:before,
.custom-checkbox-square input.checked ~ label:before,
.custom-checkbox-circle input:checked ~ label:before,
.custom-checkbox-circle input.checked ~ label:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow:
    2px 0 0 white,
    4px 0 0 white,
    4px -2px 0 white,
    4px -4px 0 white,
    4px -6px 0 white,
    4px -8px 0 white;
  transform: rotate(45deg);
  border: 1.3px solid white;
  z-index: 1;
}
.custom-checkbox-square input:checked ~ label:after,
.custom-checkbox-square input.checked ~ label:after,
.custom-checkbox-circle input:checked ~ label:after,
.custom-checkbox-circle input.checked ~ label:after {
  content: "";
  background-color: var(--main-blue, #1668e3);
  border-color: var(--main-blue, #1668e3);
}
.custom-checkbox-square.with-subtitle label,
.custom-checkbox-square.with-subtitle .label,
.custom-checkbox-circle.with-subtitle label,
.custom-checkbox-circle.with-subtitle .label {
  white-space: normal;
  text-overflow: inherit;
  overflow: inherit;
  height: 100%;
}
.custom-checkbox-square.with-subtitle label .label-title,
.custom-checkbox-square.with-subtitle .label .label-title,
.custom-checkbox-circle.with-subtitle label .label-title,
.custom-checkbox-circle.with-subtitle .label .label-title {
  color: var(--dark-blue, #1f2a44);
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  position: relative;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.custom-checkbox-square.with-subtitle label .label-subtitle,
.custom-checkbox-square.with-subtitle .label .label-subtitle,
.custom-checkbox-circle.with-subtitle label .label-subtitle,
.custom-checkbox-circle.with-subtitle .label .label-subtitle {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-blue, #1f2a44);
  font-weight: 400;
}
.custom-checkbox-square.checked label:before,
.custom-checkbox-circle.checked label:before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow:
    2px 0 0 white,
    4px 0 0 white,
    4px -2px 0 white,
    4px -4px 0 white,
    4px -6px 0 white,
    4px -8px 0 white;
  transform: rotate(45deg);
  border: 1.3px solid white;
  z-index: 1;
}
.custom-checkbox-square.checked label:after,
.custom-checkbox-circle.checked label:after {
  content: "";
  background-color: var(--main-blue, #1668e3);
  border-color: var(--main-blue, #1668e3);
}
.custom-checkbox-circle label:after {
  border-radius: 50%;
}
.custom-checkbox-circle input:checked ~ label:before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  background: white;
  width: 8px;
  height: 8px;
  z-index: 1;
  border-radius: 50%;
  box-shadow: none;
  border: none;
  transform: none;
}
.default-btn-stroke {
  border: 1px solid var(--main-blue);
  color: var(--main-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  outline: none;
  padding: 16px 25px;
  border-radius: 35px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  max-width: 208px;
  cursor: pointer;
  background: rgba(32, 136, 250, 0.1);
}
.default-btn-stroke:hover,
.default-btn-stroke.active {
  background: rgba(0, 107, 224, 0.1);
  border: 1px solid #006be0;
  color: #006be0;
}
.default-btn-stroke.disabled,
.default-btn-stroke[disabled],
.default-btn-stroke:disabled {
  color: #cdcfd0;
  border: 1px solid #cdcfd0;
  background-color: #fff;
}
.default-btn-stroke p::first-letter {
  text-transform: capitalize;
}
.default-btn-stroke.middle {
  padding: 11px 15px;
}
.default-btn-stroke.white-bg {
  background-color: #fff !important;
}
.default-btn-stroke.sm {
  margin-top: 5px;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  border-radius: 20px;
  background-color: white;
  padding: 1px 8px;
  transition: background-color 0.2s ease;
  max-width: max-content;
}
.default-btn-stroke.sm:hover {
  color: white;
  background-color: var(--main-blue);
  border-color: var(--main-blue);
}
.default-btn-stroke.sm.filled {
  color: white;
  background-color: var(--main-blue);
  border-color: var(--main-blue);
}
.default-btn-stroke.md {
  max-width: 190px;
  min-width: 100px;
  padding: 11px 15px;
}
.default-btn-stroke.md:disabled .icon svg,
.default-btn-stroke.md.disabled .icon svg {
  fill: #cdcfd0;
}
.default-btn-stroke.filled-sm {
  padding: 5px 25px;
  border-radius: 35px;
  font-size: 14px;
  line-height: 16px;
  background: rgba(32, 136, 250, 0.1);
}
.default-btn-stroke.circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  flex-shrink: 0;
  min-width: 35px;
}
.default-btn-stroke.circle.md {
  width: 50px;
  height: 50px;
}
.default-btn-stroke .icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.default-btn-stroke .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--main-blue);
}
.default-btn-stroke .text {
  text-align: center;
  width: 100%;
}
.default-btn-stroke.black {
  background-color: black;
  color: white;
  border-color: black;
}
.default-btn-stroke.white {
  border-color: #fff;
  color: #fff;
}
.default-btn-stroke.white-bg {
  background-color: #fff !important;
}
.default-btn-stroke-dark {
  padding: 5px 25px;
  border-color: #ddd;
  background-color: white;
  color: var(--dark-blue, #1f2a44);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid #ddd;
  border-radius: 48px;
  cursor: pointer;
}
.default-btn-stroke-dark .icon {
  display: none;
}
.default-btn-stroke-dark:before {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
.default-btn-stroke-dark:hover,
.default-btn-stroke-dark.active {
  border-color: var(--dark-blue, #1f2a44);
  color: var(--dark-blue, #1f2a44);
  background-color: #fff;
  font-weight: 700;
}
.default-btn-stroke-dark.disabled,
.default-btn-stroke-dark:disabled {
  border: 1px solid #cdcfd0;
  box-sizing: border-box;
  border-radius: 48px;
  color: #cdcfd0;
}
a[href^="tel:"] {
  color: black;
}
.user-info {
  display: grid;
  grid-template-columns: 100px 1fr;
  grid-gap: 15px;
  position: relative;
  width: 100%;
}
.user-info img {
  border-radius: 50%;
  height: 100px;
}
.user-info .is-online {
  position: absolute;
  top: 0px;
  right: 35px;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 2px 7px;
  color: #ffffff;
  font-family: "Lato";
  font-size: 14px;
  letter-spacing: 0;
  line-height: 21px;
  border-radius: 3px;
  background-color: #12ce66;
  color: #ffffff;
  font-family: "Lato";
  font-size: 12px;
  letter-spacing: 0;
  line-height: 17px;
  width: max-content;
}
.user-info .is-online .dot {
  width: 7px;
  height: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  background-color: #fff;
  border-radius: 50%;
}
.user-info .is-online.chat-open {
  top: 0px;
  right: 35px;
}
.user-name {
  display: flex;
  flex-direction: column;
}
.user-name .job-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  font-size: 12px !important;
}
.user-name > div:not(.name) {
  color: var(--dark-blue, #1f2a44);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  margin-bottom: 5px;
}
.user-name > div:not(.name) a {
  color: #000;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  text-decoration: none;
}
.user-name img {
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 7px;
  margin-top: 7px;
  display: block;
  width: 150px;
  max-height: 35px;
  object-fit: cover;
}
.corcierge-image-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: left;
  background: white;
  border: none;
  cursor: pointer;
  box-shadow:
    0 0.3px 0.4px rgba(20, 21, 26, 0.0196078431),
    0 0.9px 1.5px rgba(20, 21, 26, 0.0431372549),
    0 3.5px 6px rgba(20, 21, 26, 0.0901960784);
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  flex: 0 1 calc(clamp(33%, 190px, 50%) - 8px);
}
.corcierge-image-card.ipad {
  flex: 0 1 calc(clamp(33%, 190px, 50%) - 10px);
}
.corcierge-image-card.mobile {
  flex: 0 1 calc(50% - 9px);
  margin: 0;
}
.corcierge-image-card.mobile .image {
  flex: 0 1 120px;
}
.corcierge-image-card.mobile .image img {
  height: 120px;
}
@media screen and (max-width: 400px) {
  .corcierge-image-card.mobile .image {
    flex: 0 1 100px;
  }
  .corcierge-image-card.mobile .image img {
    height: 100px;
  }
  .corcierge-image-card.mobile .corner {
    border-width: 50px;
  }
  .corcierge-image-card.mobile .tick-icon {
    top: 10px;
    right: 7px;
    width: 12px;
    height: 12px;
  }
}
.corcierge-image-card .image {
  flex: 0 1 150px;
}
.corcierge-image-card .image img {
  border-radius: 4px 4px 0 0;
  object-fit: cover;
  height: 150px;
}
.corcierge-image-card .text {
  padding: 15px 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue, #1f2a44);
  margin-bottom: auto;
}
.corcierge-image-card .text .title {
  line-height: 22px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.corcierge-image-card .corner {
  width: 0;
  height: 0;
  border-top: 70px solid var(--main-blue);
  border-bottom: 70px solid transparent;
  border-left: 70px solid transparent;
  position: absolute;
  top: 0;
  right: 0;
}
.corcierge-image-card .tick-icon {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 15px;
  display: none;
}
.corcierge-image-card .tick-icon svg {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  fill: white;
}
.corcierge-image-card.without-image {
  height: 202px;
}
.corcierge-image-card.without-image.mobile {
  height: auto;
  flex: 0 1 100%;
}
.corcierge-image-card.without-image.active {
  position: relative;
}
.corcierge-image-card.without-image.active::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.02);
  position: absolute;
  top: 0;
  left: 0;
}
.corcierge-image-card.without-image .icon {
  width: 35px;
  height: 35px;
  margin: 15px 15px 0;
  color: var(--dark-blue, #1f2a44);
}
.corcierge-image-card.without-image .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--dark-blue, #1f2a44);
}
.corcierge-image-card.without-image .text {
  padding: 15px;
}
.corcierge-image-card.without-image .text .title {
  line-height: 22px;
  font-size: 16px;
  margin-bottom: 10px;
}
.corcierge-image-card.without-image .text .small-text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.corcierge-image-card.active {
  box-shadow:
    0 0.3px 0.4px hsla(230, 13%, 9%, 0.02),
    0 0.9px 1.5px hsla(230, 13%, 9%, 0.045),
    0 3.5px 6px hsla(230, 13%, 9%, 0.09),
    0 0 0 2px hsl(211, 96%, 55%);
}
.corcierge-image-card.active .corner,
.corcierge-image-card.active .tick-icon {
  display: block;
}
.corcierge-image-card.active .image {
  position: relative;
}
.corcierge-image-card.active .image::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.corcierge-image-card.row {
  display: flex;
  flex-direction: row;
  background: white;
  border: 1px solid var(--border-color);
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  padding: 5px 10px 5px 5px;
  gap: 10px;
  align-items: center;
  box-shadow: none;
  flex: none;
  width: 100%;
}
.corcierge-image-card.row.active {
  border: 1px solid var(--main-blue) !important;
}
.corcierge-image-card.row.active .image::after {
  content: none;
}
.corcierge-image-card.row.active .corner {
  display: none !important;
}
.corcierge-image-card.row.active .tick-icon {
  border-color: var(--main-blue);
}
.corcierge-image-card.row.active .tick-icon svg {
  display: block;
  fill: var(--main-blue);
  stroke: var(--main-blue);
  stroke-width: 3px;
  width: 100%;
  height: 100%;
}
.corcierge-image-card.row .image {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
}
.corcierge-image-card.row .image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
.corcierge-image-card.row .text {
  padding: 0;
  margin: 0;
  width: 100%;
  min-width: 0px;
}
.corcierge-image-card.row .text .title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.corcierge-image-card.row .tick-icon {
  width: 25px;
  height: 25px;
  position: static;
  display: block;
  transform: none;
  border: 1px solid var(--border-color);
  padding: 5px;
  border-radius: 4px;
  flex-shrink: 0;
}
.corcierge-image-card.row .tick-icon svg {
  display: none;
}
.corcierge-image-card.row .corner {
  display: none;
}
.custom-checkbox-square.concierge-checkbox,
.concierge-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  padding: 1.125rem;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid var(--border-color);
  margin: 0;
}
.custom-checkbox-square.concierge-checkbox.checked,
.concierge-checkbox.checked {
  border: 1px solid var(--main-blue);
}
.custom-checkbox-square.concierge-checkbox.selected,
.concierge-checkbox.selected {
  border: 1px solid var(--border-color);
}
.custom-checkbox-square.concierge-checkbox.selected .item-selected,
.concierge-checkbox.selected .item-selected {
  font-size: 12px;
  line-height: 16px;
  color: var(--main-green);
  margin: 0;
  font-weight: 500;
  margin-left: 10px;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark,
.concierge-checkbox.without-checkmark {
  padding: 15px;
  border-radius: 14px;
  border: none;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark label,
.concierge-checkbox.without-checkmark label {
  padding-left: 0;
  flex: 1;
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 500;
  line-height: 1.2;
  height: auto;
  text-align: center;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark label::after,
.concierge-checkbox.without-checkmark label::after {
  display: none;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark .icon.arrow-right,
.concierge-checkbox.without-checkmark .icon.arrow-right {
  width: 15px;
  height: 15px;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark .icon.arrow-right svg,
.concierge-checkbox.without-checkmark .icon.arrow-right svg {
  width: 100%;
  height: 100%;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark.checked,
.concierge-checkbox.without-checkmark.checked {
  background-color: var(--main-blue) !important;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark.checked label,
.concierge-checkbox.without-checkmark.checked label {
  color: white;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark.checked label::before,
.concierge-checkbox.without-checkmark.checked label::before {
  display: none;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark.checked .icon.arrow-right,
.concierge-checkbox.without-checkmark.checked .icon.arrow-right {
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 0.2s;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark.checked .icon.arrow-right svg,
.concierge-checkbox.without-checkmark.checked .icon.arrow-right svg {
  color: white;
}
.custom-checkbox-square.concierge-checkbox.without-checkmark.checked .icon.arrow-right svg path,
.concierge-checkbox.without-checkmark.checked .icon.arrow-right svg path {
  stroke: currentColor;
}
.custom-checkbox-square.concierge-checkbox input,
.concierge-checkbox input {
  width: 20px;
  height: 20px;
}
.custom-checkbox-square.concierge-checkbox .date span,
.concierge-checkbox .date span {
  color: #a8aab1;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}
.custom-checkbox-square.concierge-checkbox .is-voice-request,
.concierge-checkbox .is-voice-request {
  width: 20px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.custom-checkbox-square.concierge-checkbox .is-voice-request svg,
.concierge-checkbox .is-voice-request svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #a8aab1;
}
.custom-checkbox-square.concierge-checkbox .cta-btn-outline,
.concierge-checkbox .cta-btn-outline {
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.custom-checkbox-square.concierge-checkbox .cta-btn-outline svg,
.concierge-checkbox .cta-btn-outline svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.custom-checkbox-square.concierge-checkbox .cta-btn-outline .is-voice-request,
.concierge-checkbox .cta-btn-outline .is-voice-request {
  width: 25px;
  height: 25px;
}
.custom-checkbox-square.concierge-checkbox .cta-btn-outline .is-voice-request svg,
.concierge-checkbox .cta-btn-outline .is-voice-request svg {
  fill: #fff;
}
.default-popup-wrapper.mobile,
.custom-popup.mobile {
  left: 15px !important;
  bottom: -150%;
  max-height: 100%;
  border-radius: 14px !important;
  display: flex;
  flex-direction: column;
  min-width: calc(100% - 30px) !important;
  width: 100%;
  max-width: calc(100% - 30px) !important;
  height: 100%;
  padding: 20px;
}
.default-popup-wrapper.mobile .is-online,
.custom-popup.mobile .is-online {
  position: static !important;
}
.close-popup-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  position: absolute;
  cursor: pointer;
  top: 10px;
  right: 10px;
  background-color: transparent;
  z-index: 1000;
}
.close-popup-btn svg {
  width: 17px;
  height: 17px;
  fill: var(--dark-blue, #1f2a44);
}
.close-popup-btn.mobile,
.close-popup-btn.olive-green {
  right: 2px;
  top: 2px;
  border-radius: 0 11px 0px 8px;
}
.close-popup-btn.mobile.green,
.close-popup-btn.olive-green.green {
  background-color: var(--main-green);
}
.close-popup-btn.mobile:after,
.close-popup-btn.olive-green:after {
  content: "";
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  right: 0%;
  top: 0%;
  transform: translate(0%, 0%);
  z-index: 1;
}
.close-popup-btn.mobile svg,
.close-popup-btn.olive-green svg {
  width: 15px;
  height: 15px;
}
.close-popup-btn.white svg {
  width: 17px;
  height: 17px;
  fill: var(--white, #ffffff);
}
.default-popup-wrapper,
.custom-popup {
  position: fixed;
  z-index: 5;
  left: 50%;
  background-color: #fff;
  max-width: 600px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  border-radius: 14px;
  width: 100%;
  padding: 25px;
  overscroll-behavior: none;
}
@media (max-width: 576px) {
  .default-popup-wrapper,
  .custom-popup {
    padding: 20px;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    width: 100%;
    height: 100%;
  }
}
.default-popup-wrapper.animated,
.custom-popup.animated {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  border-radius: 14px;
  transition:
    transform 0.5s,
    visibility 0s 0s,
    opacity 0.5s 0.1s,
    border-radius 0.5s;
}
.default-popup-wrapper.no-content-padding,
.custom-popup.no-content-padding {
  padding: 0 !important;
}
.default-popup-wrapper.fullscreen,
.custom-popup.fullscreen {
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  border-radius: 0 !important;
  min-width: 100% !important;
  padding: 50px 20px 20px !important;
  max-height: 100svh !important;
}
.default-popup-wrapper.fullscreen .popup-content,
.custom-popup.fullscreen .popup-content {
  overflow-y: auto;
  flex-grow: 1;
  padding-bottom: 20px;
}
.default-popup-wrapper.bottom-fullscreen,
.custom-popup.bottom-fullscreen {
  top: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: 100%;
  min-height: 30svh;
  max-height: 60svh;
  transform: none !important;
  border-radius: 20px 20px 0 0 !important;
  padding-bottom: 25px !important;
  padding-bottom: max(25px, env(safe-area-inset-bottom)) !important;
}
.default-popup-wrapper.bottom-fullscreen::before,
.custom-popup.bottom-fullscreen::before {
  content: none;
  display: block;
  width: 36px;
  height: 4px;
  background-color: var(--border-color, #dddddd);
  border-radius: 2px;
  margin: 0px auto 20px;
  flex-shrink: 0;
}
.default-popup-wrapper.bottom-fullscreen .popup-content,
.custom-popup.bottom-fullscreen .popup-content {
  overflow-y: auto;
  flex-grow: 1;
}
.default-popup-wrapper.aside-right,
.custom-popup.aside-right {
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: 470px !important;
  max-width: 470px !important;
  min-width: 470px !important;
  height: 100svh !important;
  min-height: 100svh !important;
  max-height: 100svh !important;
  transform: none !important;
  border-radius: 0 !important;
}
.default-popup-wrapper.ipad.no-content-padding,
.custom-popup.ipad.no-content-padding {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.default-popup-wrapper.bottom.mobile,
.custom-popup.bottom.mobile {
  top: auto !important;
  bottom: 0px;
}
.default-popup-wrapper.mobile,
.custom-popup.mobile {
  padding: 20px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-width: 100%;
  width: 100%;
  height: 100%;
}
.default-popup-wrapper .popup-content,
.custom-popup .popup-content {
  overflow-y: auto;
  flex-grow: 1;
}
.default-popup-wrapper .popup-footer,
.custom-popup .popup-footer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: row;
  justify-content: space-between;
}
.default-popup-wrapper .popup-footer .cta-btn.full,
.default-popup-wrapper .popup-footer .default-btn-stroke.full,
.custom-popup .popup-footer .cta-btn.full,
.custom-popup .popup-footer .default-btn-stroke.full {
  width: 100% !important;
  max-width: 100%;
}
.default-popup-wrapper .popup-footer .clear-btn,
.custom-popup .popup-footer .clear-btn {
  margin-top: 0;
  margin-right: auto;
  align-self: center;
}
.default-popup-wrapper .popup-footer:has(.annotation-text),
.custom-popup .popup-footer:has(.annotation-text) {
  flex-direction: column;
  justify-content: normal;
}
.default-popup-wrapper .is-online,
.custom-popup .is-online {
  font-size: 12px !important;
}
@media (max-width: 900px) and (orientation: landscape) {
  .default-popup-wrapper,
  .custom-popup {
    left: 0 !important;
    transform: none !important;
    max-height: 80% !important;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-width: 100% !important;
    width: 100%;
    height: 100%;
  }
  .default-popup-wrapper .is-online,
  .custom-popup .is-online {
    position: static !important;
  }
}
.popup-head-blue {
  padding: 25px;
  background-color: var(--main-blue);
  border-radius: 14px 14px 0 0;
}
.popup-head-blue .block-title {
  margin-bottom: 15px;
  font-size: 22px;
  padding-right: 35px;
}
.popup-head-blue .block-subtitle {
  color: white;
  font-size: 14px;
}
.user-name {
  display: grid;
  justify-content: space-between;
  position: relative;
  grid-template-columns: 220px 150px;
}
.user-name .name {
  color: var(--dark-blue, #1f2a44);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 32px;
}
.user-name .name,
.user-name .job-title {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.user-name .job-title {
  font-size: 12px;
}
.user-name img {
  height: auto;
  border-radius: var(--border-radius);
  margin-bottom: 7px;
  margin-top: 7px;
  display: block;
  width: 150px;
}
.user-name > div:not(.name, .is-online) {
  color: var(--dark-blue, #1f2a44);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  margin-bottom: 5px;
}
.user-name > div:not(.name, .is-online) a {
  color: var(--dark-blue, #1f2a44);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 16px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .popup-wrapper {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    max-height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-width: 100%;
    width: 100%;
    height: 100%;
    padding: 20px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  .popup-wrapper {
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    max-height: 100% !important;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    min-width: 100% !important;
    width: 100%;
    height: 100%;
    padding: 20px !important;
  }
  .popup-wrapper .is-online {
    position: static !important;
    max-height: 21px;
  }
}
.default-popup-sm .header {
  margin-bottom: 15px;
}
.default-popup-sm .header .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}
.default-popup-sm .header .subtitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  color: #999;
}
.default-popup-sm .content {
  flex-grow: 1;
  overflow-y: auto;
}
.default-popup-sm .content .row-grid {
  display: flex;
  flex-direction: column;
  border-radius: var(--border-radius);
  width: 100%;
  color: #000 !important;
  font-size: 16px !important;
  letter-spacing: 0;
  line-height: normal;
  margin-bottom: 15px;
  padding: 0;
}
.default-popup-sm .content .row-grid .checkboxes-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.default-popup-sm .content .row-grid .row-with-checkbox {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 15px;
  border-bottom: 1px solid var(--border-color, #c0c0c0);
  padding: 19px 0;
  align-items: center;
}
.default-popup-sm .content .row-grid .row-with-checkbox:first-of-type {
  border-top: 1px solid var(--border-color, #c0c0c0);
}
.default-popup-sm .content .row-grid .row-with-checkbox label {
  position: relative;
  font-size: 14px;
}
.default-popup-sm .content .row-grid .row-with-checkbox label:after {
  content: none;
  height: calc(100% + 10px);
  right: 0;
  position: absolute;
  width: 1px;
  background-color: silver;
  top: 50%;
  transform: translateY(-50%);
}
.default-popup-sm .content .row-grid .setting-row {
  border: none;
}
.default-popup-sm .content .row-grid .setting-row .item {
  margin: 0;
  padding: 0;
}
.default-popup-sm .cookies {
  margin-bottom: 15px;
}
.default-popup-sm .privacy-policy-p {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #999;
  white-space: pre-wrap;
}
.default-popup-sm .privacy-policy-p a {
  color: inherit !important;
  border-bottom: 1px solid #999;
  background-color: transparent !important;
  border-color: #999 !important;
}
.hero-section {
  background-size: 1920px;
}
@media (min-width: 1920px) {
  .hero-section {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
}
.hero-section .reviews-block {
  background-image:
    linear-gradient(
      to top,
      black 30%,
      rgba(0, 0, 0, 0.4) 100%);
}
.hero-section .reviews-block .review-card,
.hero-section .reviews-block .title {
  color: white !important;
}
.hero-section.no-reviews {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: auto;
  margin-bottom: 50px;
}
.hero-section.mobile {
  background-size: cover;
  background-position: top right;
  margin-bottom: 30px;
}
.hero-section.mobile .reviews-block {
  background-color: var(--header-bg);
  background-image: none;
}
.hero-section.mobile .reviews-block .review-card,
.hero-section.mobile .reviews-block .title {
  color: black;
}
.hero-section.mobile.stacked {
  position: sticky;
  top: -1px;
  z-index: 12;
}
.hero-section.mobile.stacked .home-category-block {
  padding: 15px 25px !important;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
}
.category-search-params-mobile:not(.static) {
  opacity: 0;
  opacity: 0;
  height: 0;
  padding: 0;
}
.category-search-params-mobile:not(.static).sticky {
  position: sticky;
  top: -1px;
  z-index: 12;
  background-color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
  padding: 15px 25px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease;
  height: auto;
  position: fixed;
  width: 100%;
}
.category-search-params-mobile:not(.static).sticky .home-category-block {
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.category-search-params-mobile.static {
  padding: 25px 0px 0px;
}
.home-category-block {
  background-color: var(--white);
  color: var(--white);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 10px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
@media (min-width: 1801px) {
  .home-category-block {
    background-size: cover;
    background-position: top center;
  }
}
.home-category-block.hero-block {
  min-height: auto;
  padding: 25px 0 !important;
  background-color: var(--comon-search-console-bg-color);
}
.home-category-block.hero-block.mobile {
  padding: 15px 25px !important;
  background-color: var(--comon-search-console-bg-color);
}
.home-category-block.hero-block.mobile.white {
  background-color: #fff !important;
  border-bottom: 1px solid var(--light-grey);
}
.home-category-block.hero-block.destination-page {
  padding-top: 10px !important;
}
.home-category-block.hero-block .short-characteristics-wrapper.mobile .characteristic-item {
  display: none;
}
.home-category-block.hero-block .short-characteristics-wrapper.mobile .characteristic-item:nth-child(1),
.home-category-block.hero-block .short-characteristics-wrapper.mobile .characteristic-item:nth-child(2),
.home-category-block.hero-block .short-characteristics-wrapper.mobile .characteristic-item:nth-child(4),
.home-category-block.hero-block .short-characteristics-wrapper.mobile .characteristic-item:nth-child(3) {
  display: flex;
}
.home-category-block.mobile {
  padding-bottom: 0px;
  padding-top: 15px;
  background-size: cover;
}
.home-category-block.mobile .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}
@media (orientation: landscape) {
  .home-category-block.mobile {
    background-position: top;
  }
}
.home-category-block .container {
  flex-grow: 1;
}
.home-category-block .container-fluid {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-category-block .category-search-params {
  width: 100%;
  color: var(--header-bg);
}
.home-category-block .search-params-row {
  margin-bottom: 25px;
}
.home-category-block .search-params-row.mobile {
  margin-bottom: 0;
}
.home-category-block .footer-block {
  margin-top: auto;
}
.partner-slider-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.atol-block {
  padding-top: 15px;
}
.description {
  position: relative;
  font-size: 12px;
  line-height: 1rem;
  color: var(--dark-blue, #1f2a44);
  grid-area: airport;
}
.description.mobile {
  line-height: 1.2;
}
.description::after {
  content: "";
  height: 30px;
}
@media screen and (max-width: 900px) {
  .description {
    margin-top: 0 !important;
  }
}
.sr-card-google-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  grid-area: google;
}
.sr-card-google-rating-row .rating-badge {
  background: var(--main-green);
  color: white;
  padding: 3px 8px;
  font-size: 12px;
  border-radius: 3px;
}
.sr-card-google-rating-row .google-logo {
  height: 16px;
  width: auto;
}
.mobile .sr-card-google-rating-row .rating-badge {
  padding: 3px 5px;
  font-size: 11px;
  min-width: 30px;
  max-width: 35px;
  text-align: center;
}
.mobile .sr-card-google-rating-row .google-logo {
  width: 80px;
  height: auto;
  max-height: 25px;
}
.search-result-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}
.search-result-card .images-block {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  height: 100%;
  min-width: 300px;
  flex-shrink: 0;
}
.search-result-card .images-block .thumbnails-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 10px 10px;
  height: 100%;
}
.search-result-card .images-block .thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 83px);
  grid-template-rows: 83px;
  gap: 5px;
}
.search-result-card .images-block .thumbnails img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}
.search-result-card .images-block .features-list-wrapper {
  margin-top: 0;
}
.search-result-card .images-block .last-seen-info {
  margin-top: auto;
}
.search-result-card .images-block .recent-reviews {
  gap: 10px;
}
.search-result-card .images-block .recent-reviews .rate .score {
  padding: 3px 8px;
  font-size: 12px;
}
.search-result-card .no-offers-data-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-result-card .card-wrapper {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
.search-result-card .card-wrapper svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.search-result-card .card-wrapper .title-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.search-result-card .card-wrapper .title-block .is-popular:not(.badge) {
  display: inline-flex;
  padding: 2px;
  vertical-align: text-top;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 4px;
  margin-right: 3px;
}
.search-result-card .card-wrapper .title-block .is-popular:not(.badge).red {
  width: 21px;
  height: 21px;
  background: var(--main-color, #e73e45);
}
.search-result-card .card-wrapper .title-block:has(.badge) .title {
  max-width: calc(100% - 95px);
}
.search-result-card .card-wrapper .title-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.search-result-card .card-wrapper .title-row .rate-and-name {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  min-width: 0px;
}
.search-result-card .card-wrapper .image-block {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 12px;
}
.search-result-card .card-wrapper .images {
  min-height: 195px;
  max-height: 210px;
  flex: 0 1 210px;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  margin: 0px;
  border-radius: 4px 4px 0 0;
}
.search-result-card .card-wrapper .images.no-image {
  background-size: 110px;
  background-position-y: 30%;
  background-color: #8f8d8d;
  background-repeat: no-repeat;
}
.search-result-card .card-wrapper .images.no-image img {
  object-fit: contain;
  background: #8f8d8d;
}
.search-result-card .card-wrapper .images.mobile {
  min-height: 145px;
  max-height: 260px;
}
.search-result-card .card-wrapper .images .image-counter {
  background: rgba(0, 0, 0, 0.6784313725);
  width: max-content;
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 3px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  font-size: 10px;
  color: white;
}
.search-result-card .card-wrapper .images img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center;
}
.search-result-card .card-wrapper .main-content-info {
  background-color: #fff;
  border-top-left-radius: 0px;
  padding: 15px;
  display: flex;
  gap: 10px;
}
.search-result-card .card-wrapper .main-content-info .name {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}
.search-result-card .card-wrapper .main-content-info .name .title {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}
.search-result-card .card-wrapper .main-content-info .name p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.search-result-card .card-wrapper .main-content-info .name .title-wrapper,
.search-result-card .card-wrapper .main-content-info .name .main-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0px;
  width: 100%;
  position: relative;
}
.search-result-card .card-wrapper .main-content-info .name .title-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.search-result-card .card-wrapper .main-content-info .location {
  color: var(--dark-blue, #1f2a44);
  font-family: "Lato";
  letter-spacing: 0;
  display: flex;
  align-items: center;
  min-width: 0px;
}
.search-result-card .card-wrapper .main-content-info .location .icon {
  display: none;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}
.search-result-card .card-wrapper .main-content-info .location .place {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 12px;
  line-height: 16px;
  color: #999;
}
.search-result-card .card-wrapper .main-content-info .location .place:has(lib-svg-icon) {
  display: grid;
  grid-template-columns: 10px 1fr;
  width: 100%;
  gap: 5px;
}
.search-result-card .card-wrapper .main-content-info .accomodation-type {
  width: auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  min-height: 20px;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0;
  border: none;
}
.search-result-card .card-wrapper .main-content-info .last-seen-info {
  font-weight: 400;
  font-size: 10px;
  line-height: 28px;
  color: var(--grey, #999);
  margin-top: auto;
}
.search-result-card .card-wrapper .main-content-info:not(:has(.additional-deal-list)) .last-seen-info {
  margin-top: auto;
}
.search-result-card .card-wrapper .main-content-info.ipad {
  padding: 15px;
}
.search-result-card .card-wrapper.mobile {
  margin: auto;
  max-width: 100%;
  width: 100%;
  border: none;
  box-shadow: none;
}
.search-result-card .card-wrapper.mobile .main-content-info {
  padding: 10px !important;
  border-radius: 0 8px 0 0 !important;
  gap: 25px;
}
.search-result-card .card-wrapper.mobile .main-content-info .main-title .title {
  font-size: 16px;
}
.search-result-card .card-wrapper.mobile .main-content-info .name {
  gap: 10px;
  height: 100%;
}
.search-result-card .card-wrapper.mobile .main-content-info .accomodation-type {
  font-size: 10px;
  min-height: 12px;
  gap: 10px;
}
.search-result-card .card-wrapper.mobile .main-content-info .accomodation-type .score {
  padding: 3px 5px !important;
  font-size: 11px !important;
}
.search-result-card .card-wrapper.mobile .main-content-info .last-seen-info {
  line-height: 1.2;
  flex-shrink: 0;
}
.search-result-card .card-wrapper.mobile .images {
  padding-bottom: 0;
  flex: 0 1 130px;
  max-width: 130px;
}
.search-result-card .card-wrapper.mobile .main-title {
  gap: 5px;
}
.search-result-card .card-wrapper.mobile .main-title .title {
  line-height: initial !important;
}
.search-result-card .card-wrapper.mobile .main-title .location .place {
  font-size: 12px !important;
  line-height: initial !important;
}
.search-result-card .card-wrapper.mobile .score {
  padding: 5px !important;
  font-size: 12px !important;
  width: 100% !important;
  min-width: 30px;
  max-width: 35px !important;
}
.search-result-card .card-wrapper.mobile .by-google {
  width: 80px;
  height: auto;
  max-height: 25px;
}
.search-result-card .card-wrapper.mobile .by-google img {
  height: 100%;
  max-height: 25px;
}
.search-result-card .card-wrapper.mobile .controls-wrapper {
  justify-content: flex-end;
  gap: 5px;
}
.search-result-card .card-wrapper.mobile .features-list {
  margin-top: auto;
}
.search-result-card .card-wrapper.mobile .features-list:empty {
  display: none;
}
.search-result-card .card-wrapper.mobile .images-block.solo-image .images {
  max-height: 180px !important;
}
.search-result-card .last-check-row {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.search-result-card .last-check-row p {
  color: var(--grey, #999);
  margin-top: auto;
  font-size: 10px;
  line-height: 1.2;
}
.search-result-card .last-check-row p:has(lib-svg-icon) {
  display: flex;
  align-items: center;
  gap: 5px;
}
.search-result-card .recent-reviews {
  display: flex;
  flex-direction: column;
  grid-gap: 5px;
  gap: 5px;
  align-items: flex-start;
}
.search-result-card .recent-reviews.empty {
  min-height: 47px;
}
.search-result-card .recent-reviews .by-google {
  width: 120px;
  height: 18px;
  margin-left: 0px;
}
.search-result-card .recent-reviews .by-google img {
  height: 100%;
  max-height: 15px;
}
.search-result-card .recent-reviews .clear-btn {
  margin-top: 0;
  font-size: 12px;
  line-height: 16px;
  color: var(--main-green);
}
.search-result-card.solo-deal .last-seen-info,
.search-result-card.one-deal .last-seen-info {
  right: 15px;
  bottom: -5px;
}
.search-result-card.mobile .images-block {
  max-width: 100%;
}
.search-result-card.mobile .images-block .location.badge.black {
  padding: 10px 25px;
}
.search-result-card.mobile .card-wrapper .top-info {
  gap: 0px;
  flex-direction: column;
}
.search-result-card.mobile .card-wrapper .top-info .images {
  flex: 0 1 30%;
  flex-shrink: 0;
  max-width: 100%;
  position: relative;
  border-radius: 4px 0 0 0 !important;
  overflow: hidden;
  aspect-ratio: 1/1;
  min-height: 130px;
  max-height: 170px;
}
.search-result-card.mobile .card-wrapper .top-info .images::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.4509803922),
      rgba(0, 0, 0, 0.231372549) 80%,
      transparent);
  border-radius: 4px 0 0 0 !important;
}
.search-result-card.mobile .card-wrapper .top-info .images.no-image::after {
  content: none;
}
.search-result-card.mobile .card-wrapper .top-info .broad-info.mobile {
  padding: 10px 0 0;
  border-top: 0;
}
.search-result-card.mobile .card-wrapper:has(deal-card-footer.static) deal-card-footer {
  padding: 0 10px 10px;
}
.search-result-card.mobile .recent-reviews {
  min-height: 0px;
}
.card-wrapper {
  position: relative;
}
.search-result-card .last-seen-info {
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: #999;
}
.search-result-card .card-tabs-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: auto;
  margin-bottom: 10px;
  justify-content: center;
}
.search-result-card .card-tabs-wrapper .clear-btn {
  font-size: 12px;
  line-height: 1;
}
.search-result-card .controls-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}
.search-result-card.mobile-view .card-wrapper .itinerary-wrapper {
  margin-bottom: 0;
}
.search-result-card.mobile-view .shortlist-btn {
  height: 37px;
  width: 37px;
}
.search-result-card.mobile-view .shortlist-btn .icon {
  width: 17px;
  height: 17px;
  display: block;
  flex-shrink: 0;
}
.search-result-card .top-info {
  display: flex;
  gap: 25px;
}
.search-result-card .top-info .images {
  border-radius: 4px;
  max-width: 300px;
}
.search-result-card .top-info .images img {
  border-radius: 8px 2px 4px 2px;
}
.search-result-card .top-info .main-content-info {
  flex: 1;
  overflow: hidden;
  padding: 15px 15px 0 0;
}
.search-result-card .top-info .main-content-info .name p {
  white-space: nowrap;
  text-overflow: ellipsis;
}
.search-result-card .top-info .main-content-info .card-tabs-wrapper {
  justify-content: flex-start;
  margin-bottom: 0;
}
.search-result-card .top-info .main-content-info .card-tabs-wrapper.mobile {
  display: none;
}
.search-result-card.mobile .images {
  border-radius: 4px 0px 0px 0px !important;
  max-width: 270px;
}
.search-result-card.mobile .images img {
  border-radius: 4px 0px 0px 0px !important;
}
.broad-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--dark-blue);
}
.broad-info .broad-info-text {
  font-size: 18px;
  font-weight: 700;
}
.broad-info .broad-info-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
.broad-info .annotation {
  font-size: 14px;
  color: #999;
  font-weight: 300;
}
.broad-info.mobile {
  padding: 15px;
  border-top: 1px solid var(--border-color);
}
.broad-info.mobile .broad-info-text {
  font-size: 16px;
}
.broad-info.mobile .broad-info-description {
  font-size: 14px;
}
.broad-info.mobile .annotation {
  font-size: 12px;
}
.main-content-info {
  flex-direction: column;
}
.features-list-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}
.features-list-wrapper::after {
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  background-image:
    linear-gradient(
      to left,
      rgb(255, 255, 255) 40%,
      transparent 100%);
  right: 0px;
  max-height: 28px;
}
.features-list-wrapper.scroll-end::after {
  display: none;
}
.features-list {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  position: relative;
  overflow: hidden;
  overflow-x: auto;
  touch-action: pan-x;
}
.features-list .feature-item {
  padding: 3px 10px;
  width: auto;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  font-weight: 400;
  min-height: 25px;
  color: var(--dark-blue);
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 35px;
  display: flex;
  align-items: center;
}
.new-card-design:has(deal-card-footer.toggled) .review-card,
.new-card-design:has(deal-card-footer.toggled) .description {
  display: none !important;
}
.slider-button-next,
.slider-button-prev {
  height: 44px;
  width: 44px;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  border-radius: 50%;
}
.slider-button-next:after,
.slider-button-prev:after {
  height: 44px;
  width: 44px;
}
.slider-button-next {
  background-image: none;
  position: absolute;
  bottom: calc(50% - 22px);
  z-index: 1;
  right: -15px;
}
.slider-button-prev {
  background-image: none;
  position: absolute;
  bottom: calc(50% - 22px);
  z-index: 1;
  left: -15px;
}
@media only screen and (max-width: 767px) {
  .travel-agents {
    display: flex;
    flex-direction: column;
  }
}
.travel-agents .result-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 273px);
  gap: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .travel-agents .result-card-list {
    grid-template-columns: repeat(auto-fill, minmax(273px, 1fr));
  }
}
.travel-agents .swiper-container {
  width: 100%;
  height: 100%;
}
.travel-agents .agent-list {
  position: relative;
  left: 0;
  width: 100%;
}
.swiper,
.swiper-container,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
  width: 100%;
  flex-shrink: 0;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.sr-card-slider-wrapper {
  --swiper-pagination-color: white;
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0, 0, 0, 0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  --swiper-navigation-color: var(--dark-blue);
  --swiper-navigation-size: 15px;
}
.sr-card-slider-wrapper.odd {
  --swiper-pagination-color: green;
  --swiper-navigation-color: purple;
}
.sr-card-slider-wrapper .slider-button-prev {
  left: 15px !important;
  transform: translateY(50%) !important;
  width: 30px;
  height: 30px;
}
.sr-card-slider-wrapper .slider-button-prev::after {
  pointer-events: all;
  content: "";
  width: 100px;
  height: 185px;
  position: absolute;
  right: -55px;
  bottom: -77px;
}
.sr-card-slider-wrapper .slider-button-next {
  right: 15px !important;
  transform: translateY(50%) !important;
  width: 30px;
  height: 30px;
}
.sr-card-slider-wrapper .slider-button-next::after {
  pointer-events: all;
  content: "";
  width: 100px;
  height: 185px;
  position: absolute;
  left: -55px;
  bottom: -77px;
}
.sr-card-slider-wrapper.mobile {
  --swiper-pagination-bullet-size: 4px;
  --swiper-pagination-bullet-width: 4px;
  --swiper-pagination-bullet-height: 4px;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
deals-list .holidays-list:not(.mobile) swiper-container swiper-slide {
  width: 100% !important;
  max-width: 262px;
}
deals-list .holidays-list:not(.mobile).ipad swiper-container swiper-slide {
  width: 295px !important;
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
.social-cards-list-wrapper .card-list .swiper-container .swiper-wrapper .swiper-slide,
.card-list swiper-slide {
  max-width: 310px;
  width: 100%;
}
.destination-visit-reason-wrapper .travel-recommendation-card-item .title a,
.assistant-content .travel-recommendation-card-item .title a {
  font-family: Lato, sans-serif;
  font-style: normal;
  text-align: right;
  color: var(--main-blue);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0;
}
.destination-visit-reason-wrapper .travel-recommendation-card-item.with-image,
.assistant-content .travel-recommendation-card-item.with-image {
  display: flex;
}
.destination-visit-reason-wrapper .travel-recommendation-card-item.with-image .card-image,
.assistant-content .travel-recommendation-card-item.with-image .card-image {
  flex: 0 0 80px;
}
.destination-visit-reason-wrapper .travel-recommendation-card-item.with-image .card-image img,
.assistant-content .travel-recommendation-card-item.with-image .card-image img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}
.destination-visit-reason-wrapper .travel-recommendation-card-item.with-image .card-info,
.assistant-content .travel-recommendation-card-item.with-image .card-info {
  flex: 1;
}
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container {
  align-items: center;
}
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide-duplicate,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper swiper-slide,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container .swiper-slide,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container .swiper-slide-duplicate,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container swiper-slide {
  width: 100% !important;
  max-width: 262px;
}
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide-duplicate:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper swiper-slide:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container .swiper-slide:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container .swiper-slide-duplicate:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container swiper-slide:has(lib-using-travel-experts-banner) {
  max-width: 350px;
}
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper.mobile .swiper-slide,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper.mobile .swiper-slide-duplicate,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper .swiper-container .swiper-wrapper.mobile swiper-slide,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container.mobile .swiper-slide,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container.mobile .swiper-slide-duplicate,
.summary-travel-agents .agent-list:not(.mobile) .slider-wrapper swiper-container.mobile swiper-slide {
  width: 100%;
}
.summary-travel-agents .agent-list .slider-wrapper.mobile .swiper-slide,
.summary-travel-agents .agent-list .slider-wrapper.mobile .swiper-slide-duplicate,
.summary-travel-agents .agent-list .slider-wrapper.mobile swiper-slide {
  max-width: 240px;
  width: 100%;
}
.summary-travel-agents .agent-list .slider-wrapper.mobile .swiper-slide:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list .slider-wrapper.mobile .swiper-slide-duplicate:has(lib-using-travel-experts-banner),
.summary-travel-agents .agent-list .slider-wrapper.mobile swiper-slide:has(lib-using-travel-experts-banner) {
  max-width: 230px;
  flex-shrink: 0;
}
.swiper-button,
.slider-button {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  fill: none;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: white;
}
.swiper-button[class*=-prev],
.slider-button[class*=-prev] {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
  transform: rotate(-180deg);
}
.swiper-button[class*=-next],
.slider-button[class*=-next] {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.tabs-wrapper {
  background-color: var(--bg-main);
  padding: 15px 0;
  overflow-x: auto;
}
.tabs-wrapper.white {
  background-color: #fff;
  border-bottom: 1px solid var(--border-color);
}
.default-tabs-wrapper {
  display: flex;
  background: #eff3f7;
  padding: 6px;
  border-radius: 35px;
  gap: 4px;
  inline-size: 100%;
  align-items: stretch;
}
.default-tabs-wrapper .tab-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 14px;
  line-height: 1;
  color: var(--dark-blue, #1f2a44);
  font-weight: 700;
  cursor: pointer;
  gap: 10px;
  background: transparent;
  flex-shrink: 0;
  padding: 11px 15px;
  flex: 1;
  border-radius: 35px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.default-tabs-wrapper .tab-button.active {
  background: white;
  border: 1px solid #dfe0e4;
  color: var(--dark-blue, #1f2a44);
}
.oval-tabs {
  display: flex;
  gap: 5px;
  padding: 5px !important;
  background-color: #fff !important;
  border-radius: 35px;
  border: 1px solid var(--main-blue);
  scroll-snap-type: x mandatory;
}
.oval-tabs.mobile {
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 800px) and (max-height: 1200px) {
  .oval-tabs.mobile {
    max-width: 280px;
  }
}
@media screen and (max-width: 400px) {
  .oval-tabs.mobile .tab {
    padding: 0 15px;
  }
}
.oval-tabs.mobile .tab {
  width: 50%;
  line-height: 34px;
  font-size: 14px;
}
.oval-tabs .tab {
  width: 100%;
  max-width: 185px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  background: transparent;
  border: none;
  color: var(--tabs-color);
  padding: 0 18px;
  border-radius: 20px;
  letter-spacing: 0;
  line-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  cursor: pointer;
}
.oval-tabs .tab.active {
  background-color: var(--tabs-color);
  color: #fff;
  border: 1px solid var(--tabs-color);
  scroll-snap-align: center;
}
.oval-tabs .tab.active .icon svg {
  transform: rotate(-90deg);
}
app-search-console-tabs app-search-params .container,
app-search-console-tabs app-describe-your-trip .container {
  padding: 0;
}
.masonry-label {
  background-color: #e8e8e8;
  padding: 7px 10px;
  color: var(--white, #ffffff);
  font-family: "Lato";
  font-size: 12px;
  line-height: 20px;
  border-radius: 14px;
  letter-spacing: 0;
  width: -webkit-max-content;
  width: max-content;
  max-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.card-meta-bubble {
  padding: 3px 10px;
  width: auto;
  font-size: 12px;
  white-space: nowrap;
  font-weight: 400;
  min-height: 25px;
  color: var(--dark-blue);
  background-color: #fff;
  border: 1px solid var(--border-color);
  border-radius: 35px;
  display: flex;
  align-items: center;
  scroll-snap-align: center;
}
.card-meta-bubble .icon {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.card-meta-bubble .icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
}
.card-meta-data {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 18px;
  color: var(--dark-blue);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.card-meta-data .icon {
  width: 17px;
  height: 15px;
  flex-shrink: 0;
}
*.mobile .card-meta-data {
  font-size: 10px;
}
*.mobile .card-meta-bubble {
  font-size: 10px !important;
  padding: 3px 8px;
  min-height: 20px;
}
*.mobile .card-meta-bubble .icon {
  width: 12px;
  height: 12px;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 10002;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cdk-overlay-container .cdk-overlay-backdrop {
  pointer-events: none;
}
.cdk-overlay-container .cdk-overlay-pane {
  pointer-events: auto;
}
.cdk-overlay-pane.tooltip-overlay-panel,
.cdk-overlay-pane.board-basis-tooltip {
  position: absolute !important;
  pointer-events: auto;
  z-index: 10000 !important;
}
@supports (-webkit-touch-callout: none) {
  .cdk-overlay-pane.tooltip-overlay-panel,
  .cdk-overlay-pane.board-basis-tooltip {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000;
    -webkit-perspective: 1000;
  }
  .cdk-overlay-container {
    height: 100vh;
    height: 100dvh;
  }
  .cdk-overlay-pane {
    transform: translateZ(0);
    will-change: transform;
  }
}
.tooltip-overlay {
  pointer-events: auto;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  text-size-adjust: 100%;
  font-size: 100%;
  font-family:
    "Lato",
    "Helvetica Neue",
    Helvetica,
    -apple-system,
    sans-serif;
  line-height: inherit;
  font-style: normal;
  font-stretch: normal;
  font-optical-sizing: auto;
}
*:focus {
  outline: none;
}
*:not(input).disabled,
*:not(input)[disabled] {
  pointer-events: none;
  opacity: 0.5;
}
*:not(input).disabled > *:not(.popup-footer),
*:not(input)[disabled] > *:not(.popup-footer) {
  pointer-events: none;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min--moz-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  * button {
    border-width: 1px !important;
  }
  * button[type=button] {
    border-width: 1px !important;
  }
}
*[hidden],
*[hidden=true] {
  display: none !important;
}
*[hidden=false] {
  display: flex !important;
}
html {
  height: 100%;
  background: white;
}
@media (max-width: 768px) {
  html {
    min-width: 320px;
  }
}
html:has(.overlay-show) {
  overflow: hidden;
  overscroll-behavior: none;
}
html:has(.overlay-show) body {
  overflow: hidden;
  overscroll-behavior: none;
}
html:has(.demo-popup-block) lib-cookies {
  display: none !important;
}
html:has(.demo-popup-block) #cookiescript_injected_wrapper {
  visibility: hidden !important;
  opacity: 0 !important;
}
html:has(.demo-popup-block) app-popup-container:has(app-trusted-partner-agreed-wrapper) {
  opacity: 0;
}
body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
  min-height: calc(100svh - 100px);
  min-height: calc(100dvh - 100px);
  padding-bottom: env(safe-area-inset-bottom);
  min-height: -webkit-fill-available;
  background: white;
  min-height: 100%;
}
body.overlay-show,
body.overlay-show-1 {
  overflow: hidden;
  inset: 0px;
}
body app-root {
  display: flex;
  flex-direction: column;
  flex: 1;
}
body app-root:has(fast-track-body) ai-assistant.fixed {
  display: none;
}
body app-root:has(search-result-loader) app-footer {
  display: none !important;
}
body app-root:has(search-result-loader) ai-assistant {
  opacity: 0 !important;
}
section {
  padding: 30px 0;
}
section.tailor-made-section {
  padding: 15px 0;
}
section.atol-wrapper {
  padding: 30px 0px;
}
@media screen and (max-width: 768px) {
  section {
    padding: 20px 0 !important;
  }
}
img {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
  color: transparent !important;
}
.settings-page-block app-login-and-security-popup .setting-row .value::after {
  content: none !important;
}
.massonry-grid-wrapper:has(summary-deal-list:empty) {
  padding: 0 !important;
}
.price-block .price {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 18px;
  line-height: 20px;
  text-align: right;
  white-space: nowrap;
}
.price-block .price p::first-letter {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}
.price-block .price sup {
  color: var(--dark-blue, #1f2a44);
  font-size: 10px;
  letter-spacing: normal;
  line-height: 20px;
  vertical-align: baseline;
}
.price-block .price b {
  color: var(--dark-blue, #1f2a44);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 2px;
}
app-settings-page .settings-page-wrapper .cta-btn,
app-settings-page .settings-page-wrapper .cta-btn.ml-auto,
app-settings-page .settings-page-wrapper .cta-btn.ml-auto.full,
app-settings-page .settings-page-wrapper .cta-btn.ml-auto.full.black {
  max-width: 250px;
  margin: 0 auto;
}
app-settings-page .settings-page-wrapper.mobile .cta-btn,
app-settings-page .settings-page-wrapper.mobile .cta-btn.ml-auto,
app-settings-page .settings-page-wrapper.mobile .cta-btn.ml-auto.full,
app-settings-page .settings-page-wrapper.mobile .cta-btn.ml-auto.full.black {
  max-width: 100%;
  margin: 0;
}
.map-view div[role=dialog] {
  min-width: 250px !important;
  overflow: hidden;
}
.map-view div[role=dialog] .gm-style-iw-d {
  padding: 10px;
  overflow: hidden !important;
}
.map-view div[role=dialog] .gm-style-iw-d::-webkit-scrollbar {
  width: 10px;
}
.map-view div[role=dialog] .gm-style-iw-c {
  border-radius: 14px !important;
}
.map-view .gm-ui-hover-effect {
  display: none !important;
}
.map-view .gm-style-iw {
  padding: 0;
}
.map-view .gm-style-iw-ch {
  padding-left: 10px;
}
.to-top {
  bottom: 0;
  cursor: pointer;
  margin: 0 25px 25px 0;
  position: fixed;
  right: 0;
  opacity: 0;
  width: 53px;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
  z-index: 101;
}
.to-top.show-scrollTop {
  opacity: 1 !important;
  transition: all 0.2s ease-in-out;
}
.to-top.mobile {
  width: 53px;
  height: 53px;
  margin-bottom: 90px;
}
.to-top svg {
  transform: rotate(-90deg);
  color: #1f2a44;
  height: 15px;
  width: 15px;
}
main-layout {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: initial !important;
}
main-layout > .content {
  max-width: 100%;
  min-width: 1150px;
}
main-layout > .content.mobile {
  max-width: 100%;
  min-width: 100%;
}
main-layout *.mobile .container {
  min-width: 100% !important;
}
main-layout:has(app-header app-beta-banner:not(:empty)) natural-language-search .chat-container {
  margin-top: 50px;
}
main-layout:has(natural-language-search) app-header.mobile app-beta-banner {
  top: 0px !important;
}
main-layout:has(search-result-preview-page) app-header .category-tabs-wrapper,
main-layout:has(search-result-preview-page) app-header .image-block,
main-layout:has(search-result-preview-page) app-header .hero-text {
  display: none !important;
}
main-layout:has(fast-track-body) ai-assistant {
  display: none;
}
main-layout:has(app-footer:not(.stacked)) ai-assistant {
  opacity: 0 !important;
}
main-layout:has(.search-result-preview-wrapper.mobile:not(:has(.deals-wrapper-section))) app-footer {
  display: none !important;
}
main-layout:has(ai-assistant):has(div.bubble) .search-result-preview-wrapper .to-top.show-scrollTop {
  margin-bottom: 100px !important;
}
main-layout:has(app-floating-filter-buttons) .search-result-preview-wrapper .to-top.mobile {
  margin-bottom: 80px !important;
}
main-layout:has(app-floating-filter-buttons) app-rewards-button:not(.static) .progress-wrapper-block {
  bottom: 85px !important;
}
main-layout:has(app-floating-filter-buttons):has(.to-top.mobile.show-scrollTop) app-rewards-button:not(.static) .progress-wrapper-block {
  bottom: 145px !important;
}
main-layout:has(ai-assistant):has(div.expert-card) .search-result-preview-wrapper .to-top.show-scrollTop {
  margin-bottom: 250px;
}
main-layout:has(.to-top.show-scrollTop) .progress-wrapper-block {
  bottom: 85px;
}
main-layout:has(app-floating-filter-buttons) .floating-filter-buttons {
  left: 40%;
  transition: left 0.17s ease-in-out;
}
main-layout:has(.rewards-banner-section.visible) app-rewards-button:not(.static) {
  visibility: hidden;
  opacity: 0;
}
main-layout:has(.rewards-banner:not(.hidden)) app-rewards-button:not(.static) {
  visibility: hidden;
  opacity: 0;
}
main-layout:has(summary-deal-list):has(app-rewards-banner:not(.stacked)) app-rewards-button:not(.static),
main-layout:has(deals-list):has(app-rewards-banner:not(.stacked)) app-rewards-button:not(.static) {
  visibility: hidden;
  opacity: 0;
}
main-layout:has(app-rewards-banner:not(.stacked)) app-rewards-button:not(.static) {
  visibility: hidden;
  opacity: 0;
}
main-layout natural-language-search .chat-container .bubble a {
  color: var(--dark-blue, #1f2a44) !important;
  font-weight: bold;
}
.cdk-virtual-scroll-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: calc(100% - 10px) !important;
  width: 100%;
}
*.mobile .block-title {
  font-size: 22px;
  line-height: initial;
}
*.mobile .badge {
  top: 5px;
  left: 5px;
  padding: 3px 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  z-index: 5;
  border-radius: 4px;
}
*.mobile .phone-number-row > .label,
*.mobile .phone-number-row > label {
  font-size: 12px;
  line-height: normal;
  color: var(--grey, #999999);
  font-weight: 300;
}
*.mobile .features-list .feature-item {
  font-size: 10px;
  padding: 3px 8px;
  min-height: 20px;
}
.block-title {
  font-weight: 700;
  color: var(--dark-blue, #1f2a44);
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1.2;
}
.block-title.mobile {
  font-size: 22px;
  line-height: initial;
}
.block-title.white {
  color: white;
}
.block-title:has(+ .block-subtitle) {
  margin-bottom: 0;
}
.block-text {
  line-height: 1.4;
  color: var(--dark-blue, #1f2a44);
  font-size: 16px;
}
.block-text .clear-btn {
  display: inline-flex;
  font-size: 14px;
}
.block-text.mobile {
  font-size: 14px;
}
.block-text.mobile .clear-btn {
  display: block;
}
deals-list .holidays-list.mobile swiper-container swiper-slide {
  margin-right: 15px;
}
.block-subtitle {
  font-size: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 20px;
  color: #999;
}
.block-subtitle.white {
  color: white;
}
ai-assistant .assistant-content:has(fast-track-body) .fast-track-popup.mobile {
  max-height: 100% !important;
}
fast-track-body:has(lib-connect-or-share) .fast-track-popup,
fast-track-body:has(genie-pick-create) .fast-track-popup,
fast-track-body:has(lib-view-request) .fast-track-popup {
  background-color: #fff;
}
fast-track-body location-group-picker .selected-items {
  padding: 15px 25px 0 !important;
}
fast-track-body location-group-picker .list-control {
  padding: 10px 20px 20px !important;
  border-top: 1px solid var(--border-color);
}
fast-track-body location-group-picker .main-content .outer-popup-content-inner {
  padding: 0px 20px !important;
}
fast-track-body location-group-picker:has(lib-image-card-item) .outer-popup-content-inner,
fast-track-body location-group-picker:has(app-multiselect) .outer-popup-content-inner {
  padding: 0 20px !important;
}
fast-track-body location-group-picker:has(lib-image-card-item) .popup-footer,
fast-track-body location-group-picker:has(app-multiselect) .popup-footer {
  border-top: 1px solid var(--border-color);
  padding: 10px 20px 20px !important;
}
.info-msg {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 17px;
  display: flex;
  align-items: center;
}
.info-msg .icon {
  width: 15px;
  height: 15px;
  display: flex;
  margin-right: 10px;
}
.info-msg .icon svg {
  fill: #fff;
  width: 100%;
  height: 100%;
}
.sr-card-reviews-slider {
  position: relative;
}
.sr-card-reviews-slider .text-reviews-slider .slider-button-next {
  right: 0px !important;
}
.sr-card-reviews-slider .text-reviews-slider .slider-button-prev {
  left: 0px !important;
}
.deals-wrapper-section {
  margin-bottom: 40px;
}
.deals-wrapper-section .slider-button-next,
.deals-wrapper-section .slider-button-prev {
  background-image: none;
  position: absolute;
  bottom: 50%;
  z-index: 1;
}
.deals-wrapper-section .slider-button-next::after,
.deals-wrapper-section .slider-button-prev::after {
  content: none;
}
.deals-wrapper-section .slider-button-next {
  right: -15px;
}
.deals-wrapper-section .slider-button-prev {
  left: -15px;
}
.deals-wrapper-section:has(deals-list:empty) {
  padding: 0 !important;
}
.reviews-block:not(.partners-ribbon) {
  position: relative;
}
.reviews-block:not(.partners-ribbon) .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 0;
}
.reviews-block:not(.partners-ribbon) .swiper-button-prev:after {
  left: 10px;
}
.reviews-block:not(.partners-ribbon) .swiper-button-next:after {
  right: 10px;
}
.reviews-block:not(.partners-ribbon) .swiper-button-next,
.reviews-block:not(.partners-ribbon) .swiper-button-prev {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: calc(50% - 15px);
  right: 10px;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: none;
  background-color: transparent;
}
.reviews-block:not(.partners-ribbon) .swiper-button-next:after,
.reviews-block:not(.partners-ribbon) .swiper-button-prev:after {
  position: absolute;
  transform: translateX(-10%);
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: calc(50% - 15px);
  right: 10px;
}
.reviews-block:not(.partners-ribbon) .swiper-button-next.swiper-button-disabled,
.reviews-block:not(.partners-ribbon) .swiper-button-prev.swiper-button-disabled {
  visibility: hidden;
}
@media (max-width: 768px) {
  .reviews-block:not(.partners-ribbon) .swiper-button-next,
  .reviews-block:not(.partners-ribbon) .swiper-button-prev {
    width: 15%;
    display: none;
  }
}
@media screen and (device-width: 360px) and (device-height: 640px) and (-webkit-device-pixel-ratio: 3) and (orientation: landscape) {
  .reviews-block:not(.partners-ribbon) .swiper-button-next,
  .reviews-block:not(.partners-ribbon) .swiper-button-prev {
    width: 15%;
    display: none;
  }
}
.reviews-block:not(.partners-ribbon) .review-card .title {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
  line-height: 24px;
}
.reviews-block:not(.partners-ribbon) .review-card img {
  width: 150px;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  cursor: pointer;
}
.reviews-block:not(.partners-ribbon) .review-card p {
  text-align: left;
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 22px;
  font-weight: 300;
}
.parnter-slider-block.slider .swiper-container .swiper-wrapper {
  align-items: center;
}
.parnter-slider-block.slider .swiper-container .swiper-wrapper .swiper-slide {
  width: auto;
}
.slider:not(.parnter-slider-block) {
  max-width: 100%;
}
.slider:not(.parnter-slider-block) .swiper-container .swiper-wrapper {
  display: flex;
  align-items: center;
}
.slider:not(.parnter-slider-block) .swiper-container .swiper-wrapper .swiper-slide {
  height: auto !important;
  object-fit: cover;
  overflow-y: hidden !important;
  flex-shrink: 0;
}
.slider:not(.parnter-slider-block) .swiper-container .swiper-button-prev,
.slider:not(.parnter-slider-block) .swiper-container .swiper-button-next {
  z-index: 1;
}
.slider:not(.parnter-slider-block) .swiper-container .swiper-button-prev.swiper-button-disabled,
.slider:not(.parnter-slider-block) .swiper-container .swiper-button-next.swiper-button-disabled {
  visibility: hidden;
}
@-moz-document url-prefix() {
  .custom-scroll {
    scrollbar-color: darkgrey transparent;
    scrollbar-width: thin;
  }
  .custom-scroll::-webkit-scrollbar {
    width: 6px;
  }
  .custom-scroll::-webkit-scrollbar-track {
    background: transparent;
    width: 0;
  }
  .custom-scroll::-webkit-scrollbar-thumb {
    background: darkgrey;
    border-radius: 6px;
  }
  .custom-scroll::-webkit-scrollbar-button {
    background-color: transparent;
    display: none;
  }
}
.custom-scroll::-webkit-scrollbar {
  width: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: transparent;
  width: 0;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: darkgrey;
  border-radius: 6px;
}
.custom-scroll::-webkit-scrollbar-button {
  background-color: transparent;
  display: none;
}
.custom-scroll-horizontal::-webkit-scrollbar {
  height: 4px;
}
.custom-scroll-horizontal::-webkit-scrollbar-track {
  background: transparent;
  height: 0;
}
.custom-scroll-horizontal::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 8px;
}
.custom-scroll-horizontal.with-hover:hover {
  padding-bottom: 8px !important;
  cursor: pointer;
}
.custom-scroll-horizontal.with-hover:hover::-webkit-scrollbar {
  height: 6px;
}
ng-component.header-wrapper {
  display: flex;
  flex-direction: column;
}
.hidden-scroll {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.hidden-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
.hidden-scroll::-webkit-scrollbar-track {
  display: none;
}
.hidden-scroll::-webkit-scrollbar-thumb {
  display: none;
}
.hidden-scroll-modern {
  --scrollbar-width: 0;
  scrollbar-width: none;
  scrollbar-gutter: stable;
}
.hidden-scroll-modern::-webkit-scrollbar {
  width: var(--scrollbar-width);
  height: var(--scrollbar-width);
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10;
}
.popup-content {
  overflow-y: auto;
  flex-grow: 1;
}
.phone-number-row,
.row-with-label {
  padding: 15px 21px;
  position: relative;
  margin-top: 0px;
  border: 1px solid var(--border-color);
  box-sizing: border-box;
  border-radius: var(--border-radius-middle);
  cursor: pointer;
}
.phone-number-row > .label,
.phone-number-row > label,
.row-with-label > .label,
.row-with-label > label {
  font-size: 12px;
  line-height: 12px;
  color: var(--dark-grey, #686868);
  cursor: pointer;
  margin-bottom: 5px;
  display: block;
}
.phone-number-row input,
.row-with-label input {
  width: 100%;
  color: var(--dark-blue, #1f2a44);
  font-size: 16px;
  letter-spacing: 0;
  line-height: initial;
  border-radius: var(--border-radius);
  border: none;
  font-weight: 700;
  background-color: inherit;
}
.phone-number-row input::placeholder,
.row-with-label input::placeholder {
  font-size: 16px;
  letter-spacing: normal;
  font-weight: 400;
  color: rgba(31, 42, 68, 0.5) !important;
}
.phone-number-row textarea,
.row-with-label textarea {
  cursor: text;
  font-size: 14px;
  color: var(--dark-blue, #1f2a44);
  line-height: 16px;
  font-family:
    Lato,
    sans-serif,
    system-ui;
  width: 100%;
  height: 100%;
  border: none;
  resize: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.phone-number-row .row-value,
.row-with-label .row-value {
  font-weight: 700;
  font-size: 15px;
}
.phone-number-row.bold-label .label,
.row-with-label.bold-label .label {
  line-height: 12px;
  color: var(--dark-blue);
  cursor: pointer;
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.phone-number-row.bold-label .row-value,
.row-with-label.bold-label .row-value {
  font-size: 14px;
  line-height: 24px;
  color: var(--dark-blue, #1f2a44);
  font-weight: 400;
}
.phone-number-row.no-radius,
.row-with-label.no-radius {
  border-radius: 0;
}
.phone-number-row.number input,
.row-with-label.number input {
  letter-spacing: 1.2px;
}
.phone-number-row.without-label,
.row-with-label.without-label {
  padding: 21px;
}
.phone-number-row.no-border,
.row-with-label.no-border {
  border-color: transparent;
}
.phone-number-row:not(:has(.input-block-with-button)):has(button),
.row-with-label:not(:has(.input-block-with-button)):has(button) {
  display: flex;
  gap: 15px;
  justify-content: space-between;
}
.agent-base-info-block {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.agent-base-info-block.cutted-logo .logo {
  height: 45px;
}
.agent-base-info-block .logo {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
  object-position: top left;
}
.agent-base-info-block .logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}
.agent-base-info-block .logo.full-view {
  height: 60px;
}
.agent-base-info-block .name {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.agent-base-info-block .name .full-name {
  color: var(--dark-blue, #1f2a44);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  font-family: "Lato", sans-serif;
  margin: 0;
  letter-spacing: 0;
  margin-bottom: 3px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.agent-base-info-block .name .job-title {
  font-family: "Lato";
  font-weight: 300;
  font-size: 12px;
  line-height: 20px;
  color: #999;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.premium-text {
  font-size: 14px;
  line-height: 20px;
  color: var(--dark-blue, #1f2a44);
  font-weight: 400;
}
.outer-popup-content-inner > ng-component:has(.fast-track-call-now-wrapper) {
  height: 100% !important;
}
.outer-popup-content-inner.mobile .terms-wrapper {
  font-size: 14px;
}
.outer-popup-content-inner ng-component {
  flex: 1;
  height: 100%;
}
.terms-wrapper {
  padding: 20px 0px;
  line-height: 1.4;
  color: var(--dark-blue, #1f2a44);
}
.terms-wrapper div h2 {
  font-size: 30px;
  margin: 20px 0 10px 0;
  font-weight: 500;
  line-height: 1.1;
}
.terms-wrapper div p {
  margin: 0 0 10px;
  font-weight: 400;
  line-height: 20px;
}
.terms-wrapper div h3 {
  display: inline-block;
}
.terms-wrapper div strong {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  font-size: 12px;
}
.terms-wrapper div ul {
  padding-left: 25px;
  list-style-type: disc;
  list-style: disc;
}
.terms-wrapper a[target=_blank] {
  color: #555 !important;
  line-height: inherit;
  text-decoration: underline;
  word-break: break-all;
  background-color: transparent !important;
  border-color: transparent !important;
}
.terms-wrapper p:empty,
.terms-wrapper p:blank {
  display: none;
}
.terms-wrapper *::after,
.terms-wrapper *::before {
  padding: revert;
  margin: revert;
}
.terms-wrapper ol,
.terms-wrapper ul {
  margin: 16px 0;
  padding-left: 40px;
  list-style-type: disc;
}
.terms-wrapper ol.bullet-view,
.terms-wrapper ul.bullet-view {
  list-style-type: disc;
}
.terms-wrapper ol li:not(:last-child),
.terms-wrapper ul li:not(:last-child) {
  margin-bottom: 5px;
}
.filter-property-row .search-console-options {
  min-height: auto !important;
}
app-content-container app-multiselect .sr-view .dropdown {
  margin: 0 !important;
}
.deal-item non-tailor-made-card .non-tailor-made-card-wrapper.mobile.last app-flight-data-card-section flight-data-row-standard .card-flight-info-portal.ui-v2.mobile {
  border-bottom: none !important;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-color);
}
.divider.vertical {
  width: 1px;
  height: calc(100% - 30px);
  background: var(--border-color);
  pointer-events: none;
  opacity: 0.5;
  margin-top: 15px;
}
.divider.light {
  background: var(--soft-grey, rgba(221, 221, 221, 0.2588235294));
}
.partners-ribbon {
  padding: 20px 0;
  margin: 0 auto;
}
.partners-ribbon .partner-slider-pagination {
  text-align: center;
  transition: opacity 0.3s;
  transform: translateZ(0);
  width: 100%;
}
.partners-ribbon .partner-slider-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  margin: 0 3px;
}
.partners-ribbon .partner-slider-pagination .swiper-pagination-bullet-active {
  background: var(--dark-blue, #1f2a44);
}
.partners-ribbon .partner-logo {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-ribbon .partner-slider-btn {
  background: transparent;
  border: none;
}
.partners-ribbon .partner-slider-btn svg {
  width: 15px;
  height: 15px;
}
.partners-ribbon.mobile {
  padding-bottom: 0;
}
.travel-recommendation-cards .travel-recommendation-card-item .title a {
  color: var(--main-blue);
}
.atol-text p a[target=_blank] {
  font-size: 16px;
  padding-bottom: 3px;
  color: var(--dark-blue, #1f2a44) !important;
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--dark-blue, #1f2a44) !important;
  cursor: pointer;
}
.partner-logo {
  height: 40px;
  border-radius: 35px;
  min-width: 70px;
  max-width: 120px;
  max-width: max-content;
  max-width: 100px;
  width: 100%;
  padding: 4px 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.partner-logo.bordered {
  border: 1px solid var(--light-grey);
}
.partner-logo img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0px;
  height: 33px;
  max-width: 100px;
}
.partner-image-pill {
  height: 41px;
  border-radius: 35px;
  width: auto;
  padding: 4px 10px;
  background-color: #fff;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  border: 1px solid transparent;
  transition: border 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  border: 1px solid #ededed;
  opacity: 1;
  z-index: 1;
  max-width: 100px;
  width: 100%;
}
.partner-image-pill img {
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  height: 33px;
}
.characteristic-items-wrapper {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  justify-content: center;
}
.characteristic-items-wrapper .characteristic-item {
  display: flex;
  gap: 10px;
  color: var(--dark-blue, #1f2a44);
  align-items: center;
  flex: 0 1 50%;
}
.characteristic-items-wrapper .characteristic-item .icon {
  width: 20px;
  height: 20px;
  background-color: var(--main-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.characteristic-items-wrapper .characteristic-item .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--dark-blue, #1f2a44);
}
.characteristic-items-wrapper .characteristic-item .title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
}
.characteristic-items-wrapper .characteristic-item .subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.result-card-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(298px, 1fr));
  gap: 15px;
}
.map-card .card-wrapper:not(.sr-view) {
  height: 450px !important;
}
.sticky-header .search-result-tabs-wrapper.mobile .search-console-wrapper.open {
  top: 68px;
}
app-hotel-page .added-to-shortlist-block {
  right: 65px;
  top: -65px;
}
app-hotel-page .added-to-shortlist-block.mobile {
  top: 0 !important;
  right: 0 !important;
}
.user-info.video-mode .name-wrapper {
  top: initial;
}
.user-info.video-mode .wide.without-video.single.chat-pic {
  border-radius: 3px;
  cursor: pointer;
}
.user-info.video-mode .wide.without-video.single.chat-pic .name-wrapper .icon {
  width: 50px;
  height: 50px;
}
.user-info.video-mode .wide.without-video.single.chat-pic .name-wrapper .status {
  display: none;
}
.search-result-view .swiper-container .swiper-wrapper .swiper-slide {
  max-width: 530px;
  height: auto;
}
.short-characteristics-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.short-characteristics-wrapper .characteristic-item {
  padding: 0 15px;
  min-width: 150px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
}
.short-characteristics-wrapper .characteristic-item:last-child {
  border-right: none;
}
.short-characteristics-wrapper .characteristic-item .icon {
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.short-characteristics-wrapper .characteristic-item .icon svg {
  width: 100%;
  height: 100%;
  fill: var(--ch_icon_color, #fff);
}
.short-characteristics-wrapper .characteristic-item .type {
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  color: var(--ch_text_color, #fff);
  text-transform: uppercase;
  white-space: nowrap;
}
.short-characteristics-wrapper .characteristic-item .value {
  font-size: 12px;
  line-height: 15px;
  font-weight: 400;
  color: var(--ch_text_color, #fff);
  text-transform: lowercase;
}
.short-characteristics-wrapper .characteristic-item .value::first-letter {
  text-transform: capitalize;
}
.short-characteristics-wrapper.ipad {
  grid-template-columns: repeat(4, 1fr);
}
.short-characteristics-wrapper.ipad .characteristic-item .icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.short-characteristics-wrapper.ipad .characteristic-item .icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
.short-characteristics-wrapper.mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px 0px;
  margin-bottom: 25px;
}
.short-characteristics-wrapper.mobile .characteristic-item {
  width: 100%;
  border-right: 0;
  display: none;
}
.short-characteristics-wrapper.mobile .characteristic-item:nth-child(-n+4) {
  display: flex;
}
.short-characteristics-wrapper.mobile .characteristic-item:nth-child(odd) {
  border-right: 1px solid var(--ch_sep_color, rgba(255, 255, 255, 0.7));
}
.short-characteristics-wrapper.mobile .characteristic-item:last-child {
  border-right: none;
}
@media (orientation: landscape) {
  .short-characteristics-wrapper.mobile {
    display: flex;
    flex-wrap: wrap;
  }
  .short-characteristics-wrapper.mobile .characteristic-item {
    min-width: 150px;
    max-width: 23.5%;
    border-right: 1px solid var(--ch_sep_color, rgba(255, 255, 255, 0.7));
  }
  .short-characteristics-wrapper.mobile .characteristic-item:last-of-type {
    border: 0;
  }
}
.desktop-filter .search-console-wrapper.mobile .search-console-block .filters .cta-btn {
  grid-column: 1/3;
}
.sr-map-pin {
  background-color: #fff;
  border-radius: 10px;
  border-radius: 28px;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 0px 1px, rgba(0, 0, 0, 0.18) 0px 2px 4px;
  color: rgb(34, 34, 34);
  text-align: center;
  padding: 5px;
  font-size: 12px;
  cursor: pointer;
}
.sr-map-pin .price-value {
  font-weight: 900;
  font-size: 14px;
  line-height: 18px;
}
.sr-map-pin:hover {
  transform: scale(1.077);
  transform-origin: 50% 50%;
  transition: transform 150ms ease 0s;
  z-index: 1;
}
.sr-map-pin.active {
  background-color: #000;
  color: white;
  transform: scale(1.077);
  transform-origin: 50% 50%;
  transition: transform 150ms ease 0s;
}
.map-marker-wrapper {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 20px 20px 0 #000;
  text-align: center;
  padding: 3px 5px;
}
.involved-agents-slider {
  position: relative;
}
.involved-agents-slider .swiper-container .swiper-wrapper .swiper-slide {
  max-width: 100%;
  width: 200px;
}
.involved-agents-slider .slider-button-next,
.involved-agents-slider .slider-button-prev {
  background-image: none;
  position: absolute;
  bottom: calc(50% - 22px);
  z-index: 1;
  height: 44px;
  width: 44px;
}
.involved-agents-slider .slider-button-prev {
  left: -15px;
}
.involved-agents-slider .slider-button-next {
  right: -15px;
}
.price p::first-letter {
  font-size: 22px;
  font-weight: 400;
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
shortlist-page .shortlist-page .tailor-made-section {
  padding: 25px 0px 0px !important;
}
fast-track-body {
  height: 100%;
}
.skelet-item {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background-color: #eceef1;
  border-radius: 3px;
}
.skelet-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      100deg,
      transparent 30%,
      rgba(255, 255, 255, 0.65) 50%,
      transparent 70%);
  transform: translateX(-100%);
  animation: skeleton-shimmer 1.9s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}
.skelet-item.dark {
  background-color: #e3e5e8;
}
.skelet-item.dark::after {
  background-image:
    linear-gradient(
      100deg,
      transparent 30%,
      rgba(255, 255, 255, 0.5) 50%,
      transparent 70%);
}
.skelet-item-outline {
  border: 2px solid var(--border-color);
}
.skelet-item-outline.with-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--border-color);
}
.skelet-item-outline.with-spinner svg {
  fill: var(--black);
}
@keyframes skeleton-shimmer {
  100% {
    transform: translateX(100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .skelet-item::after {
    animation: none;
  }
}
.skeleton-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.skeleton-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.skeleton-card.mobile {
  flex-direction: column;
}
.skeleton-card__image {
  border: 1px solid var(--border-color, #dddddd);
  border-right: 0;
  flex: 0 1 300px;
  height: 100%;
  align-self: stretch;
}
.skeleton-card__content {
  padding: 23px 25px;
  border: 1px solid var(--border-color, #dddddd);
  border-left: 0;
  border-radius: 0 14px 14px 0;
}
.skeleton-card:not(.mobile) .skeleton-card__content {
  flex: 1 1 calc(100% - 320px);
  height: 282px;
}
.skeleton-card.mobile .skeleton-card__image {
  border: 0;
  flex: auto;
}
.skeleton-card.mobile .skeleton-card__content {
  flex: auto;
  height: auto;
}
.skeleton-card--secondary {
  display: none;
}
@media (min-width: 2560px) {
  .skeleton-cards {
    flex-direction: row;
    gap: 30px;
  }
  .skeleton-card {
    flex: 1 1 calc(50% - 15px);
  }
  .skeleton-card--secondary {
    display: flex;
  }
}
.skeleton-overlay-box:not(.mobile) {
  align-items: stretch;
}
.skeleton-overlay-box:not(.mobile) .skelet-item.image {
  height: 100%;
}
.holidays-list .swiper-container .swiper-wrapper .swiper-slide {
  height: auto !important;
}
.skelet-sr-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #f2f2f2;
  overflow: hidden;
  flex-shrink: 0;
}
.skelet-sr-card.cruise {
  height: 456px;
}
.skelet-sr-card .top-row {
  display: flex;
  gap: 15px;
}
.skelet-sr-card .middle-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 0 15px;
  justify-content: center;
  flex-grow: 1;
}
.skelet-sr-card .middle-row .items {
  display: flex;
  justify-content: space-between;
  margin: 0px 0 15px;
}
.skelet-sr-card .middle-row .items .item {
  width: 25%;
}
.skelet-sr-card .middle-row .itenerary-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.skelet-sr-card .middle-row .trip-info {
  display: flex;
  justify-content: space-between;
}
.skelet-sr-card .bottom-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 15px 15px;
}
.skelet-sr-card .logo {
  width: 150px;
  height: 170px;
  flex-shrink: 0;
}
.skelet-sr-card .text {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  gap: 15px;
  padding: 15px 15px 0 0;
}
.skelet-sr-card .button-wrapper {
  display: flex;
  gap: 15px;
}
.skelet-sr-card .button-wrapper .small-btn {
  flex-shrink: 0;
}
.skelet-sr-card.mobile.cruise {
  height: 100%;
}
.skelet-sr-card.mobile .logo {
  width: 110px;
  height: 90px;
}
lib-base-message app-multiselect .bricks-wrapper.mobile .brick-block {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px;
}
lib-base-message app-multiselect .bricks-wrapper.mobile .brick-block .brick-item {
  min-width: 0px;
  max-width: 120px;
  width: max-content;
  width: auto;
  border-radius: 4px;
}
lib-base-message app-multiselect .brick-block {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(50px, 90px));
}
lib-base-message app-multiselect .brick-block .brick-item {
  width: 100%;
}
app-popup-container:has(lib-agent-video-preview) .custom-popup.mobile {
  max-width: 100% !important;
  left: 0 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  max-height: 100% !important;
  height: 100% !important;
  width: 100%;
}
app-popup-container:has(app-agent-info-popup app-call-small .video-block.no-signal-overlay:not(.visible)) .custom-popup.show {
  background-color: transparent !important;
}
app-popup-container:has(app-how-we-work-popup) .custom-popup.mobile.bottom {
  max-width: 100% !important;
  left: 0px !important;
  bottom: 0px !important;
  border-radius: 14px 14px 0 0 !important;
}
.skelet-agent-card {
  width: 100%;
  height: 310px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 15px;
  border: 1px solid #f2f2f2;
}
.skelet-agent-card.mobile {
  height: 300px;
}
.skelet-agent-card .top-row {
  display: flex;
  gap: 15px;
}
.skelet-agent-card .top-row .logo {
  flex-shrink: 0;
}
.skelet-agent-card .top-row .text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
}
.skelet-agent-card .middle-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.skelet-agent-card .middle-row .text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.skelet-agent-card .middle-row .items {
  display: flex;
  gap: 5px;
  justify-content: flex-start;
}
.skelet-agent-card .button-wrapper {
  display: flex;
  gap: 10px;
}
.skelet-agent-card .button-wrapper .small-btn {
  flex-shrink: 0;
}
.tooltip-wrapper {
  position: absolute;
  width: 90%;
  min-height: 100px;
  left: 5%;
  border-radius: 14px;
  bottom: 90px;
  background-color: #fff;
  color: var(--dark-blue, #1f2a44);
  z-index: 12;
  border: 1px solid #ddd;
  box-sizing: border-box;
  box-shadow: 0 0 13px rgba(31, 42, 68, 0.1);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 150px;
  gap: 10px;
}
.tooltip-wrapper .content {
  overflow-y: auto;
}
.tooltip-wrapper .close-popup-btn {
  width: 17px;
  height: 17px;
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 15px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  background: var(--main-blue);
  z-index: 5;
  border-radius: 4px;
  max-width: calc(100% - 20px);
}
.badge.red {
  background: var(--main-red);
}
.badge.green {
  background: var(--main-green);
}
.badge.yellow {
  background: var(--yellow);
}
.badge.orange {
  background: var(--main-orange);
}
.badge.black {
  background: var(--black);
}
.badge.black.opacity {
  background: rgba(42, 46, 53, 0.8588235294);
}
.badge.top-right {
  top: 10px;
  right: 10px;
  left: auto;
}
.badge.bottom-left {
  bottom: 10px;
  top: auto;
}
.badge.bottom-right {
  bottom: 10px;
  right: 10px;
  top: auto;
  left: auto;
}
.lsm-tooltip {
  text-align: center;
  padding: 0 50px;
}
.lsm-tooltip [tooltip] {
  display: inline-block;
  margin: 50px 20px;
  width: 180px;
  height: 50px;
  border: 1px solid gray;
  border-radius: 5px;
  line-height: 50px;
  text-align: center;
}
.ng-tooltip {
  font-size: 15px;
  text-align: left;
  color: black;
  padding: 3px 8px;
  background: white;
  border-radius: 6px;
  border-style: solid;
  border-color: gray;
  z-index: 1000;
  opacity: 1;
}
.ng-tooltip:after {
  content: "";
  position: absolute;
  border-style: solid;
}
.ng-tooltip-top:after {
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 10px;
  border-color: grey transparent transparent transparent;
}
.ng-tooltip-show {
  opacity: 1;
}
.agent-media-content-slider {
  position: relative;
}
.agent-media-content-slider swiper {
  margin: 0;
}
.agent-media-content-slider .swiper-container .swiper-wrapper .swiper-slide {
  width: 261px;
}
.agent-media-content-slider .slider-button-prev,
.agent-media-content-slider .slider-button-next {
  bottom: calc(50% - 22px);
}
.agent-media-content-slider .slider-button-prev {
  left: 5px;
}
.agent-media-content-slider .slider-button-next {
  right: -10px;
}
.logos-block {
  display: flex;
}
.logos-block .agent-item {
  background-image:
    linear-gradient(
      to bottom,
      white 40%,
      #a0a0a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  flex-shrink: 0;
}
.logos-block .agent-item:not(:first-child) {
  margin-left: -7px;
}
.logos-block .agent-item:not(:first-child).big {
  margin-left: -20px;
}
.logos-block .agent-item:last-child:not(:only-child) {
  opacity: 0.1;
}
.logos-block .agent-item:last-of-type {
  z-index: 1;
}
.logos-block .agent-item.penultimate-child {
  opacity: 0.5;
  z-index: 2;
}
.logos-block .agent-item.with-border {
  border: 2px solid white;
}
.logos-block .agent-item.big {
  height: 60px;
  width: 60px;
}
.logos-block .agent-item.big img {
  height: 56px;
  width: 55px;
}
.logos-block .agent-item img {
  height: 31px;
  width: 30px;
  object-fit: cover;
  border-radius: 50%;
}
.indicator {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid white;
}
.indicator.online-indicator {
  bottom: 0px;
  top: auto;
  right: 0px;
  left: auto;
  background: var(--online-colour);
}
.indicator.new-message-indicator {
  top: auto;
  left: 0px;
  bottom: 0;
  background: var(--main-red);
}
.indicator.static {
  position: static;
  display: inline-block;
  flex-shrink: 0;
}
.reviews-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--main-green);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  margin: 5px 0 4px;
}
.reviews-row .rate-val {
  width: auto;
  display: inline-flex;
  font-size: 12px;
  padding: 2px 5px;
  background-color: var(--main-green);
  border-radius: 3px;
  color: white;
  font-weight: 400;
  width: 27px;
  text-align: center;
}
.review-card {
  max-width: 100%;
  padding: 0;
  color: var(--dark-blue, #1f2a44);
  color: inherit;
  display: flex;
  flex-direction: column;
  align-self: baseline;
}
.review-card .star-rating {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  max-width: 90px;
}
.review-card .star-rating svg {
  height: 20px;
  margin-right: 4px;
}
.review-card .star-rating svg:last-child {
  margin-right: 0px;
}
.review-card .review-author {
  display: flex;
  align-items: center;
}
.review-card .review-author .logo {
  width: 67px;
  height: 67px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
}
.review-card .review-author .logo img {
  object-fit: cover;
}
.review-card .review-author .data {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.review-card .review-author .data .name {
  color: var(--dark-blue, #1f2a44);
  color: inherit;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
}
.review-card .review-author .data .date {
  color: var(--dark-blue, #1f2a44);
  color: inherit;
  font-size: 12px;
  font-weight: 300;
}
.agent-slider-row agent-multimode-slider .slider-wrapper swiper-container swiper-slide lib-using-travel-experts-banner .cta-section {
  padding-top: 20px;
}
site-search swiper-container .swiper-slide,
site-search swiper-container swiper-slide {
  width: 262px !important;
}
agent-multimode-slider swiper-container .swiper-slide,
agent-multimode-slider swiper-container swiper-slide {
  width: 232px !important;
}
.slider-block #pagination,
.slider-block #reviews-slider-pagination,
.reviews-wrapper #pagination,
.reviews-wrapper #reviews-slider-pagination {
  display: flex;
  grid-gap: 5px;
  gap: 5px;
  padding: 15px 0 0px;
  justify-content: center;
}
.slider-block #pagination .swiper-pagination-bullet,
.slider-block #reviews-slider-pagination .swiper-pagination-bullet,
.reviews-wrapper #pagination .swiper-pagination-bullet,
.reviews-wrapper #reviews-slider-pagination .swiper-pagination-bullet {
  background-color: var(--main-blue);
}
@media screen and (max-width: 768px) {
  .demo-popup-block > div {
    padding: 25px !important;
    max-height: 370px !important;
    max-width: calc(100% - 30px) !important;
  }
}
[full-screen-overlay],
[full-screen-overlay-unload] {
  position: fixed;
  height: var(--window-height, 100svh);
  min-height: 100vh;
  width: 100vw;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  transition-delay: 0s;
}
[full-screen-overlay].show,
[full-screen-overlay-unload].show {
  opacity: 1;
  z-index: 10000;
  pointer-events: all;
  background: rgba(0, 0, 0, 0.5);
  transition-delay: 0.12s;
}
[full-screen-overlay-unload] {
  z-index: 10000;
}
.reviews-slider.tailor-made-slider .swiper-pagination-bullet {
  width: 41px;
  height: 41px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}
.reviews-slider.tailor-made-slider .swiper-pagination-bullet-active {
  color: #fff;
  background: red;
}
.search-result-preview-wrapper:has(search-result-loader) app-search-params {
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.search-result-preview-wrapper:has(search-result-loader) app-search-params .controls {
  opacity: 0;
}
.search-result-preview-wrapper:has(search-result-loader) .sr-search-console-block.mobile {
  display: none;
}
.search-result-preview-wrapper:has(search-result-loader) .mobile-filter-buttons.mobile {
  top: 67px;
}
.search-result-preview-wrapper:has(.tabs-skeleton) .sr-search-console-block.mobile {
  display: block !important;
}
.full-offer-list.mobile .deal-item non-tailor-made-card .partner-info-mobile:has(.additional-icon-icons) {
  grid-template-columns: 70px 20px minmax(75px, 1fr) 95px;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
