@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
 * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */
@import url("//fonts.googleapis.com/css?family=Poppins:ital,wght@0,100;0,200;0,200;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,200;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("//fonts.googleapis.com/css2?family=Georama:ital,wght@0,100..900;1,100..900&display=swap");
.listings {
  /* Badge: Top Left (Category) */
  /* Content & Tooltip */
}
.listings .tour-col {
  display: flex;
  flex-direction: column;
}
.listings .tour-card {
  display: flex;
  flex-direction: column !important;
  background: #fff;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  width: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
}
.listings .tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.listings .tour_image_wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  flex-shrink: 0;
  overflow: hidden;
  background-color: #eee;
  border-radius: 0;
}
.listings .tour_image_wrapper .info_icon_btn {
  color: #d32f2f;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
  position: absolute;
  right: 20px;
  bottom: 15px;
  background: white;
  border-radius: 100%;
}
.listings .tour_image_wrapper .info_icon_btn:hover {
  opacity: 0.8;
}
.listings .tour_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  border-radius: 0 !important;
}
.listings .tour_badge_left {
  position: absolute;
  left: -8px;
  top: -8px;
  z-index: 10;
  overflow: visible;
}
.listings .tour_badge_left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  z-index: -1;
}
.listings .tour_badge_left_inner {
  background-color: #ffffff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}
.listings .tour_badge_left_inner img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  display: block;
}
.listings .tour_badge_right {
  position: absolute;
  top: 12px;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.listings .tour-ribbon-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.listings .tour-ribbon-wrapper .tour_badge_right {
  top: 35px;
}
.listings .brand-tag {
  margin: 0px;
  font-style: italic;
}
.listings .brand-tag:hover {
  cursor: pointer;
  background: red;
  color: white;
}
.listings .status_badge_item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 30px 0 0 30px;
  height: 28px;
  box-shadow: -2px 2px 6px rgba(0, 0, 0, 0.15);
  padding: 0 5px;
  width: 35px;
  overflow: hidden;
  transition: width 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  cursor: default;
  white-space: nowrap;
}
.listings .status_badge_item:hover {
  width: 165px;
}
.listings .status_badge_item:hover .status_badge_text {
  opacity: 1;
  margin-left: 6px;
  margin-right: 12px;
}
.listings .status_badge_icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.listings .status_badge_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.listings .status_badge_text {
  opacity: 0;
  font-size: 11px;
  font-weight: 700;
  color: #333;
  margin-left: 0px;
  transition: opacity 0.2s ease, margin 0.2s ease;
  pointer-events: none;
}
.listings .tour_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 14px 14px 14px;
  justify-content: space-between;
  width: 100%;
}
.listings .tour_meta_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: #666;
  margin-bottom: 8px;
  line-height: 1;
}
.listings .tour_meta_left {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.listings .tour_meta_item {
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  font-weight: 600;
  text-transform: uppercase;
}
.listings .tour_meta_item--code {
  cursor: pointer;
}
.listings .tour_meta_item--code-label {
  color: #d32f2f;
}
.listings .tour_meta_right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.listings .location_badge {
  background-color: #ffebee;
  color: #d32f2f;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}
.listings .new_badge {
  background-color: #ffebee;
  color: #d32f2f;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #ffcdd2;
  text-transform: uppercase;
}
.listings .new_badge svg {
  color: #FFD700;
}
.listings .tour_image_overlay_wrapper {
  position: relative;
  height: 100%;
}
.listings .new_badge--overlay {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background-color: #d32f2f;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.listings .tour_title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 4px;
  min-height: 60px; /* Keeps cards aligned */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  cursor: help;
}
.listings .tour_title.ant-typography {
  margin-bottom: 4px !important;
}
.listings .tour_footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid #f5f5f5;
  padding-top: 5px;
  margin-top: auto;
}
.listings .price_block {
  display: flex;
  flex-direction: column;
}
.listings .price_label {
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}
.listings .price_value {
  font-size: 18px;
  font-weight: 700;
  color: #d32f2f;
  line-height: 1;
}
.listings .select_btn {
  background-color: #d32f2f;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  text-transform: uppercase;
  display: inline-block;
}
.listings .select_btn:hover {
  background-color: #b71c1c;
  color: #fff;
}
@media (max-width: 768px) {
  .listings .tour_title {
    font-size: 13px;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    min-height: unset;
  }
  .listings .price_value {
    font-size: 15px;
  }
}

.brand_logo_drop_shadow {
  filter: drop-shadow(1px 2px 0px #696969);
}

.badge-popover-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  max-width: 400px;
}
.badge-popover-content span {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: center;
}
.badge-popover-content svg {
  display: block;
  flex-shrink: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

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

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.trix-content .attachment-gallery > action-text-attachment,
.trix-content .attachment-gallery > .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--2 > .attachment, .trix-content .attachment-gallery.attachment-gallery--4 > action-text-attachment,
.trix-content .attachment-gallery.attachment-gallery--4 > .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

.trix-content action-text-attachment .attachment {
  padding: 0 !important;
  max-width: 100% !important;
}

.actiontext-content {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.actiontext-table {
  border-collapse: collapse !important;
  width: 100% !important;
  margin-top: 20px !important;
}

.actiontext-table th, .actiontext-table td {
  border: 1px solid black !important;
  padding: 8px !important;
  text-align: left !important;
}

.actiontext-table th {
  background-color: #f2f2f2 !important;
}

.actiontext-link {
  color: #007BFF !important;
}

.trix-content {
  line-height: 1.5;
}

.trix-content * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.trix-content h1 {
  font-size: 1.2em;
  line-height: 1.2;
}

.trix-content blockquote {
  border: 0 solid #ccc;
  border-left-width: 0.3em;
  margin-left: 0.3em;
  padding-left: 0.6em;
}

.trix-content [dir=rtl] blockquote,
.trix-content blockquote[dir=rtl] {
  border-width: 0;
  border-right-width: 0.3em;
  margin-right: 0.3em;
  padding-right: 0.6em;
}

.trix-content li {
  margin-left: 1em;
}

.trix-content [dir=rtl] li {
  margin-right: 1em;
}

.trix-content pre {
  display: inline-block;
  width: 100%;
  vertical-align: top;
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.5em;
  white-space: pre;
  background-color: #eee;
  overflow-x: auto;
}

.trix-content img {
  max-width: 100%;
  height: auto;
}

.trix-content .attachment {
  display: inline-block;
  position: relative;
  max-width: 100%;
}

.trix-content .attachment a {
  color: inherit;
  text-decoration: none;
}

.trix-content .attachment a:hover, .trix-content .attachment a:visited:hover {
  color: inherit;
}

.trix-content .attachment__caption {
  text-align: center;
}

.trix-content .attachment__caption .attachment__name + .attachment__size::before {
  content: " •";
}

.trix-content .attachment--preview {
  width: 100%;
  text-align: center;
}

.trix-content .attachment--preview .attachment__caption {
  color: #666;
  font-size: 0.9em;
  line-height: 1.2;
}

.trix-content .attachment--file {
  color: #333;
  line-height: 1;
  margin: 0 2px 2px 2px;
  padding: 0.4em 1em;
  border: 1px solid #bbb;
  border-radius: 5px;
}

.trix-content .attachment-gallery {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.trix-content .attachment-gallery .attachment {
  flex: 1 0 33%;
  padding: 0 0.5em;
  max-width: 33%;
}

.trix-content .attachment-gallery.attachment-gallery--2 .attachment, .trix-content .attachment-gallery.attachment-gallery--4 .attachment {
  flex-basis: 50%;
  max-width: 50%;
}

/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
:root {
  --react-pdf-annotation-layer: 1;
  --annotation-unfocused-field-background: url("data:image/svg+xml;charset=UTF-8,<svg width='1px' height='1px' xmlns='http://www.w3.org/2000/svg'><rect width='100%' height='100%' style='fill:rgba(0, 54, 255, 0.13);'/></svg>");
  --input-focus-border-color: Highlight;
  --input-focus-outline: 1px solid Canvas;
  --input-unfocused-border-color: transparent;
  --input-disabled-border-color: transparent;
  --input-hover-border-color: black;
  --link-outline: none;
}

@media screen and (forced-colors: active) {
  :root {
    --input-focus-border-color: CanvasText;
    --input-unfocused-border-color: ActiveText;
    --input-disabled-border-color: GrayText;
    --input-hover-border-color: Highlight;
    --link-outline: 1.5px solid LinkText;
  }
  .annotationLayer .textWidgetAnnotation :is(input, textarea):required,
  .annotationLayer .choiceWidgetAnnotation select:required,
  .annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
    outline: 1.5px solid selectedItem;
  }
  .annotationLayer .linkAnnotation:hover {
    backdrop-filter: invert(100%);
  }
}
.annotationLayer {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform-origin: 0 0;
  z-index: 3;
}

.annotationLayer[data-main-rotation="90"] .norotate {
  transform: rotate(270deg) translateX(-100%);
}

.annotationLayer[data-main-rotation="180"] .norotate {
  transform: rotate(180deg) translate(-100%, -100%);
}

.annotationLayer[data-main-rotation="270"] .norotate {
  transform: rotate(90deg) translateY(-100%);
}

.annotationLayer canvas {
  position: absolute;
  width: 100%;
  height: 100%;
}

.annotationLayer section {
  position: absolute;
  text-align: initial;
  pointer-events: auto;
  box-sizing: border-box;
  margin: 0;
  transform-origin: 0 0;
}

.annotationLayer .linkAnnotation {
  outline: var(--link-outline);
}

.textLayer.selecting ~ .annotationLayer section {
  pointer-events: none;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a {
  position: absolute;
  font-size: 1em;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.annotationLayer :is(.linkAnnotation, .buttonWidgetAnnotation.pushButton) > a:hover {
  opacity: 0.2;
  background: rgb(255, 255, 0);
  box-shadow: 0 2px 10px rgb(255, 255, 0);
}

.annotationLayer .textAnnotation img {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea),
.annotationLayer .choiceWidgetAnnotation select,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  background-image: var(--annotation-unfocused-field-background);
  border: 2px solid var(--input-unfocused-border-color);
  box-sizing: border-box;
  font: calc(9px * var(--scale-factor)) sans-serif;
  height: 100%;
  margin: 0;
  vertical-align: top;
  width: 100%;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):required,
.annotationLayer .choiceWidgetAnnotation select:required,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:required {
  outline: 1.5px solid red;
}

.annotationLayer .choiceWidgetAnnotation select option {
  padding: 0;
}

.annotationLayer .buttonWidgetAnnotation.radioButton input {
  border-radius: 50%;
}

.annotationLayer .textWidgetAnnotation textarea {
  resize: none;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea)[disabled],
.annotationLayer .choiceWidgetAnnotation select[disabled],
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input[disabled] {
  background: none;
  border: 2px solid var(--input-disabled-border-color);
  cursor: not-allowed;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input:hover {
  border: 2px solid var(--input-hover-border-color);
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):hover,
.annotationLayer .choiceWidgetAnnotation select:hover,
.annotationLayer .buttonWidgetAnnotation.checkBox input:hover {
  border-radius: 2px;
}

.annotationLayer .textWidgetAnnotation :is(input, textarea):focus,
.annotationLayer .choiceWidgetAnnotation select:focus {
  background: none;
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) :focus {
  background-image: none;
  background-color: transparent;
}

.annotationLayer .buttonWidgetAnnotation.checkBox :focus {
  border: 2px solid var(--input-focus-border-color);
  border-radius: 2px;
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.radioButton :focus {
  border: 2px solid var(--input-focus-border-color);
  outline: var(--input-focus-outline);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after,
.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  background-color: CanvasText;
  content: "";
  display: block;
  position: absolute;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  height: 80%;
  left: 45%;
  width: 1px;
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before {
  transform: rotate(45deg);
}

.annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: rotate(-45deg);
}

.annotationLayer .buttonWidgetAnnotation.radioButton input:checked::before {
  border-radius: 50%;
  height: 50%;
  left: 30%;
  top: 20%;
  width: 50%;
}

.annotationLayer .textWidgetAnnotation input.comb {
  font-family: monospace;
  padding-left: 2px;
  padding-right: 0;
}

.annotationLayer .textWidgetAnnotation input.comb:focus {
  /*
   * Letter spacing is placed on the right side of each character. Hence, the
   * letter spacing of the last character may be placed outside the visible
   * area, causing horizontal scrolling. We avoid this by extending the width
   * when the element has focus and revert this when it loses focus.
   */
  width: 103%;
}

.annotationLayer .buttonWidgetAnnotation:is(.checkBox, .radioButton) input {
  appearance: none;
}

.annotationLayer .popupTriggerArea {
  height: 100%;
  width: 100%;
}

.annotationLayer .fileAttachmentAnnotation .popupTriggerArea {
  position: absolute;
}

.annotationLayer .popupWrapper {
  position: absolute;
  font-size: calc(9px * var(--scale-factor));
  width: 100%;
  min-width: calc(180px * var(--scale-factor));
  pointer-events: none;
}

.annotationLayer .popup {
  position: absolute;
  max-width: calc(180px * var(--scale-factor));
  background-color: rgb(255, 255, 153);
  box-shadow: 0 calc(2px * var(--scale-factor)) calc(5px * var(--scale-factor)) rgb(136, 136, 136);
  border-radius: calc(2px * var(--scale-factor));
  padding: calc(6px * var(--scale-factor));
  margin-left: calc(5px * var(--scale-factor));
  cursor: pointer;
  font: message-box;
  white-space: normal;
  word-wrap: break-word;
  pointer-events: auto;
}

.annotationLayer .popup > * {
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .popup h1 {
  display: inline-block;
}

.annotationLayer .popupDate {
  display: inline-block;
  margin-left: calc(5px * var(--scale-factor));
}

.annotationLayer .popupContent {
  border-top: 1px solid rgb(51, 51, 51);
  margin-top: calc(2px * var(--scale-factor));
  padding-top: calc(2px * var(--scale-factor));
}

.annotationLayer .richText > * {
  white-space: pre-wrap;
  font-size: calc(9px * var(--scale-factor));
}

.annotationLayer .highlightAnnotation,
.annotationLayer .underlineAnnotation,
.annotationLayer .squigglyAnnotation,
.annotationLayer .strikeoutAnnotation,
.annotationLayer .freeTextAnnotation,
.annotationLayer .lineAnnotation svg line,
.annotationLayer .squareAnnotation svg rect,
.annotationLayer .circleAnnotation svg ellipse,
.annotationLayer .polylineAnnotation svg polyline,
.annotationLayer .polygonAnnotation svg polygon,
.annotationLayer .caretAnnotation,
.annotationLayer .inkAnnotation svg polyline,
.annotationLayer .stampAnnotation,
.annotationLayer .fileAttachmentAnnotation {
  cursor: pointer;
}

.annotationLayer section svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.annotationLayer .annotationTextContent {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: transparent;
  user-select: none;
  pointer-events: none;
}

.annotationLayer .annotationTextContent span {
  width: 100%;
  display: inline-block;
}

/* Copyright 2014 Mozilla Foundation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
:root {
  --react-pdf-text-layer: 1;
  --highlight-bg-color: rgba(180, 0, 170, 1);
  --highlight-selected-bg-color: rgba(0, 100, 0, 1);
}

@media screen and (forced-colors: active) {
  :root {
    --highlight-bg-color: Highlight;
    --highlight-selected-bg-color: ButtonText;
  }
}
[data-main-rotation="90"] {
  transform: rotate(90deg) translateY(-100%);
}

[data-main-rotation="180"] {
  transform: rotate(180deg) translate(-100%, -100%);
}

[data-main-rotation="270"] {
  transform: rotate(270deg) translateX(-100%);
}

.textLayer {
  position: absolute;
  text-align: initial;
  inset: 0;
  overflow: hidden;
  line-height: 1;
  text-size-adjust: none;
  forced-color-adjust: none;
  transform-origin: 0 0;
  z-index: 2;
}

.textLayer :is(span, br) {
  color: transparent;
  position: absolute;
  white-space: pre;
  cursor: text;
  margin: 0;
  transform-origin: 0 0;
}

/* Only necessary in Google Chrome, see issue 14205, and most unfortunately
 * the problem doesn't show up in "text" reference tests. */
.textLayer span.markedContent {
  top: 0;
  height: 0;
}

.textLayer .highlight {
  margin: -1px;
  padding: 1px;
  background-color: var(--highlight-bg-color);
  border-radius: 4px;
}

.textLayer .highlight.appended {
  position: initial;
}

.textLayer .highlight.begin {
  border-radius: 4px 0 0 4px;
}

.textLayer .highlight.end {
  border-radius: 0 4px 4px 0;
}

.textLayer .highlight.middle {
  border-radius: 0;
}

.textLayer .highlight.selected {
  background-color: var(--highlight-selected-bg-color);
}

/* Avoids https://github.com/mozilla/pdf.js/issues/13840 in Chrome */
.textLayer br::selection {
  background: transparent;
}

.textLayer .endOfContent {
  display: block;
  position: absolute;
  inset: 100% 0 0;
  z-index: -1;
  cursor: default;
  user-select: none;
}

.textLayer.selecting .endOfContent {
  top: 0;
}

.hiddenCanvasElement {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  display: none;
}

.slick-track {
  margin: unset;
}

.ant-layout-content {
  position: relative;
}

.ant-btn-variant-solid {
  background-color: #dc1a22;
  color: #FFFFFF;
  border-radius: 20px;
}
.ant-btn-variant-solid:not(:disabled):not(.ant-btn-disabled):hover {
  background-color: #dc1a22;
}

.ant-btn-color-primary.ant-btn-variant-outlined {
  border-color: #dc1a22;
  color: #dc1a22;
  border-radius: 20px;
}
.ant-btn-color-primary.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover {
  border-color: #dc1a22;
  color: #dc1a22;
}

.ant-btn-color-default.ant-btn-variant-filled {
  color: #dc1a22;
}

.ant-btn-color-primary {
  box-shadow: 0 2px 0 rgba(220, 176, 98, 0.1);
}

.ant-btn-color-primary.ant-btn-variant-filled {
  background: #dc1a22;
  color: #FFFFFF;
}
.ant-btn-color-primary.ant-btn-variant-filled:not(:disabled):not(.ant-btn-disabled):hover {
  background: #dc1a22;
}

.ant-btn-sm {
  font-size: 10px;
}

.ant-btn-color-primary.ant-btn-variant-text {
  color: #dc1a22;
}
.ant-btn-color-primary.ant-btn-variant-text:not(:disabled):not(.ant-btn-disabled):hover {
  color: #dc1a22;
  background: transparent;
}

.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover {
  border-color: #dc1a22;
}

.ant-input-outlined:hover, .ant-input-outlined:focus,
.ant-picker-outlined:hover,
.ant-picker-outlined:focus {
  border-color: #dc1a22;
}
.ant-input-outlined:focus,
.ant-picker-outlined:focus {
  box-shadow: 0 2px 0 rgba(220, 176, 98, 0.1);
}

.ant-input-filled:focus {
  border-color: #dc1a22;
}

[class~=ant-carousel] [class~=slick-dots] {
  bottom: 30px;
}
[class~=ant-carousel] [class~=slick-dots] li {
  width: 15px !important;
  height: 15px !important;
  margin-inline: 3px;
}
[class~=ant-carousel] [class~=slick-dots] li button {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  opacity: 1;
}
[class~=ant-carousel] [class~=slick-dots] li button::before {
  width: 100%;
  height: 100%;
  content: "";
}
[class~=ant-carousel] [class~=slick-dots] li.slick-active button {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-color: white;
}
[class~=ant-carousel] [class~=slick-dots] li.slick-active:after {
  display: none;
}
[class~=ant-carousel] .slick-prev,
[class~=ant-carousel] .slick-next {
  width: unset;
  height: unset;
}
[class~=ant-carousel] .slick-prev::before, [class~=ant-carousel] .slick-prev::after,
[class~=ant-carousel] .slick-next::before,
[class~=ant-carousel] .slick-next::after {
  display: none;
}
[class~=ant-carousel] .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #dc1a22;
}

.ant-select-dropdown .ant-select-item-option-active:not(.ant-select-item-option-disabled),
.ant-select-dropdown .ant-select-item-option-selected:not(.ant-select-item-option-disabled) {
  background-color: transparent;
  color: #dc1a22;
}

.ant-select-dropdown .ant-select-item:not(.ant-select-item-option-disabled) {
  color: rgba(0, 0, 0, 0.5019607843);
}

.ant-select-outlined:not(.ant-select-disabled):not(.ant-select-customize-input):not(.ant-pagination-size-changer):hover .ant-select-selector {
  border-color: #dc1a22 !important;
  box-shadow: none !important;
}

.ant-menu-light.ant-menu-horizontal > .ant-menu-item:hover::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-item-selected::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-item-active::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-submenu-open::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-submenu-selected::after, .ant-menu-light.ant-menu-horizontal > .ant-menu-submenu-active::after {
  display: none !important;
}
.ant-menu-light .ant-menu-item-selected {
  background-color: transparent !important;
  color: unset !important;
  text-transform: uppercase;
}

.ant-menu .ant-menu-item, .ant-menu .ant-menu-submenu,
.ant-menu-submenu-popup > .ant-menu .ant-menu-item,
.ant-menu-submenu-popup > .ant-menu .ant-menu-submenu {
  border-radius: 0;
}

.ant-float-btn-default {
  background-color: rgba(242, 242, 242, 0.5019607843);
  width: 42px;
  height: 42px;
  border-radius: 50px;
}

.ant-float-btn .ant-float-btn-body .ant-float-btn-content .ant-float-btn-icon {
  width: 32px;
}
.ant-float-btn .ant-float-btn-body .ant-float-btn-content .ant-float-btn-icon svg {
  color: #dc1a22;
}

.ant-breadcrumb {
  font-size: 14px;
}
.ant-breadcrumb .ant-breadcrumb-link {
  color: #dc1a22;
}
.ant-breadcrumb .ant-breadcrumb-separator {
  color: #dc1a22;
}

.ant-tabs > .ant-tabs-nav .ant-tabs-nav-operations {
  display: none;
}

.ant-pagination {
  gap: 10px;
  flex-flow: row wrap;
}
.ant-pagination .ant-pagination-prev a:not([disabled]),
.ant-pagination .ant-pagination-next a:not([disabled]) {
  color: #000000;
}
.ant-pagination .ant-pagination-prev a:not([disabled]):hover,
.ant-pagination .ant-pagination-next a:not([disabled]):hover {
  color: #dc1a22;
}
.ant-pagination .ant-pagination-item {
  border-radius: 24px;
}
.ant-pagination .ant-pagination-item a {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #959492;
  padding: 1px 6px;
}
.ant-pagination .ant-pagination-item-active {
  border: none;
  background: #dc1a22;
}
.ant-pagination .ant-pagination-item-active a {
  color: white;
}

.ant-checkbox .ant-checkbox-inner {
  border-color: #545047;
}
.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #dc1a22;
  border-color: transparent;
}
.ant-checkbox-wrapper:not(.ant-checkbox-wrapper-disabled):hover .ant-checkbox-inner {
  border-color: #dc1a22;
}
.ant-checkbox-wrapper:not(.ant-checkbox-wrapper-disabled):hover .ant-checkbox-checked:not(.ant-checkbox-disabled) .ant-checkbox-inner {
  background-color: #dc1a22;
}

.ant-form-item-control-input-content .ant-picker,
.ant-form-item-control-input-content .ant-upload {
  width: 100%;
}

@media only screen and (min-width: 769px) {
  .ant-pagination {
    gap: 24px;
  }
}
.header {
  position: relative;
  width: 100%;
  height: 55px;
  background: #dc1a22;
  padding-inline-end: 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.header #nav-buttons {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  position: relative;
}
.header #toggle-menu {
  height: 35px;
  background: transparent;
  border: none;
  box-shadow: none;
  width: 35px;
  height: 35px;
  padding: 6px 5px 6px 5px;
  border-radius: 23px;
  color: #ffffff;
}
.header .nav-menu {
  border: none;
  display: none;
}
.header .logo {
  z-index: 2;
  position: relative;
}
.header .logo.logo_mobile {
  padding-top: 25px;
}

.footer {
  background: #dc1a22;
  position: relative;
}
.footer_body {
  padding: 50px 30px;
}
.footer_links > div {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
  padding: 10px 0;
  flex: 100%;
}
.footer_links .ant-space {
  width: 100%;
}
.footer_links .link-group-title {
  font-family: Poppins, san-serif;
  font-family: Poppins;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffffff;
  grid-row-start: 2 span;
}
.footer_links a {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #f6d4c6;
  text-transform: uppercase;
}
.footer_links div:has(> a + a) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  column-gap: 34px;
}
.footer_links .contact-info .ant-flex {
  display: inline-flex;
}
.footer_links .contact-info .link-group-title {
  text-align: center;
}
.footer_links .contact-info a {
  display: flex;
  align-items: center;
}
.footer #copyright {
  text-align: center;
  padding: 20px 0 0;
}
.footer #copyright span {
  font-family: Poppins, san-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.93px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #f6d4c6;
}

#nav-drawer.ant-drawer-content {
  background: #ffffff;
}
#nav-drawer.ant-drawer-content .ant-drawer-header {
  border: none;
}
#nav-drawer.ant-drawer-content .ant-drawer-header-title {
  justify-content: flex-end;
}
#nav-drawer.ant-drawer-content .ant-drawer-close {
  width: 35px;
  height: 35px;
  padding: 6px 5px 6px 5px;
  border-radius: 23px;
  background: transparent;
  border: none;
  box-shadow: none;
}
#nav-drawer.ant-drawer-content .ant-drawer-body {
  padding: 0 30px;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light {
  background-color: transparent;
  border: none;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item, #nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-submenu {
  border-bottom: 1px solid #dddddd;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item:last-child, #nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-submenu:last-child {
  border-bottom: none;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item .custom-expand-submenu-icon, #nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-submenu .custom-expand-submenu-icon {
  color: #000000;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item .custom-expand-submenu-icon svg, #nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-submenu .custom-expand-submenu-icon svg {
  vertical-align: middle;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item {
  padding: 16px 0;
  height: 56px;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item:has(.logo_desktop),
#nav-drawer.ant-drawer-content .ant-drawer-body .ant-menu-light .ant-menu-item:has(.get-brochure) {
  display: none;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .nav-menu_mobile .ant-menu-title-content {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  color: #000000;
}
#nav-drawer.ant-drawer-content .ant-drawer-body .nav-menu_mobile .ant-menu-title-content svg {
  display: none;
}

@media only screen and (min-width: 450px) {
  .footer_links a {
    white-space: nowrap;
  }
}
@media only screen and (min-width: 769px) {
  .header #toggle-menu {
    display: none;
  }
  .header #get-brochure-mobile {
    display: none;
  }
  .header .nav-menu {
    display: flex;
    flex: 1;
    background: transparent;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
  }
  .header .nav-menu .ant-menu-item:hover, .header .nav-menu .ant-menu-submenu:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
  }
  .header .nav-menu .ant-menu-title-content {
    color: white;
    text-transform: uppercase;
    font-family: Poppins, san-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-decoration: none;
    vertical-align: middle;
  }
  .header .nav-menu .ant-menu-title-content svg {
    vertical-align: middle;
  }
  .header .nav-menu .ant-menu-item-selected a {
    color: #fbdfdf;
  }
  .header .nav-menu .ant-menu-item:has(.logo) {
    padding: 0;
    order: 1 !important;
    padding-inline-start: 20px;
  }
  .header .nav-menu .ant-menu-item:has(.get-brochure) .ant-menu-title-content {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .ant-menu-sub .ant-menu-item, .ant-menu-sub .ant-menu-submenu {
    border-bottom: 1px solid #dddddd;
  }
  .ant-menu-sub .ant-menu-item:last-child, .ant-menu-sub .ant-menu-submenu:last-child {
    border-bottom: 0;
  }
  .ant-menu-sub .ant-menu-item:not(:disabled), .ant-menu-sub .ant-menu-submenu:not(:disabled) {
    color: rgba(0, 0, 0, 0.6705882353);
  }
  .ant-menu-sub .ant-menu-title-content {
    text-transform: uppercase;
    font-family: Poppins, san-serif;
    font-size: 14px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-decoration: none;
    vertical-align: middle;
  }
  .ant-menu-sub .ant-menu-title-content svg {
    display: none;
  }
  .footer {
    height: auto;
    background: #dc1a22;
  }
  .footer_links {
    width: 80%;
    margin: auto !important;
  }
  .footer_links > div {
    padding: 10px 0 40px;
  }
  .footer .small-column {
    flex: 1 0 0;
  }
  .footer .medium-column {
    flex: 1 0 25%;
  }
  .footer .large-column {
    flex: 1 0 30%;
  }
  .footer .footer-menu {
    padding-top: 40px;
  }
  .footer .contact-info .ant-flex {
    gap: 10px !important;
    align-items: flex-start;
  }
  .footer .contact-info .social-icons {
    align-items: center;
  }
}
.headline {
  --side-padding: 20px;
}
.headline_banner {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: var(--mobile-banner);
}
.headline_header {
  padding: 20px var(--side-padding);
  top: 398px;
  gap: 0px;
  opacity: 0px;
  background: #ffffff;
}
.headline_header h1 {
  margin: 0;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
  text-transform: uppercase;
}
.headline .ant-breadcrumb {
  font-size: 12px;
}

.date-selector {
  background: #F5F5F5;
  padding: 15px 24px;
  border-radius: 10px;
  display: inline-flex;
  gap: 8px;
  width: 100%;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.date-selector span {
  border-width: 1px;
  border-style: solid;
  border-radius: 20px;
  background: #FFFFFF;
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #999999;
  padding: 2px 8px 2px 8px;
  cursor: pointer;
}
.date-selector .show-all-dates {
  font-family: Poppins, san-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
  display: inline-flex;
  gap: 5px;
  cursor: pointer;
}

.postcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  padding: 20px;
}
.postcards .postcard {
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}
.postcards .postcard img {
  width: 100%;
  height: 140px;
  gap: 0px;
  opacity: 0px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  transform-origin: 50% 100%;
}
.postcards .postcard img:hover {
  transform: scale(1.2);
  width: 100%;
}
.postcards .postcard .details {
  padding: 5px;
  gap: 0px;
  border: 1px 0px 0px 0px;
  justify-content: space-between;
  align-items: center;
  opacity: 0px;
  background: transparent;
  display: flex;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.postcards .postcard .name {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  color: #dc1a22;
}
.postcards .postcard .tour-count {
  font-family: Poppins, san-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
  cursor: pointer;
}
.postcards .postcard .tour-count svg {
  vertical-align: middle;
}

#ribbon-section {
  background: #F7F4EB;
  margin-top: 100px;
}
#ribbon-section_header {
  height: 150px;
  text-align: center;
  position: relative;
  background-image: url("/iceholidays-assets/images/TSTRibbon.png");
  background-repeat: no-repeat;
}
#ribbon-section_header h1 {
  font-family: Poppins, san-serif;
  font-size: 45px;
  font-weight: 200;
  line-height: 67.5px;
  letter-spacing: 0.06em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fbdfdf;
  text-transform: uppercase;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 20px);
  margin: 0;
}

.pre-wrap {
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}

.location-dropdown {
  margin: 10px;
}
.location-dropdown .location-filter {
  height: 46px;
  width: 100%;
}
.location-dropdown .location-filter .ant-select-selector {
  border-radius: 30px;
  border: none;
  background: #ffffff;
  padding: 0;
}
.location-dropdown .location-filter .ant-select-selection-wrap {
  padding: 3px 16px;
}
.location-dropdown .location-filter .ant-select-selection-item {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #dc1a22;
}
.location-dropdown .location-filter .ant-select-arrow {
  inset-inline-end: 20px;
  color: #dc1a22;
}
.location-dropdown.inverted .location-filter .ant-select-selector {
  background: #ffffff;
}
.location-dropdown.inverted .location-filter .ant-select-selection-item {
  color: #dc1a22;
}
.location-dropdown.inverted .location-filter .ant-select-arrow {
  color: #dc1a22;
}

.location-filter_option {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.loader {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.legends {
  --legend-size: 10px;
  padding: 20px 0;
}
.legends .ant-badge.ant-badge-status .ant-badge-status-dot {
  width: var(--legend-size);
  height: var(--legend-size);
}
.legends .ant-badge.ant-badge-status .ant-badge-status-text {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.legends .guaranteed .ant-badge-status-dot {
  background-color: #52c41a !important;
}
.legends .almost-guaranteed .ant-badge-status-dot {
  background-color: #dc1a22 !important;
}

.legends-v2 {
  padding-inline: 8px;
}
.legends-v2 .legend {
  align-items: center;
  display: inline-flex;
  gap: 5px;
  font-size: 12px;
}

.guaranteed-indicator-icon.guaranteed svg {
  color: #52c41a !important;
}
.guaranteed-indicator-icon.almost-guaranteed svg {
  color: #dc1a22 !important;
}
.guaranteed-indicator-icon.new svg {
  color: #FFD700 !important;
}

#listing-page_body {
  padding: 20px var(--side-padding);
}
#listing-page #tours .tour {
  flex-direction: column;
}
#listing-page #tours .tour_image {
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  background-clip: border-box;
  background-position: 50% 50%;
}
#listing-page #tours .tour_details {
  padding: 20px;
  background-color: #FFFFFF;
  height: 100%;
}
#listing-page #tours .tour_details .ant-space {
  width: 100%;
}
#listing-page #tours .tour_details .ant-space .ant-space-item:first-child {
  position: relative;
}
#listing-page #tours .tour_details_title {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: calc(100% - 30px);
  overflow-wrap: anywhere;
}
#listing-page #tours .tour_details_subtitle {
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(0, 0, 0, 0.4);
}
#listing-page #tours .tour_details_country {
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#listing-page #tours .tour_details_code {
  color: #dc1a22;
  cursor: pointer;
}
#listing-page #tours .tour_details_country svg, #listing-page #tours .tour_details_code svg {
  vertical-align: middle;
}
#listing-page #tours .tour_details_locations, #listing-page #tours .tour_details_category {
  margin-left: 8px;
}
#listing-page #tours .tour_details_category img {
  height: 20px;
}
#listing-page #tours .tour_details_info {
  position: absolute;
  right: 0;
  top: 0;
}
#listing-page #tours .tour_details_info svg {
  color: #dc1a22;
  cursor: pointer;
}
#listing-page #tours .tour_details_dates {
  padding: 12px 8px 17px 8px;
}
#listing-page #tours .tour_details_dates label {
  font-family: Poppins, san-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #434039;
}
#listing-page #tours .tour_details_dates .date-selector {
  justify-content: center;
}
#listing-page #tours .tour_pricing {
  background-color: #dc1a22;
  padding: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  height: 100%;
}
#listing-page #tours .tour_pricing_details {
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
#listing-page #tours .tour_pricing > .ant-space {
  height: 100%;
  width: 100%;
  justify-content: center;
}
#listing-page #tours .tour_pricing .ant-space-item {
  width: 100%;
}
#listing-page #tours .tour_pricing span {
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#listing-page #tours .tour_pricing span.price {
  font-size: 28px;
  font-weight: 500;
  line-height: 42px;
  color: #FFFFFF;
}
#listing-page #tours .tour_pricing .select-tour {
  padding: 5px 27px 5px 27px;
  border-radius: 20px;
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
  background-color: #FFFFFF;
  display: block;
  width: 100%;
}
#listing-page #no-tours-found {
  font-family: Poppins, san-serif;
  font-weight: 400;
  text-align: center;
  color: rgba(0, 0, 12, 0.6);
}

.tour_details_description.ant-modal .ant-modal-title {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
}
.tour_details_description.ant-modal .ant-modal-body {
  overflow-y: auto;
  max-height: 500px;
}

.tour_details_itinerary.ant-modal #itinerary-file {
  max-height: 500px;
  overflow: auto;
}
.tour_details_itinerary.ant-modal .ant-modal-footer {
  text-align: center;
}

.tour_details_all_dates.ant-modal .ant-modal-title {
  padding-right: 30px;
}
.tour_details_all_dates.ant-modal .custom-modal-header-title {
  font-family: Poppins, san-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #434039;
}
.tour_details_all_dates.ant-modal .custom-modal-header-legends {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #545047;
}
.tour_details_all_dates.ant-modal .custom-modal-header-legends .legends {
  --legend-size: 10px;
  padding-top: 0;
  padding-bottom: 10px;
}
.tour_details_all_dates.ant-modal .custom-modal-header-legends .legends .ant-badge-status-dot {
  width: var(--legend-size);
  height: var(--legend-size);
}
.tour_details_all_dates.ant-modal .ant-modal-footer {
  text-align: center;
}
.tour_details_all_dates.ant-modal .ant-modal-footer .ant-btn {
  padding: 5px 27px 5px 27px;
  border-radius: 32px;
  background: #dc1a22;
  color: #FFFFFF;
  text-transform: uppercase;
  width: 210px;
}
.tour_details_all_dates.ant-modal .ant-modal-footer .ant-btn:hover {
  color: #FFFFFF;
  background: #dc1a22;
  border-color: #dc1a22;
  outline: #dc1a22;
}

.departure-date {
  border-color: #999999;
}
.departure-date.guaranteed {
  border-color: #52c41a !important;
}
.departure-date.almost-guaranteed {
  border-color: #dc1a22 !important;
}
.departure-date.selected {
  color: rgb(249, 246, 243);
  background-color: #999999;
}
.departure-date.selected.guaranteed {
  background-color: #dc1a22;
}
.departure-date.selected.almost-guaranteed {
  background-color: #dc1a22;
}

#show-page_header h1 {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: left;
  overflow-wrap: anywhere;
}
#show-page_header .tour_details {
  display: inline-flex;
  gap: 10px;
  opacity: 0.5;
}
#show-page_header .tour_details span {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
#show-page_subheader {
  padding: 20px var(--side-padding) 0;
}
#show-page .tour-date-selector [class~=slick-slider] .slick-slide > div {
  padding: 0 5px;
}
#show-page .tour-date-selector [class~=slick-slider] .slick-arrow {
  color: rgb(149, 148, 146);
}
#show-page .tour-date-selector [class~=slick-slider] .slick-arrow:hover {
  color: #dc1a22;
}
#show-page .tour-date-selector [class~=slick-slider] .slick-prev {
  inset-inline-start: -35px;
}
#show-page .tour-date-selector [class~=slick-slider] .slick-next {
  inset-inline-end: -35px;
}
#show-page .tour-date-selector .date-box {
  background: #FFFFFF;
  border: 1px solid #999999;
  padding: 15px;
  border-radius: 20px;
  border-width: 1px;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  text-align: center;
}
#show-page .tour-date-selector .date-box.guaranteed {
  border-color: #dc1a22;
}
#show-page .tour-date-selector .date-box.almost-guaranteed {
  border-color: #dc1a22;
}
#show-page .tour-date-selector .date-box_date {
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#show-page .tour-date-selector .date-box span {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  opacity: 50%;
}
#show-page .tour-date-selector .date-box_price {
  font-family: Poppins, san-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#show-page .tour-date-selector .date-box.selected {
  color: rgb(249, 246, 243);
  background-color: #999999;
}
#show-page .tour-date-selector .date-box.selected.guaranteed {
  background-color: #dc1a22;
}
#show-page .tour-date-selector .date-box.selected.almost-guaranteed {
  background-color: #dc1a22;
}
#show-page .tour-date-selector .date-box.selected .date-box_date, #show-page .tour-date-selector .date-box.selected .date-box_price {
  font-weight: 700;
}
#show-page .tour-date-selector.v2 {
  padding-block-start: 20px;
}
#show-page .tour-date-selector.v2 .wrapper {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#show-page .tour-date-selector.v2 .wrapper.has-arrows {
  margin-inline: -30px;
}
#show-page .tour-date-selector.v2 .wrapper .scroller {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 5px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transition: padding 0.2s;
  user-select: none;
}
#show-page .tour-date-selector.v2 .wrapper .scroller.end {
  padding-right: 25px;
}
#show-page .tour-date-selector.v2 .wrapper .scroller::-webkit-scrollbar {
  display: none;
}
#show-page .tour-date-selector.v2 .wrapper .date-box {
  border-radius: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
  position: relative;
  flex: 0 0 130px;
  scroll-snap-align: start;
}
#show-page .tour-date-selector.v2 .wrapper .date-box > .ant-flex > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#show-page .tour-date-selector.v2 .wrapper .date-box .guaranteed-indicator-icon {
  position: absolute;
  top: -2px;
  right: 4px;
  opacity: 1;
}
#show-page .tour-date-selector.v2 .wrapper .date-box .ant-flex {
  height: 100%;
}
#show-page .tour-date-selector.v2 .wrapper .date-box_date {
  font-size: 14px;
}
#show-page .tour-date-selector.v2 .wrapper .date-box_date b {
  display: block;
  line-height: 14px;
  font-size: 15px;
  font-weight: 600;
}
#show-page .tour-date-selector.v2 .wrapper .date-box_price {
  font-weight: 500 !important;
}
#show-page .tour-date-selector.v2 .wrapper .date-box span {
  opacity: 80%;
  font-size: 11px;
}
#show-page .tour-date-selector.v2 .wrapper .date-box .tour-indicator {
  margin-top: 5px;
  min-height: 20px;
}
#show-page .tour-date-selector.v2 .wrapper .date-box .tour-indicator small {
  color: black;
  padding: 2px 10px;
  border-radius: 13px;
  font-size: 12px;
  background: white;
}
#show-page .tour-date-selector.v2 .wrapper .date-box.selected {
  color: rgb(249, 246, 243);
  background-color: #999999;
}
#show-page .tour-date-selector.v2 .wrapper .date-box.selected.guaranteed {
  background-color: #52c41a;
}
#show-page .tour-date-selector.v2 .wrapper .date-box.selected.almost-guaranteed {
  background-color: #dc1a22;
}
#show-page .tour-date-selector.v2 .wrapper .fade-mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 35px;
  height: 100%;
  pointer-events: none;
  background: white;
  z-index: 2;
}
#show-page .tour-date-selector.v2 .wrapper .arrows {
  flex-shrink: 0;
  z-index: 5;
  opacity: 0.5;
  outline: none;
  border: none;
  background: none;
  padding: 0;
}
#show-page .tour-date-selector.v2 .wrapper .arrows:not(:disabled):hover {
  opacity: 1;
  cursor: pointer;
}
#show-page .tour-date-selector.v2 .wrapper .arrows:disabled {
  opacity: 0.2;
}
#show-page_body {
  padding: 20px var(--side-padding);
  gap: 20px;
}
#show-page_body .details-container {
  padding: 20px;
  gap: 20px;
  border-radius: 20px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
#show-page_body .details-container_header {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
}
#show-page_body .details-container_content #things-to-know {
  padding: 20px;
  border-radius: 5px;
  background: #F9F6F3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  text-align: center;
  gap: 20px;
}
#show-page_body .details-container_content #things-to-know .item .icon {
  opacity: 0.8;
  color: #545047;
}
#show-page_body .details-container_content #things-to-know .item label {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #525a64;
}
#show-page_body .details-container_content #things-to-know .item label a {
  color: #dc1a22;
}
#show-page_body .details-container_content #things-to-know .item.guaranteed .icon, #show-page_body .details-container_content #things-to-know .item.guaranteed label, #show-page_body .details-container_content #things-to-know .item.guaranteed label a {
  color: #dc1a22;
}
#show-page_body .details-container_content #description {
  position: relative;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
#show-page_body .details-container_content #description + button {
  margin-top: 10px;
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: right;
  color: #dc1a22;
}
#show-page_body .details-container_content #description.collapsed {
  height: 300px;
  overflow: hidden;
}
#show-page_body .details-container_content #description.collapsed::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 90%);
  width: 100%;
  height: 5em;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
#show-page_body .details-container_content #description.collapsed + button {
  margin-top: 0px;
}
#show-page_body .details-container_content .super-promo {
  background: #fbdfdf;
}
#show-page_body .details-container_content .promo1 {
  background: #f9f6f3;
}
#show-page_body .details-container_content .normal {
  background: #f5f5f5;
}
#show-page_body .details-container_content #pricing-table {
  display: none;
}
#show-page_body .details-container_content #pricing-list .ant-card .ant-card-body {
  padding: 10px 15px;
}
#show-page_body .details-container_content #pricing-list .pricing-header {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 2%;
  text-align: center;
  color: #dc1a22;
  margin-bottom: 10px;
  text-transform: capitalize;
}
#show-page_body .details-container_content #pricing-list .pricing-body .pricing {
  display: flex;
  justify-content: space-between;
  color: #545047;
}
#show-page_body .details-container_content #pricing-list .pricing-body .pricing .category {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
}
#show-page_body .details-container_content #pricing-list .pricing-body .pricing .price {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: center;
}
#show-page_body .toggle-contact-agent {
  cursor: pointer;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  color: #dc1a22;
  background-color: #f9f9f9;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  padding: 11px 15px 11px 15px;
  width: 135px;
  position: absolute;
  right: 0;
}
#show-page_body .contact-agent-sider {
  position: fixed;
  z-index: 101;
  right: 0;
  top: 110px;
}
#show-page_body .contact-agent {
  height: auto;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: #FFFFFF;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  display: none;
}
#show-page_body .contact-agent_header {
  background-color: #f9f9f9;
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
  padding: 11px 15px 11px 15px;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#show-page_body .contact-agent_content {
  padding: 10px 15px 15px 15px;
}
#show-page_body .contact-agent_content .ant-form-item {
  margin-bottom: 15px;
}
#show-page_body .contact-agent_content .ant-form-item:last-child {
  margin-bottom: 0;
}
#show-page_body .contact-agent_content .find-button {
  width: 100%;
}
#show-page_body .contact-agent_content .search-results {
  margin-top: 10px;
}
#show-page_body .contact-agent_content .search-results .agent-info .company {
  font-family: Poppins, san-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  min-height: 20px;
  color: rgba(0, 0, 0, 0.8);
  max-width: 180px;
  cursor: pointer;
}
#show-page_body .contact-agent_content .search-results .agent-info .contact-numbers {
  display: inline-flex;
  gap: 2px;
}
#show-page_body .show-contact-agent-mobile .toggle-contact-agent {
  display: none;
}
#show-page_body .show-contact-agent-mobile .contact-agent {
  display: block;
}

.agent-full-details .ant-modal-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.agent-full-details .ant-modal-title img {
  height: 120px;
  object-fit: cover;
}
.agent-full-details .ant-modal-title span {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}
.agent-full-details .ant-modal-body {
  margin: 20px -24px;
  background: #FAFAFA;
  height: 100%;
}
.agent-full-details .ant-modal-body .ant-row {
  width: 100%;
  margin: 0 !important;
  padding: 20px;
}
.agent-full-details .ant-modal-body .ant-row label {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0%;
  color: #836848;
}
.agent-full-details .ant-modal-body .ant-row span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #545047;
}

.contact-agents_body {
  margin: 20px var(--side-padding);
}
.contact-agents_body .find-agents_header {
  width: 50%;
  height: 45px;
  margin: auto;
  padding-top: 11px;
  padding-right: 32px;
  padding-bottom: 11px;
  padding-left: 32px;
  gap: 10px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-left-width: 1px;
  background: #dc1a22;
  text-align: center;
}
.contact-agents_body .find-agents_header span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.contact-agents_body .find-agents_form {
  border-radius: 20px;
  padding: 24px 30px;
  gap: 10px;
  background: #FFFFFF;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.contact-agents_body .find-agents_form .ant-form-item {
  margin-bottom: 0;
}
.contact-agents_body .find-agents_form .find-button {
  width: 100%;
}
.contact-agents_body .agents-list {
  margin: 40px 0;
}
.contact-agents_body .agents-list img {
  height: 265px;
  object-fit: contain;
}
.contact-agents_body .agents-list svg {
  vertical-align: middle;
  color: #000000;
  margin-right: 10px;
}
.contact-agents_body .agents-list span {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #959492;
}
.contact-agents_body .agents-list .ant-card-meta-title {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.contact-agents_body .agents-list .agent-details .ant-col {
  display: inline-flex;
  align-items: center;
}
.contact-agents_body .agents-list .agent-details .ant-col span:not(.agent-address) {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.contact-agents_body .agents-list .more-info-button {
  width: 225px;
  margin: 20px auto 0;
  display: block;
  height: 53px;
  border-radius: 50px;
}
.contact-agents_body .agents-list .more-info-button span {
  color: #dc1a22;
}

#blog-show-page_body {
  margin: 20px var(--side-padding);
  padding: 32px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(225, 182, 91, 0.2);
}
#blog-show-page_body h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0%;
  margin-top: 0;
}
#blog-show-page_body img {
  object-fit: cover;
  height: auto;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.newsletter {
  background-color: #ed434b;
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  --border-radius: 50px;
}
.newsletter h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #FFFFFF;
  margin: 0;
}
.newsletter .ant-input {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  background-color: #EFEFF6;
  padding: 10px 20px;
  height: 53px;
  width: 195px;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #B3B3B3;
  border: none;
}
.newsletter .ant-btn {
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  background: #FFFFFF;
  padding: 10px 20px;
  height: 53px;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #dc1a22;
}

.location-tabs {
  margin-bottom: 30px;
}
.location-tabs .ant-tabs > .ant-tabs-nav {
  display: none;
}
.location-tabs .location-tab-cover {
  position: relative;
}
.location-tabs .location-tab-navigators svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  cursor: pointer;
}
.location-tabs .location-tab-navigators svg.prev-tab {
  left: 5px;
}
.location-tabs .location-tab-navigators svg.next-tab {
  right: 5px;
}
.location-tabs .country {
  position: relative;
  display: block;
}
.location-tabs .country-image {
  object-fit: cover;
  object-position: center;
}
.location-tabs .country .bottom-logo {
  display: none;
}

.about-us {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.about-us .section-header h2 {
  font-family: Poppins, san-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
}
.about-us .section-header p {
  font-family: Poppins, san-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
}
.about-us .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #000000;
}
.about-us .items label {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.about-us .items p {
  font-family: Poppins, san-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 27px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.about-us .quality-policy {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.about-us .certificates img {
  margin: auto;
  width: 263px;
  height: 365px;
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1019607843);
}

.agent-full-contact-details .ant-modal-title img {
  width: auto;
  height: 50px;
}
.agent-full-contact-details .ant-modal-body h2 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3%;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}
.agent-full-contact-details .ant-modal-body .contact-details .ant-col {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.agent-full-contact-details .ant-modal-body .contact-details .ant-col svg {
  vertical-align: middle;
  color: #dc1a22;
}
.agent-full-contact-details .ant-modal-body .contact-details .ant-col span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 3%;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}

.payment-gateway {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-gateway h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #222222;
  padding-top: 15px;
}
.payment-gateway_agreement span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 2%;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}
.payment-gateway_agreement span a {
  color: #dc1a22;
}
.payment-gateway_channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}
.payment-gateway_channels-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: #FFFFFF;
  cursor: pointer;
  border: 2px solid transparent;
}
.payment-gateway_channels-box img {
  height: 85px;
  max-width: 80%;
  object-fit: contain;
}
.payment-gateway_channels-box span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #000000;
}
.payment-gateway_channels-box.selected {
  box-shadow: 0 0 5px #dc1a22;
  border-color: #dc1a22;
}

.error-page#invalid-referral-link {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  border-radius: 20px;
  padding: 200px 40px;
  margin: 20px;
}
.error-page#invalid-referral-link h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #dc1a22;
  margin: 0;
}
.error-page#invalid-referral-link p {
  display: inline-flex;
  align-items: center;
  color: #dc1a22;
  margin: 0;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
}
.error-page#invalid-referral-link > span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #000000;
}
.error-page#invalid-referral-link .ant-btn {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.error-page#expired-link {
  margin: 50px 10%;
}
.error-page#expired-link h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}
.error-page#expired-link_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 20px;
  background-color: white;
}
.error-page#expired-link_content-message {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #000000;
  margin-top: 0;
}
.error-page#expired-link_action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.custom-tab-pill.ant-radio-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.custom-tab-pill.ant-radio-group .ant-radio-button-wrapper {
  box-sizing: border-box;
  width: 50%;
  text-align: center;
  border: 1px solid #dc1a22;
  color: #dc1a22;
  height: auto;
  min-height: 40px;
  line-height: 1.3;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
}
.custom-tab-pill.ant-radio-group .ant-radio-button-wrapper-checked {
  background-color: #dc1a22;
  color: #FFFFFF;
}
.custom-tab-pill.ant-radio-group .ant-radio-button-wrapper-checked::before {
  background-color: #dc1a22;
}
.custom-tab-pill.ant-radio-group .ant-radio-button-wrapper:first-child {
  border-start-start-radius: 32px;
  border-end-start-radius: 32px;
}
.custom-tab-pill.ant-radio-group .ant-radio-button-wrapper:last-child {
  border-start-end-radius: 32px;
  border-end-end-radius: 32px;
}

@keyframes moveBgVertical {
  0% {
    background-position: center 0px;
  }
  100% {
    /* Adjust -100% or -352px depending on how far up you want it to scroll */
    background-position: center -352px;
  }
}
@media only screen and (min-width: 769px) {
  .headline {
    --side-padding: 10%;
  }
  .headline_banner {
    height: 352px;
    width: 100%; /* Or your desired width */
    /* Background properties (This handles both the image and the zoom) */
    background-size: cover; /* This handles the "zoom in" effect */
    background-repeat: repeat-y; /* Allows seamless vertical looping */
    background-position: center 0px;
    /* Animation: name | duration | timing | iteration | direction */
    /* 'alternate' makes it go up, then reverse and go down */
    animation: moveBgVertical 10s linear infinite alternate;
    background-image: var(--desktop-banner);
  }
  .headline_header h1 {
    font-size: 45px;
    font-weight: 400;
    line-height: 67.5px;
    letter-spacing: 0.05em;
  }
  .postcards {
    grid-template-columns: repeat(3, 1fr);
  }
  .postcards .postcard img {
    height: 230px;
  }
  .postcards .postcard .name {
    font-size: 20px;
    line-height: 30px;
  }
  #listing-page_header > .ant-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #listing-page_header .location-filter.ant-select {
    line-height: 36px;
    width: 170px;
  }
  #listing-page_header .location-filter.ant-select .ant-select-selection-item {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.05em;
  }
  #show-page_header h1 {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
    text-align: left;
    font-size: 30px;
    font-weight: 400;
    line-height: 45px;
    letter-spacing: 0.05em;
  }
  #show-page .tour-date-selector [class~=slick-slider] .slick-slide > div {
    padding: 0 5px;
  }
  #show-page .tour-date-selector [class~=slick-slider] .slick-prev {
    inset-inline-start: -40px;
  }
  #show-page .tour-date-selector [class~=slick-slider] .slick-next {
    inset-inline-end: -40px;
  }
  #show-page .tour-date-selector.v2 {
    padding-block: 5px;
  }
  #show-page .tour-date-selector.v2 .wrapper {
    overflow: visible;
  }
  #show-page .tour-date-selector.v2 .wrapper.has-arrows {
    margin-inline: 0;
  }
  #show-page .tour-date-selector.v2 .wrapper .scroller {
    padding: 10px;
  }
  #show-page .tour-date-selector.v2 .wrapper .date-box:hover {
    transform: scale(1.15);
    z-index: 1;
  }
  #show-page .tour-date-selector.v2 .wrapper .fade-mask {
    right: 0;
  }
  #show-page .tour-date-selector.v2 .wrapper .arrows {
    position: absolute;
  }
  #show-page .tour-date-selector.v2 .wrapper .arrows-prev {
    left: -35px;
  }
  #show-page .tour-date-selector.v2 .wrapper .arrows-next {
    right: -5px;
  }
  #show-page_body .details-container_content #things-to-know {
    grid-template-columns: repeat(5, 1fr);
  }
  #show-page_body .details-container_content #pricing-list {
    display: none;
  }
  #show-page_body .details-container_content #pricing-table {
    display: table;
    width: 100%;
    border-spacing: 5px 0;
  }
  #show-page_body .details-container_content #pricing-table .price-type {
    text-transform: capitalize;
  }
  #show-page_body .details-container_content #pricing-table th {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-family: Poppins, san-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #dc1a22;
    padding: 10px 15px;
  }
  #show-page_body .details-container_content #pricing-table td {
    font-family: Poppins, san-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0.05em;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgb(84, 80, 71);
    padding: 15px;
    white-space: nowrap;
  }
  #show-page_body .details-container_content #pricing-table td:first-child {
    text-align: left;
    font-weight: 400;
  }
  #show-page_body .details-container_content #pricing-table tr:last-child td {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .agent-full-contact-details {
    width: 650px !important;
  }
  .contact-agents_body .find-agents_form {
    text-align: center;
  }
  .contact-agents_body .find-agents_form .ant-form-item {
    text-align: left;
  }
  .contact-agents_body .agents-list .agent-details {
    height: 230px;
  }
  .contact-agents_body .agents-list .agent-details .agent-address {
    display: -webkit-box;
    width: 100%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .contact-agents_body .agents-list .more-info-button {
    width: 100%;
  }
  .agent-full-details {
    width: 800px !important;
  }
  .newsletter {
    flex-direction: row;
    justify-content: center;
    padding: 44px;
    gap: 35px;
  }
  .newsletter h1 {
    font-size: 25px;
  }
  .newsletter .ant-input {
    width: 260px;
  }
  .newsletter .ant-input,
  .newsletter .ant-btn {
    font-size: 20px;
  }
  .location-tabs {
    margin: auto;
    width: 80%;
  }
  .location-tabs .location-dropdown {
    display: none;
  }
  .location-tabs .ant-tabs .ant-tabs-content-holder {
    margin-top: -2px;
  }
  .location-tabs .ant-tabs > .ant-tabs-nav {
    display: flex !important;
    margin: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .location-tabs .ant-tabs-nav {
    width: 100% !important;
  }
  .error-page#invalid-referral-link {
    margin: 40px auto;
    width: 70%;
  }
  .legends-v2 .legend {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1024px) {
  #listing-page_header > .ant-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #listing-page_header .location-filter.ant-select {
    line-height: 36px;
    width: 170px;
  }
  #listing-page_header .location-filter.ant-select .ant-select-selection-item {
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.05em;
  }
  #listing-page #tours .tour {
    flex-direction: row;
  }
  #listing-page #tours .tour .ant-col.column:has(.tour_image) {
    max-width: 300px;
  }
  #listing-page #tours .tour_image {
    height: 100%;
    border-top-right-radius: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  #listing-page #tours .tour_details_dates .date-selector {
    justify-content: unset;
  }
  #listing-page #tours .tour_pricing {
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }
  #listing-page #tours .tour_pricing_details {
    flex-direction: column;
    align-items: stretch;
  }
  #listing-page #tours .tour_pricing .ant-space-item {
    width: auto;
  }
  .tour_details_all_dates.ant-modal .ant-modal-header {
    margin-bottom: 18px;
  }
  .tour_details_all_dates.ant-modal .ant-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .tour_details_all_dates.ant-modal .custom-modal-header-legends .legends {
    padding: 0;
  }
  #show-page_body .toggle-contact-agent,
  #show-page_body .collapse-contact-agent {
    display: none;
  }
  #show-page_body .contact-agent-sider {
    position: relative;
    top: unset;
    z-index: auto;
  }
  #show-page_body .contact-agent {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    display: block;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
    position: static;
    z-index: auto;
  }
}
@media only screen and (min-width: 1441px) {
  #ribbon-section_header {
    background-image: url("/iceholidays-assets/images/TST Ribbon@2x.png");
    height: 300px;
  }
}
@media only screen and (min-width: 2880px) {
  #ribbon-section_header {
    background-image: url("/iceholidays-assets/images/TST Ribbon@3x.png");
    height: 450px;
  }
}
.floating-chat-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 996;
  cursor: pointer;
}

.floating-chat-button {
  position: fixed;
  inset-inline-end: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 997;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: background-color 0.2s ease;
}
.floating-chat-button.is-open {
  background-color: #fff;
}

#search-bar #search-bar-widget {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  position: relative;
}
#search-bar #search-bar-widget .ant-picker {
  width: 100%;
}
#search-bar #search-bar-widget .ant-form-item {
  margin-bottom: 12px;
}
#search-bar #search-bar-widget .ant-form-item .ant-form-item-label {
  padding-bottom: 3px;
}
#search-bar #search-bar-widget .ant-form-item .ant-form-item-label label {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 16.5px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#search-bar #search-bar-widget .disabled-form-item .ant-select-disabled .ant-select-selector {
  background: #f5f5f5 !important;
  border: none !important;
  box-shadow: none !important;
}
#search-bar #search-bar-widget .search-button {
  width: 172px;
}
#search-bar #search-bar-widget .search-button span {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}

@media only screen and (min-width: 769px) {
  #search-bar #search-bar-widget {
    width: auto;
    padding: 15px;
  }
  #search-bar #search-bar-widget .ant-space {
    flex-direction: unset;
    align-items: flex-end;
  }
  #search-bar #search-bar-widget .ant-form {
    display: inline-flex !important;
    gap: 7px;
    height: 100%;
    width: 100%;
  }
  #search-bar #search-bar-widget .ant-form-item {
    margin-bottom: 0;
  }
  #search-bar #search-bar-widget .search-button {
    width: auto;
    margin-bottom: 3px;
  }
  #search-bar #search-bar-widget .disabled-form-item .ant-row {
    background: #f5f5f5;
  }
}
.filter-title {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #545047;
}

.filter-pill {
  padding: 6px 13px 6px 13px;
  border-radius: 10px;
  background: #ffffff;
  color: #dc1a22;
  cursor: pointer;
  text-align: center;
  border: 1px solid rgba(239, 93, 95, 0.631372549);
}
.filter-pill.default-filter {
  background: #ffffff;
}
.filter-pill span {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 2%;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
.filter-pill.selected {
  background: #dc1a22;
  color: #FFFFFF;
}
.filter-pill.disabled {
  cursor: not-allowed;
  border-color: #d9d9d9;
  color: rgba(0, 0, 0, 0.25);
  background: rgba(0, 0, 0, 0.04);
  box-shadow: none;
  pointer-events: none;
}
.filter-pill.month-year {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 5px;
}

@media only screen and (min-width: 769px) {
  .filter-pill span {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.05em;
  }
  .filter-pill.month-year {
    flex-direction: row;
  }
}
.flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

body {
  margin: 0;
  background: #ffffff;
  font-family: Poppins, san-serif;
}

.flip {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.nav-menu-home-label span {
  display: block;
}
.nav-menu-home-label svg {
  display: none;
}

.sign-in {
  background: #ffffff;
  padding: 15px 20px;
  height: 34px;
  border-radius: 50px;
}
.sign-in span {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
  color: #dc1a22;
}
.sign-in:hover {
  background: #ffffff !important;
}

.sign-out {
  background: #ffffff;
  color: #000000;
  text-transform: capitalize;
  height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  padding: 15px 0 15px 20px;
}
.sign-out span {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}
.sign-out span.logout-icon {
  color: #dc1a22;
}
.sign-out .username {
  text-decoration: underline;
  color: inherit !important;
  position: relative;
}
.sign-out:hover {
  background: #ffffff !important;
}
.sign-out .ant-menu-submenu {
  padding: 0;
}
.sign-out .ant-menu-title-content {
  color: #000000 !important;
}
.sign-out .ant-menu-title-content svg {
  vertical-align: middle;
}

.ant-menu-light.ant-menu-submenu > .ant-menu {
  background-color: rgba(249, 249, 249, 0.8509803922);
  border-radius: 16px;
  padding: 10px;
  text-align: center;
}
.ant-menu-light.ant-menu-submenu > .ant-menu > li:hover {
  background: rgba(255, 255, 255, 0.7490196078) !important;
  border-radius: 9px;
}

.header {
  overflow: hidden;
}
.header .logo {
  background: white;
  border-bottom-right-radius: 80px;
  height: 100%;
}
.header .logo picture {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.header .logo picture img {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  padding: 10px 30px 10px 10px;
}

.footer .app-store img {
  box-sizing: border-box;
  width: 100%;
}

#search-bar {
  top: 100px;
  left: 0;
  position: absolute;
  width: 100%;
}
#search-bar img {
  display: none;
}
#search-bar #search-bar-widget {
  width: 100%;
  margin: 0 auto;
  border-radius: 30px;
}
#search-bar #search-bar-widget .ant-form .ant-row {
  display: block;
  width: 100%;
}
#search-bar #search-bar-widget .ant-picker .ant-picker-suffix {
  color: #dc1a22;
}
#search-bar #search-bar-widget .ant-select-arrow svg {
  color: #000000;
}
#search-bar #search-bar-widget .ant-picker,
#search-bar #search-bar-widget .ant-select-selector {
  border-radius: 32px;
}
#search-bar #search-bar-widget .ant-form-item {
  display: flex;
  flex: 1;
}
#search-bar #search-bar-widget .ant-form-item .ant-form-item-label {
  text-align: left;
  padding: 0;
}
#search-bar #search-bar-widget .ant-form-item .ant-form-item-label > label::after {
  content: "";
}
#search-bar #search-bar-widget .ant-form-item .ant-form-item-control-input {
  min-height: unset;
}
#search-bar #search-bar-widget .search-button .ant-btn-icon {
  display: none;
}

.headline_header {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 10px var(--side-padding);
  display: flex;
  flex-direction: column;
}
.headline .location-dropdown {
  margin: 0;
}
.headline .location-dropdown .location-filter .ant-select-selection-wrap {
  padding: 0;
}
.headline .location-dropdown .location-filter .ant-select-selection-item {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  text-transform: uppercase;
}
.headline .ant-breadcrumb {
  padding: 10px 0 0;
}

#homepage {
  position: relative;
}
#homepage_banner {
  background-color: #dc1a22;
  padding: 23px 21px;
  height: 525px;
}
#homepage_banner [class~=ant-carousel] .slick-slide img {
  border-radius: 30px;
}
#homepage_banner [class~=ant-carousel] .slick-prev:hover,
#homepage_banner [class~=ant-carousel] .slick-next:hover {
  color: #ffffff;
}
#homepage_banner [class~=ant-carousel] .slick-prev:before,
#homepage_banner [class~=ant-carousel] .slick-next:before {
  content: "";
}
#homepage_banner [class~=ant-carousel] [class~=slick-dots] {
  bottom: 60px;
}
#homepage_banner [class~=ant-carousel] [class~=slick-dots] li button {
  background-color: #ffffff;
  border: none;
}
#homepage_banner [class~=ant-carousel] [class~=slick-dots] li.slick-active button {
  background-color: #dc1a22;
}
#homepage_banner .banner {
  height: 100%;
  width: 100%;
}
#homepage_banner #search-bar {
  position: relative;
  top: unset;
  margin-top: 10px;
}
#homepage #destinations-highlight {
  padding: 320px 0 80px;
  /* Background shorthand combines multiple properties into one clean line */
  background: #dc1a22 url("/iceholidays-assets/images/destinations-highlight-bg-mobile.png") no-repeat bottom/cover;
  background-blend-mode: overlay;
}
#homepage #destinations-highlight_body h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
#homepage #destinations-highlight_body #destinations-slider .destination {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  padding: 10px 20px;
}
#homepage #destinations-highlight_body #destinations-slider .destination img {
  border: 6px solid #ed434b;
  box-shadow: 0px 0px 5px 0px #fb4d54;
  border-radius: 80px;
  object-fit: cover;
  width: 100%;
  height: 227px;
  max-width: 175px;
}
#homepage #destinations-highlight_body #destinations-slider .destination label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 45px;
  text-align: center;
  vertical-align: middle;
  color: #ffffff;
}
#homepage #destinations-highlight_body #destinations-slider .slick-dots {
  bottom: -50px;
}
#homepage #destinations-highlight_body #destinations-slider .slick-dots li button:before {
  content: "○";
  opacity: 1;
  color: #ffffff;
  font-size: 40px;
}
#homepage #destinations-highlight_body #destinations-slider .slick-dots li.slick-active button:before {
  content: "●";
}
#homepage .location-tabs_header {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 24px;
}
#homepage .location-tabs_header img {
  width: 40px;
  height: 40px;
}
#homepage .location-tabs_header .title {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
#homepage .location-tabs_header .subtitle {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #525a64;
}
#homepage .location-tabs .country-image {
  width: 100%;
  height: 311px;
}
#homepage .location-tabs .country-name {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  vertical-align: middle;
  color: #ffffff;
  bottom: 50px;
  left: 50px;
  position: absolute;
}
#homepage .location-tabs .country-tour-count {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  color: #ffffff;
  bottom: 40px;
  left: 50px;
  position: absolute;
}
#homepage .location-tabs .location-dropdown {
  margin: 0;
  margin-bottom: 24px;
}
#homepage .location-tabs .load-more {
  text-align: center;
  margin-top: 40px;
}
#homepage .location-tabs .load-more .ant-btn {
  padding: 15px 25px;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  height: 40px;
}
#homepage #gd-classic {
  z-index: 1;
  position: relative;
  padding: 24px 14px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #ebebeb;
}
#homepage #gd-classic .location-tabs .location-dropdown .location-filter .ant-select-selector {
  background: #dc1a22;
}
#homepage #gd-classic .location-tabs .location-dropdown .location-filter .ant-select-selection-item,
#homepage #gd-classic .location-tabs .location-dropdown .location-filter .ant-select-arrow {
  color: #ffffff;
}
#homepage #gd-indepth {
  padding-top: 64px;
  padding-right: 14px;
  padding-bottom: 24px;
  padding-left: 14px;
  gap: 24px;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #dc1a22;
}
#homepage #gd-indepth .location-tabs_header .title,
#homepage #gd-indepth .location-tabs_header .subtitle {
  color: #ffffff;
}
#homepage #gd-indepth .location-tabs .load-more .ant-btn {
  background-color: #ffffff;
  color: #dc1a22;
}
#homepage #gd-indepth .postcards .postcard .name,
#homepage #gd-indepth .postcards .postcard .tour-count {
  color: #ffffff;
}
#homepage #whats-new {
  z-index: 1;
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #ebebeb;
}
#homepage #whats-new .ant-card {
  border-radius: 24px;
  box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.1490196078);
}
#homepage #news-and-events {
  border-bottom-right-radius: 40px;
  border-bottom-left-radius: 40px;
  background-color: #ffffff;
}
#homepage #news-and-events .ant-card {
  box-shadow: none;
}
#homepage #news-and-events .ant-card img {
  border-radius: 20px;
}
#homepage .section {
  position: relative;
  padding: 24px 14px;
}
#homepage .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
}
#homepage .section-header h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #000000;
}
#homepage .section-header-button {
  padding: 12px;
  height: 48px;
  border-radius: 50px;
  justify-content: space-between;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  text-transform: uppercase;
}
#homepage .section-body {
  display: inline-flex;
  overflow-x: auto;
  gap: 24px;
  margin-top: 20px;
  width: 100%;
  padding: 10px 5px;
}
#homepage .section-body .ant-card {
  min-width: 262px;
}
#homepage .section-body .ant-card img {
  height: 175px;
  object-fit: cover;
}
#homepage .section-body .ant-card .ant-card-body {
  padding: 16px;
}
#homepage .section-body .ant-card .ant-card-meta-title {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  vertical-align: middle;
  color: #525a64;
  white-space: normal;
}
#homepage .section-body .ant-card .ant-card-meta-description {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #525a64;
}
#homepage .section-body .ant-card .ant-card-meta-description svg {
  color: #dc1a22;
}
#homepage .section-body .ant-card .ant-card-meta-description a {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #dc1a22;
}

.country-filter_option {
  font-family: Poppins, san-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
}

:root {
  --side-padding: 20px;
}

#listing-page_body h1 {
  margin-bottom: 0;
}
#listing-page #tours .tour_pricing span {
  color: #ffffff;
}

#show-page {
  background-color: #ffffff;
}
#show-page .caption-title-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#show-page .caption-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  min-width: 42px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #ffcdd2;
  background-color: #ffebee;
  color: #d32f2f;
  font-family: Poppins, san-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
#show-page_header h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  vertical-align: middle;
  color: #000000;
  text-transform: none;
}
#show-page_header .tour_details {
  align-items: center;
  opacity: 1;
}
#show-page_header .tour_details span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 5px;
}
#show-page_header .tour_details_category {
  color: #dc1a22 !important;
}
#show-page_subheader .caption-title-with-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1em;
  flex-wrap: wrap;
}
#show-page_subheader .caption-title-with-badge h1 {
  margin: 0;
}
#show-page_subheader .caption-new-badge {
  flex-shrink: 0;
}
#show-page_subheader h1 {
  margin: 0 0 1em;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
#show-page .schedule {
  padding: 20px;
  gap: 32px;
  border-radius: 5px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}
#show-page .schedule .flight-destination {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
#show-page .schedule .flight-destination label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
#show-page .schedule .flight-details {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}
#show-page .schedule .flight-details_airline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
#show-page .schedule .flight-details_airline img {
  width: 80px;
}
#show-page .schedule .flight-details_airline span {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
#show-page .schedule .flight-details_flight-no {
  color: #dc1a22;
}
#show-page .schedule .flight-details_datetime {
  display: inline-flex;
  gap: 12px;
}
#show-page .schedule .flight-details_datetime .from,
#show-page .schedule .flight-details_datetime .to {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#show-page .schedule .flight-details_datetime_icon {
  width: 53px;
}
#show-page .schedule .flight-details_datetime_icon img {
  vertical-align: middle;
}
#show-page .schedule .flight-details_datetime_icon::before, #show-page .schedule .flight-details_datetime_icon::after {
  /* Styles kept */
  width: 25%;
  height: 1px;
  /* Changed to border-top (instead of border) to simulate a line better */
  border-top: 1px solid #ccc;
  /* Styles added */
  display: inline-block;
  content: "";
  /* Use padding to vertical align the line */
  /* Use padding in em for a responsive icon height */
  padding-top: 0.2em;
  /* Use margins to give the lines some spacement around the icon */
  /* Use margins in % for a responsive spacement */
  margin-left: 5%;
  margin-right: 5%;
}
#show-page .schedule .flight-details_date {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  color: #545047;
}
#show-page .schedule .flight-details_time {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  color: #545047;
}
#show-page .schedule .flight-details_location {
  font-family: Poppins, san-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #dc1a22;
}
#show-page #pricing-summary .toggle-contact-agent {
  border-top: 2px solid #dc1a22;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
#show-page #pricing-summary .contact-agent {
  background-color: transparent;
  position: relative;
  box-shadow: none;
}
#show-page #pricing-summary .contact-agent .collapse-contact-agent {
  position: absolute;
  right: 15px;
}

.departure-date.guaranteed {
  color: #52c41a !important;
  background-color: #f6ffed !important;
}
.departure-date.guaranteed.selected {
  background-color: #52c41a !important;
  border-color: #52c41a !important;
}
.departure-date.almost-guaranteed {
  color: #13c2c2 !important;
  background-color: #e6fffb !important;
}
.departure-date.almost-guaranteed.selected {
  background-color: #13c2c2 !important;
  border-color: #13c2c2 !important;
}
.departure-date.selected {
  color: white !important;
}

.gd-series-tour-page .headline_header,
.footer-links-page .headline_header,
.static-page .headline_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  margin: 0;
  height: auto;
}
.gd-series-tour-page .headline_header .title,
.footer-links-page .headline_header .title,
.static-page .headline_header .title {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
}
.gd-series-tour-page .headline_header .title img,
.footer-links-page .headline_header .title img,
.static-page .headline_header .title img {
  width: 40px;
  height: 40px;
}
.gd-series-tour-page .headline_header .ant-breadcrumb a,
.footer-links-page .headline_header .ant-breadcrumb a,
.static-page .headline_header .ant-breadcrumb a {
  color: #dc1a22;
}
.gd-series-tour-page .headline_header .ant-breadcrumb .ant-breadcrumb-link,
.footer-links-page .headline_header .ant-breadcrumb .ant-breadcrumb-link,
.static-page .headline_header .ant-breadcrumb .ant-breadcrumb-link {
  text-transform: capitalize;
}
.gd-series-tour-page_body,
.footer-links-page_body,
.static-page_body {
  padding: 20px var(--side-padding);
}
.gd-series-tour-page_body .postcards .postcard img,
.footer-links-page_body .postcards .postcard img,
.static-page_body .postcards .postcard img {
  border-radius: 25px;
  height: 170px;
  object-position: center;
}
.gd-series-tour-page_body .ad img,
.footer-links-page_body .ad img,
.static-page_body .ad img {
  width: 100%;
  margin-bottom: 24px;
}
.gd-series-tour-page#gd-classic .introduction_header h1,
.footer-links-page#gd-classic .introduction_header h1,
.static-page#gd-classic .introduction_header h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  color: #000000;
  margin: 0;
}
.gd-series-tour-page#gd-classic .introduction_body,
.footer-links-page#gd-classic .introduction_body,
.static-page#gd-classic .introduction_body {
  margin-bottom: 20px;
}
.gd-series-tour-page#gd-classic .postcards,
.footer-links-page#gd-classic .postcards,
.static-page#gd-classic .postcards {
  padding: 0;
}
.gd-series-tour-page#g-trip .headline_header .title img,
.footer-links-page#g-trip .headline_header .title img,
.static-page#g-trip .headline_header .title img {
  width: auto;
  height: auto;
}
.gd-series-tour-page#g-trip hr,
.footer-links-page#g-trip hr,
.static-page#g-trip hr {
  border: 1px solid #cccccc;
}
.gd-series-tour-page#g-trip #trips,
.footer-links-page#g-trip #trips,
.static-page#g-trip #trips {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.gd-series-tour-page#g-trip #trips .trip-card,
.footer-links-page#g-trip #trips .trip-card,
.static-page#g-trip #trips .trip-card {
  border-radius: 20px;
  padding: 10px;
  gap: 24px;
  background: #ffffff;
  width: 100%;
  flex-direction: column;
}
.gd-series-tour-page#g-trip #trips .trip-card_image img,
.footer-links-page#g-trip #trips .trip-card_image img,
.static-page#g-trip #trips .trip-card_image img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}
.gd-series-tour-page#g-trip #trips .trip-card_details,
.footer-links-page#g-trip #trips .trip-card_details,
.static-page#g-trip #trips .trip-card_details {
  gap: 4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.gd-series-tour-page#g-trip #trips .trip-card_name,
.footer-links-page#g-trip #trips .trip-card_name,
.static-page#g-trip #trips .trip-card_name {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  color: #ffffff;
  background-color: #dc1a22;
  padding: 8px 16px;
  border-radius: 32px;
}
.gd-series-tour-page#g-trip #trips .trip-card_date,
.footer-links-page#g-trip #trips .trip-card_date,
.static-page#g-trip #trips .trip-card_date {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0.03em;
  color: #000000;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table,
.footer-links-page#g-trip #trips .trip-card_tours table,
.static-page#g-trip #trips .trip-card_tours table {
  width: 100%;
  border-collapse: collapse;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table thead,
.footer-links-page#g-trip #trips .trip-card_tours table thead,
.static-page#g-trip #trips .trip-card_tours table thead {
  background: #f0f0f0;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table thead th,
.footer-links-page#g-trip #trips .trip-card_tours table thead th,
.static-page#g-trip #trips .trip-card_tours table thead th {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #000000;
  padding: 4px 8px;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table thead th:first-child,
.footer-links-page#g-trip #trips .trip-card_tours table thead th:first-child,
.static-page#g-trip #trips .trip-card_tours table thead th:first-child {
  text-align: left;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table tbody td,
.footer-links-page#g-trip #trips .trip-card_tours table tbody td,
.static-page#g-trip #trips .trip-card_tours table tbody td {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #000000;
  padding: 16px 8px;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table tbody td:first-child,
.footer-links-page#g-trip #trips .trip-card_tours table tbody td:first-child,
.static-page#g-trip #trips .trip-card_tours table tbody td:first-child {
  text-align: left;
}
.gd-series-tour-page#g-trip #trips .trip-card_tours table tbody td svg,
.footer-links-page#g-trip #trips .trip-card_tours table tbody td svg,
.static-page#g-trip #trips .trip-card_tours table tbody td svg {
  color: #dc1a22;
}
.gd-series-tour-page#g-trip #trips .trip-card .ant-space,
.footer-links-page#g-trip #trips .trip-card .ant-space,
.static-page#g-trip #trips .trip-card .ant-space {
  width: 100%;
}

.static-show-page_body,
.footer-links-show-page_body,
.gd-series-tour-show-page_body {
  margin: 20px var(--side-padding);
  background: #ffffff;
  border-radius: 20px;
}

.static-page .headline_header .title img {
  width: auto;
}

#gd-posts.gd-series-tour-page .headline_header .title img {
  width: auto;
}
#gd-posts .ad {
  text-align: center;
  display: block;
}
#gd-posts .ad img {
  width: auto;
}
#gd-posts-show .gd-series-tour-show-page_body {
  padding: 40px 12px;
}

#gd-domestic-show .gd-series-tour-show-page_body {
  padding: 10px 10px 20px 10px;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_image img {
  border-radius: 20px;
  height: 190px;
  width: 100%;
  object-fit: cover;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_date {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_heading {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  margin-bottom: 26px;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_heading span {
  display: block;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 27px;
  color: #000000;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row .tour-program-name {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  vertical-align: middle;
  color: #000000;
  display: block;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row .tour-program-date {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #666666;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row .tour-program-code {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row .tour-program-code span {
  display: block;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-align: right;
  vertical-align: bottom;
  color: #666666;
}
#gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row .tour-program-code .download-icon {
  height: 40px;
}

.mice-page .headline_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: transparent;
  margin: 0;
  height: auto;
}
.mice-page .headline_header .title {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
}
.mice-page .headline_header .title img {
  width: 180px;
  height: auto;
}
.mice-page_body {
  margin: 20px var(--side-padding);
  background: #ffffff;
  padding: 24px 10px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mice-page_body-about {
  gap: 24px;
}
.mice-page_body-about #header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mice-page_body-about #header h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 35px;
  line-height: 100%;
  text-align: right;
  color: #000000;
  margin: 0;
}
.mice-page_body-about #header span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: right;
  color: #979797;
  display: block;
  margin-top: 10px;
}
.mice-page_body-about #header-image img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.mice-page_body-about #article p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.mice-page_body-forms #header h1 {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #000000;
  margin: 0;
}
.mice-page_body-forms #header p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #959492;
}
.mice-page_body-forms .mice-form-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mice-page_body-forms .mice-form-group > label {
  font-family: Poppins, san-serif;
  font-weight: Poppins, san-serif;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #dc1a22;
}
.mice-page_body-forms .mice-form-group .ant-form-item-label {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.mice-page_body-forms .mice-form-group .ant-picker {
  width: 100%;
}

.mice-page table {
  width: 100%;
  border-collapse: collapse;
}
.mice-page table th,
.mice-page table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid black;
}

#news-blogs .gd-series-tour-page_body .ant-tabs > .ant-tabs-nav {
  display: flex !important;
  margin: 0;
}
#news-blogs .gd-series-tour-page_body .ant-tabs > .ant-tabs-nav .ant-tabs-nav-list {
  flex: 1;
}
#news-blogs .gd-series-tour-page_body .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab {
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-top-width: 4px;
  border: none;
  justify-content: center;
  margin: 0;
  width: 50%;
  height: 50px;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: capitalize;
  background: #dc1a22;
  color: #ffffff;
}
#news-blogs .gd-series-tour-page_body .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active {
  background: #ffffff;
  border-top: 4px solid #dc1a22;
}
#news-blogs .gd-series-tour-page_body .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #dc1a22;
}
#news-blogs .gd-series-tour-page_body .ant-tabs-content-holder {
  background: #ffffff;
}
#news-blogs .gd-series-tour-page_body .blogs {
  display: grid;
  gap: 20px;
  padding: 32px;
}
#news-blogs .gd-series-tour-page_body .blogs .blog {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#news-blogs .gd-series-tour-page_body .blogs .blog img {
  width: 100%;
  height: 257px;
  border-radius: 25px;
  object-fit: cover;
}
#news-blogs .gd-series-tour-page_body .blogs .blog .details {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#news-blogs .gd-series-tour-page_body .blogs .blog .details .date {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #959492;
}
#news-blogs .gd-series-tour-page_body .blogs .blog .details .title {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  vertical-align: middle;
  text-transform: capitalize;
  color: #000000;
}
#news-blogs-show .gd-series-tour-show-page_body {
  padding: 32px 10px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#gallery-show .gd-series-tour-page_body .gallery {
  padding: 32px 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
#gallery-show .gd-series-tour-page_body .gallery .ant-image-img {
  border-radius: 25px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.signin-page-form,
#reset-password-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding-top: 24px;
  padding-right: 10px;
  padding-bottom: 24px;
  padding-left: 10px;
  border-radius: 20px;
  background: #ffffff;
}
.signin-page-form .ant-form > label,
#reset-password-form .ant-form > label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
  margin-bottom: 8px;
  display: block;
}
.signin-page-form .ant-form .ant-form-item-label label,
#reset-password-form .ant-form .ant-form-item-label label {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
}
.signin-page-form .ant-form #forgot-password,
#reset-password-form .ant-form #forgot-password {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: capitalize;
  color: #dc1a22;
  margin-bottom: 16px;
  cursor: pointer;
}
.signin-page-form .ant-form .ant-btn,
#reset-password-form .ant-form .ant-btn {
  padding: 16px 40px;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
}
.signin-page-form #download-options,
#reset-password-form #download-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.signin-page-form #download-options h2,
#reset-password-form #download-options h2 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
}
.signin-page-form #download-options p,
#reset-password-form #download-options p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-align: center;
  vertical-align: middle;
  color: #000000;
}
.signin-page-form #download-options #qr,
#reset-password-form #download-options #qr {
  width: 120px;
  height: 120px;
}
.signin-page-form #download-options small,
#reset-password-form #download-options small {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  color: #b3b3b3;
}
.signin-page-form #download-options .ant-space img,
#reset-password-form #download-options .ant-space img {
  width: 135px;
}

.forgot_password_modal .ant-modal-content {
  padding-top: 24px;
  padding-right: 32px;
  padding-bottom: 40px;
  padding-left: 32px;
}
.forgot_password_modal .ant-modal-content .ant-modal-title h2 {
  margin: 0;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
}
.forgot_password_modal .ant-modal-content .ant-modal-title p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #000000;
}
.forgot_password_modal .ant-modal-content .forgot-password-form {
  margin: 24px 0 0;
}

.signin-page-form {
  gap: 16px;
}
.signin-page-form-header > label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #dc1a22;
  margin-bottom: 8px;
  display: block;
}
.signin-page-form .ant-radio-group {
  width: 100%;
}
.signin-page-form .ant-radio-group .ant-radio-button-wrapper {
  width: 50%;
  text-align: center;
  border: 1px solid #dc1a22;
  color: #dc1a22;
  height: 40px;
}
.signin-page-form .ant-radio-group .ant-radio-button-wrapper-checked {
  background-color: #dc1a22;
  color: #ffffff;
}
.signin-page-form .ant-radio-group .ant-radio-button-wrapper-checked::before {
  background-color: #dc1a22;
}
.signin-page-form .ant-radio-group .ant-radio-button-wrapper:first-child {
  border-start-start-radius: 32px;
  border-end-start-radius: 32px;
}
.signin-page-form .ant-radio-group .ant-radio-button-wrapper:last-child {
  border-start-end-radius: 32px;
  border-end-end-radius: 32px;
}
.signin-page #partner-sign-in-link {
  margin-top: 30px;
}
.signin-page #partner-sign-in-link span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #b3b3b3;
}
.signin-page #partner-sign-in-link a {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}

.more-page .headline_header {
  margin: 0;
  padding-top: 20px;
  background: transparent;
}
.more-page .headline_header h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  vertical-align: middle;
  text-transform: none;
}
.more-page .headline_header .title {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
}
.more-page_body {
  margin: 20px var(--side-padding);
  background: #ffffff;
  border-radius: 20px;
}
.more-page_content {
  padding: 40px 10px;
}

#about-us-page #introduction img {
  width: 42.96px;
  height: 40px;
}
#about-us-page #introduction h1 {
  font-family: Poppins, san-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}
#about-us-page #article {
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 64px;
}
#about-us-page #article img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#about-us-page #article h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #000000;
}
#about-us-page #article p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #000000;
}
#about-us-page .about-us .certificates .ant-col {
  text-align: center;
}

#contact-us-page .ant-space {
  width: 100%;
}
#contact-us-page #contact-us-note p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}
#contact-us-page #contact-us-note a {
  text-decoration: underline;
}
#contact-us-page h2 {
  color: #dc1a22;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
}
#contact-us-page h3 {
  color: #dc1a22;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
}
#contact-us-page hr {
  border: 1px solid #dddddd;
}
#contact-us-page #contact-us-form_header {
  margin-bottom: 24px;
}
#contact-us-page #contact-us-form .ant-form-item .ant-form-item-label > label {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}

#about-gd-flight-page .headline_header img {
  height: 42px;
}
#about-gd-flight-page .more-page_content {
  padding: 40px;
}
#about-gd-flight-page .more-page_content .notice {
  text-align: center;
}
#about-gd-flight-page .more-page_content .notice_text h2 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #000000;
}
#about-gd-flight-page .more-page_content .notice_text p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  color: #000000;
}
#about-gd-flight-page .more-page_content .notice_button .back-to-home-button {
  padding: 16px 40px;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
}

#news-blogs-show .title {
  text-transform: capitalize;
}

.new-posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.new-posts .ant-card {
  border-radius: 40px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.new-posts .ant-card-cover {
  margin: 0;
}
.new-posts .ant-card-cover img {
  border-radius: 40px 40px 0 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.new-posts .ant-card-meta-title {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 22px;
  white-space: normal;
  color: #525a64;
}
.new-posts .ant-card-body {
  background-color: #ffffff;
  border-radius: 0 0 40px 40px;
  padding-top: 12px;
  padding-right: 15px;
  padding-bottom: 18px;
  padding-left: 15px;
}
.new-posts .ant-card-body .summary {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #525a64;
}
.new-posts .ant-card-body svg {
  color: #dc1a22;
}

.image-container .image {
  max-width: 100%;
  box-sizing: border-box;
}

#ice-visa-services-contact-agents-page .headline_header img {
  width: auto;
  height: 50px;
}

.password-requirements {
  padding: 32px 24px;
}
.password-requirements > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.password-requirements > ul li {
  gap: 4px;
}
.password-requirements > ul li.valid svg {
  color: #6bdf63;
}
.password-requirements > ul li.invalid svg {
  color: #dc1a22;
}

.reset-password-success-modal .ant-modal-confirm-title h3 {
  color: #dc1a22;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}

.bookings-page {
  margin: 50px auto;
  width: 90%;
}
.bookings-page_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.bookings-page_header h1 {
  text-transform: uppercase;
}
.bookings-page_header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.bookings-page_header-actions .notifications {
  color: #dc1a22;
}
.bookings-page_header-actions .ant-select-single {
  border-left: 1px solid #acacac;
  height: 19px;
}
.bookings-page_header-actions .ant-select-single .ant-select-selector {
  color: #dc1a22;
}
.bookings-page_header-actions-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.bookings-page_header-actions-btn span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 9px;
  line-height: 100%;
  text-align: center;
  color: #000000;
}
.bookings-page_table {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bookings-page_table > label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.bookings-page_table > label .note {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #545047;
}
.bookings-page_table .ant-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}
.bookings-page_table .ant-table-wrapper .ant-table-cell {
  padding: 14px;
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  white-space: nowrap; /* Prevents text from wrapping to the next line */
  overflow: hidden; /* Hides any content that overflows the container */
  text-overflow: ellipsis;
}
.bookings-page_table .ant-table-wrapper .ant-table-cell .ant-tag {
  text-transform: capitalize;
  border-radius: 20px;
  padding: 0 10px;
}
.bookings-page_table .ant-table-wrapper .ant-table-thead .ant-table-cell {
  font-size: 13px;
  color: #545047;
  background-color: #f5f5f5;
}
.bookings-page_table .ant-table-wrapper .ant-table-tbody .ant-table-cell {
  font-size: 14px;
  color: #000000;
}
.bookings-page_table .ant-table-wrapper .ant-table-pagination.ant-pagination {
  margin-top: 50px;
}
.bookings-page_table-grid-cell {
  padding: 10px;
  border-bottom: 1px solid #ececec;
  display: flex;
  min-height: 45px;
}
.bookings-page_table-grid-cell-merge {
  grid-column: span 2;
}
.bookings-page_table-grid-cell span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
}
.bookings-page_table-grid-cell .label {
  font-size: 13px;
  color: #545047;
  width: 125px;
  text-transform: capitalize;
}
.bookings-page_table-grid-cell.full-width {
  flex-direction: column;
  width: 100%;
}
.bookings-page_table-grid-cell.full-width .label {
  margin-bottom: 10px;
}
.bookings-page_table-grid-cell.full-width span:not(.label) {
  white-space: normal; /* allow wrapping */
  word-break: break-word; /* handle long text gracefully */
}
.bookings-page #passenger-info .b2c2b-section_panel-form {
  padding: 20px 35px;
}
.bookings-page #passenger-info .b2c2b-section_panel-form .ant-form-item {
  margin-bottom: 0;
}
.bookings-page #passenger-info .b2c2b-section_panel-form .ant-divider-horizontal.ant-divider-with-text {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  color: #dc1a22;
}
.bookings-page #passenger-info .b2c2b-section_panel-form .ant-divider-horizontal.ant-divider-with-text::after {
  border-color: #e8e8e8;
}
.bookings-page_documents {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bookings-page_notes {
  padding: 4px 40px;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.bookings-page_notes .ant-radio-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.bookings-page_notes .ant-radio-wrapper span.ant-radio + *,
.bookings-page_notes .ant-radio-wrapper span.ant-checkbox + *,
.bookings-page_notes .ant-checkbox-wrapper span.ant-radio + *,
.bookings-page_notes .ant-checkbox-wrapper span.ant-checkbox + * {
  padding-inline-start: 18px;
}
.bookings-page_notes .ant-radio-wrapper .ant-radio-inner,
.bookings-page_notes .ant-radio-wrapper .ant-checkbox-inner,
.bookings-page_notes .ant-checkbox-wrapper .ant-radio-inner,
.bookings-page_notes .ant-checkbox-wrapper .ant-checkbox-inner {
  border-color: #979797;
}
.bookings-page_notes .ant-radio-wrapper .ant-radio-checked .ant-radio-inner,
.bookings-page_notes .ant-checkbox-wrapper .ant-radio-checked .ant-radio-inner {
  border-color: #dc1a22;
  background-color: #dc1a22;
}
.bookings-page_notes p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}

.pricing-summary {
  background-color: #f9f9f9;
  border-top: 2px solid #dc1a22;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.pricing-summary h5 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
  height: 32px;
  margin: 0;
  padding: 10px 15px;
}
.pricing-summary-booking-details {
  padding: 10px 15px 20px;
}
.pricing-summary-booking-details-tour {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  overflow-wrap: anywhere;
}
.pricing-summary-booking-details-tour label {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.pricing-summary-booking-details-tour span {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.pricing-summary-booking-details-tour small {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #979797;
}
.pricing-summary-booking-details-tour #tour-country {
  background-color: #e8e8e8;
  padding: 0 4px;
  border-radius: 5px;
  margin-left: 8px;
}
.pricing-summary-booking-details-breakdown {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}
.pricing-summary-booking-details-breakdown label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.pricing-summary-booking-details-breakdown span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.pricing-summary-booking-details-breakdown span.type {
  text-transform: capitalize;
}
.pricing-summary-booking-details-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pricing-summary-booking-details-items span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
}
.pricing-summary-booking-details-items span:first-child {
  color: #979797;
}
.pricing-summary-booking-details-items span:last-child {
  white-space: nowrap;
}
.pricing-summary-booking-details-items.remaining-balance span {
  color: #ae8337;
}
.pricing-summary-booking-details-total {
  display: flex;
  justify-content: space-between;
}
.pricing-summary-booking-details-total span {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.pricing-summary-v2 .pricing-summary-booking-details {
  padding: 0;
}
.pricing-summary-v2 .pricing-summary-booking-details-items {
  padding: 10px;
  border-radius: 5px;
}
.pricing-summary-v2 .pricing-summary-booking-details-items span:first-child {
  color: inherit;
}
.pricing-summary-v2 .pricing-summary-booking-details-breakdown {
  gap: 0;
}
.pricing-summary-v2 .pricing-summary-booking-details-total {
  border-top: 1px dashed;
  padding-block-start: 15px;
  margin-top: 15px;
  flex-direction: column;
  gap: 20px;
}
.pricing-summary-v2 .pricing-summary-booking-details-total .deposit-highlight span {
  color: #000000;
  font-weight: normal;
}
.pricing-summary-v2 .pricing-summary-booking-details-total .deposit-highlight .due-date {
  font-style: italic;
}
.pricing-summary-v2 .pricing-summary-booking-details-total .deposit-highlight .balance span {
  font-weight: bold;
}
.pricing-summary-v2 .pricing-summary-booking-details-total .grand-total {
  flex: 1;
  display: inline-flex;
  justify-content: space-between;
}
.pricing-summary-v2 .pricing-summary-booking-details-total .grand-total span {
  font-size: 17px;
  font-weight: 600;
}
.pricing-summary-v2 .pricing-summary-booking-details-total .grand-total span:first-child {
  color: #000000;
}
.pricing-summary-v2 .pricing-summary-booking-details .ant-collapse .ant-collapse-content {
  padding: 0;
}
.pricing-summary-v2 .pricing-summary-booking-details .ant-collapse .ant-collapse-content > .ant-collapse-content-box {
  padding-block: 0;
}

.payment-status {
  margin: 50px 10%;
}
.payment-status h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.8);
}
.payment-status_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  padding: 20px;
  background-color: #ffffff;
  min-height: 400px;
}
.payment-status_content-message {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #000000;
  margin-top: 0;
}
.payment-status_content-payment-details {
  gap: 4px;
}
.payment-status_content-payment-details-fee {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.payment-status_content-payment-details-fee label {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #000000;
}
.payment-status_content-payment-details-fee span {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.payment-status_content-payment-details-transaction {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
.payment-status_content-payment-details-transaction > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.payment-status_content-payment-details-transaction span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #000000;
  text-transform: capitalize;
}
.payment-status_content-payment-details-transaction span.status-badge {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding: 0 10px;
  border-radius: 20px;
  text-transform: capitalize;
  text-align: center;
}
.payment-status_content-payment-details-transaction span.status-badge.paid {
  background-color: #6bdf63;
}
.payment-status_content-payment-details-transaction span.status-badge.pending {
  background-color: #ff8030;
}
.payment-status_content-payment-details-transaction span.status-badge.failed {
  background-color: #dc1a22;
}
.payment-status_content .pricing-summary {
  border-radius: 5px;
  padding: 20px;
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid transparent;
  box-shadow: none;
}
.payment-status_content .pricing-summary h5 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
  height: 32px;
  margin: 0;
}
.payment-status_content .pricing-summary-tour {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-status_content .pricing-summary-tour label {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.payment-status_content .pricing-summary-tour span {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.payment-status_content .pricing-summary-tour small {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #979797;
}
.payment-status_content .pricing-summary-tour #tour-country {
  background-color: #e8e8e8;
  padding: 0 4px;
  border-radius: 5px;
  margin-left: 8px;
}
.payment-status_content .pricing-summary-breakdown {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.payment-status_content .pricing-summary-breakdown label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.payment-status_content .pricing-summary-breakdown span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.payment-status_content .pricing-summary-items {
  display: flex;
  justify-content: space-between;
}
.payment-status_content .pricing-summary-items span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
}
.payment-status_content .pricing-summary-items span:first-child {
  color: #979797;
}
.payment-status_content .pricing-summary-total {
  display: flex;
  justify-content: space-between;
}
.payment-status_content .pricing-summary-total span {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.payment-status_action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.payment-status .outstanding-balance {
  border: 2px solid #f8dcac;
  background: #fdf3cd;
  border-radius: 2px;
  padding: 20px;
  color: #7c570d;
}
.payment-status .outstanding-balance .amount {
  font-weight: bold;
  font-size: 22px;
}
.payment-status .outstanding-balance .due-date .ant-space-item:first-child {
  color: #ae8337;
}
.payment-status .outstanding-balance .due-date .ant-space-item:last-child {
  font-size: 17px;
}

.b2c2b .ant-tabs .ant-tabs-ink-bar {
  background-color: #dc1a22;
}
.b2c2b .ant-tabs .ant-tabs-tab:hover,
.b2c2b .ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #dc1a22;
}
.b2c2b .ant-tabs .ant-tabs-tab-btn:focus {
  color: #000000;
}
.b2c2b-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b2c2b-section .infants-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.b2c2b-section .infants-form {
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 16px 16px;
  margin-left: 16px;
}
.b2c2b-section [data-insurance-anchor] {
  scroll-margin-top: 24px;
}
.b2c2b-section h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #222222;
}
.b2c2b-section_panel {
  background: #ffffff;
  border-top: 2px solid #dc1a22;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.b2c2b-section_panel-header {
  padding: 20px 20px 15px;
}
.b2c2b-section_panel-header label {
  color: #dc1a22;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.b2c2b-section_panel-form .ant-form-item {
  margin-bottom: 0;
}
.b2c2b-section_panel-form .ant-form-item .ant-form-item-label > label {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.b2c2b-section_panel-form .ant-form-item .ant-input-suffix,
.b2c2b-section_panel-form .ant-form-item .ant-picker-suffix {
  color: rgba(0, 0, 0, 0.8);
  font-size: 19px;
}
.b2c2b-section_panel-form .ant-form-item .info-icon {
  color: #dc1a22;
  vertical-align: middle;
  margin-left: 8px;
}
.b2c2b-section_panel-form .ant-form-item .ant-select-arrow svg {
  color: #000000;
}
.b2c2b-section .pax-count {
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}
.b2c2b-section .pax-count label {
  width: 165px;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.b2c2b-section .pax-count .counter {
  padding: 10px;
  background-color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 155px;
  border-radius: 2px;
}
.b2c2b-section .pax-count .counter button {
  background-color: #ffffff;
}
.b2c2b-section .agent-selection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.b2c2b-section .agent-selection .b2c2b-section_panel-header {
  padding-bottom: 0;
}
.b2c2b-section .agent-selection .preferred-agent {
  margin: 0 20px 20px;
  padding: 15px 20px;
  border-radius: 20px;
  background-color: #f5f5f5;
}
.b2c2b-section .agent-selection .preferred-agent-details {
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.b2c2b-section .agent-selection .preferred-agent-name {
  font-family: Georama;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.03em;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}
.b2c2b-section .agent-selection .preferred-agent button.whatsapp {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  height: 25px;
  padding: 4px 12px;
}
.b2c2b-section .agent-selection_filter {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b2c2b-section .agent-selection_filter-states {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
.b2c2b-section .agent-selection_filter-states span {
  border: 1px solid rgba(220, 26, 34, 0.631372549);
  border-radius: 24px;
  padding: 4px 16px;
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  height: 30px;
  letter-spacing: 0.02em;
  color: rgba(220, 26, 34, 0.631372549);
  cursor: pointer;
}
.b2c2b-section .agent-selection_filter-states span.selected {
  background-color: #dc1a22;
  color: #ffffff;
}
.b2c2b-section .agent-selection_list {
  padding: 0 35px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fafafa;
  border-radius: 20px;
}
.b2c2b-section .agent-selection_list > label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.b2c2b-section .agent-selection_list .agent-card {
  flex: 0 0 calc(25% - 30px);
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
}
.b2c2b-section .agent-selection_list .agent-card.selected {
  border-color: #dc1a22;
}
.b2c2b-section .agent-selection_list .agent-card .ant-card-cover {
  padding: 12px 12px 16px;
}
.b2c2b-section .agent-selection_list .agent-card .ant-card-cover img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: auto;
}
.b2c2b-section .agent-selection_list .agent-card .ant-card-body {
  padding: 0 12px 12px;
}
.b2c2b-section .agent-selection_list .agent-card .ant-card-meta-title {
  font-family: Poppins, san-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}
.b2c2b-section .agent-selection_list .agent-card .agent-address {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #959492;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}
.b2c2b-section .agent-selection_list .agent-card button.whatsapp {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  height: 25px;
  padding: 4px 12px;
}
.b2c2b-section .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab {
  padding: 5px 10px;
  width: 120px;
}
.b2c2b-section .payment-gateway_agreement {
  padding: 10px 20px;
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.b2c2b-section .payment-gateway_agreement span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}
.b2c2b-section .payment-gateway_agreement span a {
  color: #dc1a22;
}
.b2c2b-section .payment-gateway_agreement-note {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-style: Italic;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #dc1a22;
}
.b2c2b-section .payment-gateway_channels {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
  padding: 10px 20px;
}
.b2c2b-section .payment-gateway_channels-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  height: 150px;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.b2c2b-section .payment-gateway_channels-box img {
  height: 85px;
  max-width: 80%;
  object-fit: contain;
}
.b2c2b-section .payment-gateway_channels-box span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #000000;
}
.b2c2b-section .payment-terms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 10px 20px;
}
.b2c2b-section .payment-terms-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  height: auto;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.b2c2b-section .payment-terms-box span {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: #000000;
}
.b2c2b-section .payment-terms-box .title {
  font-size: 16px;
}
.b2c2b-section .payment-terms-box .note {
  color: gray;
  white-space: break-spaces;
  line-height: 1.2rem;
}
.b2c2b-section .payment-terms-box .price {
  font-size: 20px;
  margin-top: 20px;
}
.b2c2b-section .payment-terms-box .ant-alert-warning {
  width: 100%;
  white-space: break-spaces;
}
.b2c2b-section .payment-terms-box.selected {
  box-shadow: 0 0 5px #dc1a22;
  border-color: #dc1a22;
}
.b2c2b-section .payment-terms-box.selected .price {
  color: red;
}
.b2c2b-section-collapsible {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b2c2b-section-collapsible h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #222222;
}
.b2c2b-section-collapsible_panel.ant-collapse {
  background: #ffffff;
  border-top: 2px solid #dc1a22;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.b2c2b-section-collapsible_panel.ant-collapse .ant-collapse-header {
  padding: 20px 20px 15px;
  color: #dc1a22;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.b2c2b-section-collapsible_panel.ant-collapse .ant-collapse-content {
  border-top: none;
}
.b2c2b-section-collapsible_panel.ant-collapse .ant-collapse-item:last-child > .ant-collapse-content {
  border-radius: 0 0 20px 20px;
}
.b2c2b-section-collapsible .ant-tabs .ant-tabs-ink-bar {
  background-color: #dc1a22;
}
.b2c2b-section-collapsible .ant-tabs .ant-tabs-tab:hover,
.b2c2b-section-collapsible .ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #dc1a22;
}
.b2c2b-section-collapsible .ant-tabs .ant-tabs-tab-btn:focus {
  color: #000000;
}
.b2c2b-section-collapsible .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab {
  padding: 5px 10px;
  width: 120px;
}
.b2c2b .address-label-note {
  font-family: Poppins, san-serif;
  font-size: 12px;
  font-weight: 400;
  margin-inline-start: 5px;
  color: #8d8d8d;
}
.b2c2b .more-details-collapsible .ant-collapse-header {
  padding: 0;
}
.b2c2b .more-details-collapsible .ant-collapse-content-box {
  padding: 20px 0;
}
.b2c2b .more-details-collapsible .ant-collapse-header-text {
  color: #dc1a22;
}
.b2c2b .form-next-btn-wrapper:has(.next-tab-btn-absolute) {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.b2c2b .form-next-btn-wrapper:has(.next-tab-btn) {
  text-align: right;
}

.change_agent_modal .ant-modal-content {
  border-radius: 20px;
  border-top: 2px solid #dc1a22;
}
.change_agent_modal .ant-modal-title {
  color: #dc1a22;
}

.nationality-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.visa-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #dc1a22;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease;
}
.visa-badge:hover {
  opacity: 0.8;
}
.visa-badge svg {
  color: #dc1a22;
  vertical-align: middle;
}

.visa-popover-content {
  max-width: 280px;
}
.visa-popover-content p {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
}
.visa-popover-content p:last-child {
  margin-bottom: 0;
}

.v2 #passenger-info .ant-form-item-label,
.v2 .b2c2b-section .ant-form-item-label {
  width: 100%;
}
.v2 #passenger-info .ant-form-item-label > label,
.v2 .b2c2b-section .ant-form-item-label > label {
  width: 100%;
}

.visa-info-drawer .ant-drawer-content-wrapper {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.visa-info-drawer .ant-drawer-header {
  border-bottom: 1px solid #f0f0f0;
}
.visa-info-drawer .ant-drawer-body {
  padding-top: 0;
}
.visa-info-drawer .ant-drawer-title {
  display: flex;
  align-items: center;
}
.visa-info-drawer .visa-popover-content {
  max-width: 100%;
  padding: 8px 0;
}
.visa-info-drawer .visa-popover-content p {
  font-size: 14px;
  line-height: 1.6;
}

#passenger-info .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab {
  width: 60px;
}
#passenger-info .passenger-info-header {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
#passenger-info .passenger-info-header-desktop {
  display: none;
}
#passenger-info .passenger-info-header svg {
  vertical-align: middle;
}
#passenger-info .ant-checkbox-disabled + span,
#passenger-info .ant-checkbox-disabled + span {
  color: #000000;
  opacity: 0.8;
}
#passenger-info .ant-checkbox-disabled .ant-checkbox-inner:after,
#passenger-info .ant-checkbox-disabled .ant-checkbox-inner:after {
  border-color: rgb(255, 255, 255);
}
#passenger-info .infants-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#passenger-info .infants-list .add-infant-btn {
  width: 125px;
  border-radius: 20px;
  padding: 4px 12px;
  gap: 4px;
}
#passenger-info .infants-list .add-infant-btn span {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
#passenger-info .infants-form_header {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
#passenger-info .infants-form_header label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #dc1a22;
}

.price-details-container {
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-details-container_header {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0em;
  color: #000000;
}
.price-details-container_content .super-promo {
  background: #fbdfdf;
}
.price-details-container_content .promo1 {
  background: #f9f6f3;
}
.price-details-container_content .normal {
  background: #f5f5f5;
}
.price-details-container_content .pricing-table {
  display: none;
}
.price-details-container_content #pricing-list .ant-card .ant-card-body {
  padding: 10px 15px;
}
.price-details-container_content #pricing-list .pricing-header {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.02em;
  text-align: center;
  color: #dc1a22;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.price-details-container_content #pricing-list .pricing-body .pricing {
  display: flex;
  justify-content: space-between;
  color: #545047;
}
.price-details-container_content #pricing-list .pricing-body .pricing .category {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
}
.price-details-container_content #pricing-list .pricing-body .pricing .price {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: center;
}

.payment-method-modal .ant-modal-confirm-content {
  padding: 20px 0;
  text-align: center;
}
.payment-method-modal .ant-modal-confirm-content .ant-space-item {
  cursor: pointer;
  border-radius: 5px;
  padding: 5px 20px;
  border: 1px solid #e5e5e5;
}
.payment-method-modal .ant-modal-confirm-content .ant-space-item:hover {
  background-color: #e5e5e5;
}

.profile-page-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.profile-page-form > label,
.profile-page-form .ant-form > label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  vertical-align: middle;
  color: #dc1a22;
}
.profile-page-form .ant-form > label {
  display: block;
  margin-bottom: 20px;
}
.profile-page-form > p {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #000000;
}
.profile-page-form-action-btns {
  margin: 50px 0;
}
.profile-page .assigned-agent-section {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 10px;
}
.profile-page .assigned-agent-section-header h3 {
  font-family: Poppins, san-serif;
  font-size: 20px;
  font-weight: 700;
  color: #dc1a22;
  margin: 0;
}
.profile-page .assigned-agent-section .assigned-agent-card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 20px;
}
.profile-page .assigned-agent-section .assigned-agent-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-page .assigned-agent-section .assigned-agent-details h4 {
  font-family: Poppins, san-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.profile-page .assigned-agent-section .assigned-agent-details p {
  font-family: Poppins, san-serif;
  font-size: 14px;
  color: #000000;
  margin: 0;
}
.profile-page .assigned-agent-section .assigned-agent-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.profile-page .assigned-agent-section .assigned-agent-meta span {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  color: #545047;
  font-size: 12px;
  padding: 4px 10px;
}

.pricing-summary-addons-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0;
}

.pricing-summary .ant-collapse > .ant-collapse-item > .ant-collapse-header,
.pricing-summary-v2 .ant-collapse > .ant-collapse-item > .ant-collapse-header {
  align-items: center;
  padding: 10px 13px 0 5px;
}
.pricing-summary .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-expand-icon,
.pricing-summary-v2 .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-expand-icon {
  padding-inline-end: 10px;
}
.pricing-summary .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow,
.pricing-summary-v2 .ant-collapse > .ant-collapse-item > .ant-collapse-header .ant-collapse-arrow {
  font-size: 10px;
}
.pricing-summary .ant-collapse .ant-collapse-content > .ant-collapse-content-box,
.pricing-summary-v2 .ant-collapse .ant-collapse-content > .ant-collapse-content-box {
  padding: 16px 13px 16px 16px;
}
.pricing-summary .ant-collapse-content,
.pricing-summary-v2 .ant-collapse-content {
  border-top: 1px solid #f0f0f0;
  padding: 12px 0 0 0;
}

.headline_banner_full {
  height: 600px;
  background: var(--desktop-bg) no-repeat center center/cover;
}

.v2 #show-page {
  --side-padding: 20px;
  --floating-chat-bottom: 100px;
  --floating-scroll-bottom: 160px;
  --pricing-footer-height: 90px;
  --floating-toggle-bottom: 275px;
  --floating-contact-bottom: 225px;
  padding-bottom: var(--pricing-footer-height);
}
.v2 #show-page .ant-layout {
  background-color: #ffffff;
  overflow: unset !important;
}
.v2 #show-page .headline_header {
  padding: 15px var(--side-padding);
  background-color: #efefef;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  position: static;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.v2 #show-page .headline_header .headline_title_row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
}
.v2 #show-page .headline_header .tour_details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  opacity: 1;
  margin-top: 4px;
}
.v2 #show-page .headline_header .tour_details_info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.v2 #show-page .headline_header .tour_details_code {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 11px;
  color: #000000;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 2px 6px;
  white-space: nowrap;
}
.v2 #show-page .headline_header .tour_details_category {
  font-family: Poppins, san-serif;
  font-size: 11px;
  font-weight: 600;
  color: #dc1a22 !important;
  white-space: nowrap;
}
.v2 #show-page .headline_banner {
  height: 300px;
  overflow: hidden;
}
.v2 #show-page_header {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.v2 #show-page_header h1 {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: #000000;
  text-transform: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: default;
}
.v2 #show-page .itinerary-images {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* slick dots positioning */
}
.v2 #show-page .itinerary-images .slick-slider,
.v2 #show-page .itinerary-images .slick-list,
.v2 #show-page .itinerary-images .slick-track {
  width: 100%;
  height: 100%;
}
.v2 #show-page .itinerary-images .slick-slide > div {
  height: 100%;
  overflow: hidden;
}
.v2 #show-page .itinerary-images .ant-image {
  width: 100%;
  height: 100%;
  display: block;
}
.v2 #show-page .itinerary-images .ant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.v2 #show-page .itinerary-images .slick-dots {
  bottom: 8px;
}
.v2 #show-page .itinerary-images .show-all-photos-button {
  position: absolute;
  right: 12px;
  bottom: 72px;
  height: 32px;
  padding: 0 10px;
  font-size: 12px;
}
.v2 #show-page .itinerary-images .show-all-photos-button-label {
  line-height: 32px;
}
.v2 #show-page .itinerary-images .show-all-photos-button-label-desktop {
  display: none;
}
.v2 #show-page .itinerary-images .show-all-photos-button:hover {
  color: inherit;
}
.v2 #show-page .itinerary-images .show-all-photos-button svg {
  color: #dc1a22;
}
.v2 #show-page .itinerary-images .slick-dots {
  bottom: 50px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-inline: 50px;
}
.v2 #show-page .itinerary-images .slick-dots li {
  flex: 1;
  height: 5px;
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  overflow: hidden;
}
.v2 #show-page .itinerary-images .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.v2 #show-page .itinerary-images .slick-dots li button:before {
  display: none;
}
.v2 #show-page .itinerary-images .slick-dots li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.v2 #show-page .itinerary-images .slick-dots li.slick-active::after {
  transform: scaleX(1);
}
.v2 #show-page .itinerary-images .slick-dots li.slick-active {
  background: rgba(255, 255, 255, 0.8);
}
.v2 #show-page #itinerary-details {
  padding-inline: var(--side-padding);
  display: flex;
  gap: 20px;
  color: rgba(0, 0, 0, 0.7);
}
.v2 #show-page #itinerary-details .itinerary-images {
  display: none;
}
.v2 #show-page #itinerary-details .tour-caption {
  padding: 10px;
}
.v2 #show-page #itinerary-details .tour-caption h3 {
  margin: 0;
  word-break: break-word;
}
.v2 #show-page #itinerary-details .tour-caption .back-icon {
  display: none;
}
.v2 #show-page #itinerary-details .sticky.fixed {
  background-color: #dc1a22;
  color: #ffffff;
}
.v2 #show-page #itinerary-details .sticky.fixed.tour-caption {
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
}
.v2 #show-page #itinerary-details .sticky.fixed.tour-caption h3 {
  font-weight: 500;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v2 #show-page #itinerary-details .sticky.fixed.tour-caption .back-icon {
  display: block;
  flex-shrink: 0;
  color: #ffffff;
}
.v2 #show-page #itinerary-details .sticky.fixed.tour-caption .caption-new-badge {
  background-color: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
}
.v2 #show-page #itinerary-details #tour-inclusives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  row-gap: 10px;
  padding: 10px;
}
.v2 #show-page #itinerary-details #tour-inclusives .item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.v2 #show-page #itinerary-details #tour-inclusives .item label {
  font-weight: 700;
}
.v2 #show-page #itinerary-details #tour-inclusives .item .item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2 #show-page #itinerary-details #tour-inclusives .item .item-label-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v2 #show-page #itinerary-details #tour-inclusives .item .item-description {
  font-size: 12px;
  font-weight: 400;
  color: #666;
}
.v2 #show-page #itinerary-details #tour-inclusives .item .item-description .tour-inclusive-caption {
  width: 95%;
}
.v2 #show-page #itinerary-details #tour-inclusives .item .item-chevron {
  margin-left: auto;
}
.v2 #show-page #itinerary-details #tour-inclusives .item .icon {
  opacity: 0.8;
  flex-shrink: 0;
}
.v2 #show-page #itinerary-details #tour-inclusives .item.with-tooltip {
  cursor: pointer;
}
.v2 #show-page #itinerary-details #tour-inclusives .item.clickable {
  cursor: pointer;
}
.v2 #show-page #itinerary-details #tour-inclusives .item-content {
  margin-top: 5px;
}
.v2 #show-page #itinerary-details .inclusives-highlight-separator {
  border-top: 1px solid #e0e0e0;
  margin: 8px 10px;
}
.v2 #show-page #itinerary-details .details-container {
  border-radius: 10px;
  padding: 10px;
  position: relative;
  min-height: 100px;
}
.v2 #show-page #itinerary-details .details-container svg {
  opacity: 0.2;
  color: #dc1a22;
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(-20deg);
  height: 100% !important;
}
.v2 #show-page #itinerary-details .details-container.important-section {
  background-color: rgba(220, 26, 34, 0.1);
}
.v2 #show-page #itinerary-details .details-container.important-section .details-container_content > *:not(svg) {
  position: relative;
  z-index: 1;
}
.v2 #show-page #itinerary-details .details-container.important-section svg {
  color: white;
  left: 35px;
  top: 10px;
  opacity: 1;
}
.v2 #show-page #itinerary-details .details-container_header {
  color: #dc1a22;
  font-weight: 700;
}
.v2 #show-page #description {
  position: relative;
  transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.v2 #show-page #description + button {
  margin-top: 10px;
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-align: right;
  color: #dc1a22;
}
.v2 #show-page #description.collapsed {
  height: 300px;
  overflow: hidden;
}
.v2 #show-page #description.collapsed::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgb(255, 255, 255) 90%);
  width: 100%;
  height: 5em;
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.v2 #show-page #description.collapsed + button {
  margin-top: 0px;
}
.v2 #show-page .schedule {
  padding: 20px;
  gap: 32px;
  border-radius: 5px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
}
.v2 #show-page .schedule .flight-destination {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}
.v2 #show-page .schedule .flight-destination label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.v2 #show-page .schedule .flight-details {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
}
.v2 #show-page .schedule .flight-details_airline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.v2 #show-page .schedule .flight-details_airline img {
  width: 80px;
}
.v2 #show-page .schedule .flight-details_airline span {
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.v2 #show-page .schedule .flight-details_flight-no {
  color: #dc1a22;
}
.v2 #show-page .schedule .flight-details_datetime {
  display: inline-flex;
  gap: 12px;
}
.v2 #show-page .schedule .flight-details_datetime .from,
.v2 #show-page .schedule .flight-details_datetime .to {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v2 #show-page .schedule .flight-details_datetime_icon {
  width: 53px;
}
.v2 #show-page .schedule .flight-details_datetime_icon img {
  vertical-align: middle;
}
.v2 #show-page .schedule .flight-details_datetime_icon::before, .v2 #show-page .schedule .flight-details_datetime_icon::after {
  /* Styles kept */
  width: 25%;
  height: 1px;
  /* Changed to border-top (instead of border) to simulate a line better */
  border-top: 1px solid #ccc;
  /* Styles added */
  display: inline-block;
  content: "";
  /* Use padding to vertical align the line */
  /* Use padding in em for a responsive icon height */
  padding-top: 0.2em;
  /* Use margins to give the lines some spacement around the icon */
  /* Use margins in % for a responsive spacement */
  margin-left: 5%;
  margin-right: 5%;
}
.v2 #show-page .schedule .flight-details_date {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  color: #545047;
}
.v2 #show-page .schedule .flight-details_time {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  vertical-align: middle;
  color: #545047;
}
.v2 #show-page .schedule .flight-details_location {
  font-family: Poppins, san-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #dc1a22;
}
.v2 #show-page #pricing-summary .toggle-contact-agent {
  border-top: 2px solid #dc1a22;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.v2 #show-page #pricing-summary .contact-agent {
  background-color: transparent;
  position: relative;
  box-shadow: none;
}
.v2 #show-page #pricing-summary .contact-agent .collapse-contact-agent {
  position: absolute;
  right: 15px;
}
.v2 #show-page_body {
  padding-top: 0;
}
.v2 #show-page_body .contact-agent-sider {
  top: 320px;
  z-index: 1100;
  transition: none !important;
}
.v2 #show-page_body .contact-agent-sider.show-travelers-mobile {
  top: 50%;
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
}
.v2 #show-page_body .side-widget-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1050;
}
.v2 #show-page_body .toggle-side-widget {
  cursor: pointer;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.05em;
  padding: 11px 15px 11px 15px;
  position: fixed;
  right: 0;
  z-index: 100;
  bottom: var(--floating-toggle-bottom);
}
.v2 #show-page_body .toggle-travelers {
  background-color: #dc1a22;
  color: #ffffff;
}
.v2 #show-page_body .toggle-contact-agent {
  bottom: var(--floating-contact-bottom);
  top: unset;
}
.v2 #show-page_body .side-widget {
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 1;
  position: relative;
}
.v2 #show-page_body .side-widget_header {
  background: #efefef;
  border-bottom-width: 1px;
  border-bottom-color: #ddd;
  border-bottom-style: solid;
  padding: 10px;
}
.v2 #show-page_body .side-widget_content {
  padding: 20px 25px;
}
.v2 #show-page_body .side-widget_content .find-button {
  border-radius: 10px;
}
.v2 #show-page_body .contact-agent {
  max-height: calc(100vh - 320px - var(--pricing-footer-height));
  overflow-y: auto;
  z-index: 998;
}
.v2 #show-page_body .travelers {
  height: auto;
  overflow-y: auto;
  background: #ffffff;
  display: none;
  z-index: 999;
}
.v2 #show-page_body .travelers_header {
  font-family: Poppins, san-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  letter-spacing: 0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #dc1a22;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v2 #show-page_body .travelers_content {
  padding: 20px 20px;
}
.v2 #show-page_body .travelers_content .ant-form-item {
  margin-bottom: 15px;
}
.v2 #show-page_body .travelers_content .ant-form-item:last-child {
  margin-bottom: 0;
}
.v2 #show-page_body .travelers_content .booking-note {
  text-align: center;
  margin-top: 10px;
  color: #bc4e13;
  background: #fdf5f4;
  padding: 5px;
}
.v2 #show-page_body .show-contact-agent-mobile .toggle-contact-agent {
  display: none;
}
.v2 #show-page_body .show-contact-agent-mobile .contact-agent {
  display: block;
}
.v2 #show-page_body .show-travelers-mobile .toggle-travelers {
  display: none;
}
.v2 #show-page_body .show-travelers-mobile .travelers {
  display: block;
}
.v2 #show-page_body .traveler-category {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 5px;
  padding: 7px 10px;
}
.v2 #show-page_body .traveler-category-label {
  font-weight: 700;
  display: block;
}
.v2 #show-page_body .traveler-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.v2 #show-page_body .traveler-actions .ant-btn.ant-btn-circle.ant-btn {
  min-width: 25px;
}
.v2 #show-page_body .traveler-actions .ant-btn.ant-btn-icon-only {
  width: 25px;
}
.v2 #show-page_body .traveler-actions .ant-btn {
  height: 25px;
}
.v2 #show-page_body .contact-agent_content .search-results .agent-info .company {
  font-size: 12px;
}
.v2 #show-page .pricing-summary-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: white;
  padding: 15px var(--side-padding);
  display: flex;
  flex-direction: column;
  width: 100%;
  border-top: 2px solid #9c9c9c;
  gap: 8px;
}
.v2 #show-page .pricing-summary-footer_departure-date {
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: bold;
}
.v2 #show-page .pricing-summary-footer_departure-date_label {
  color: #dc1a22;
}
.v2 #show-page .pricing-summary-footer_departure-date_value {
  color: #000000;
}
.v2 #show-page .pricing-summary-footer_price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.v2 #show-page .pricing-summary-footer_details_total {
  font-weight: 600;
  font-size: 20px;
  color: #dc1a22;
}
.v2 #show-page .pricing-summary-footer_details_total svg {
  vertical-align: middle;
}
.v2 #show-page .pricing-summary-footer_details_label {
  display: none;
}
.v2 #show-page .sticky {
  position: relative;
}
.v2 #show-page .sticky.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.v2 .departure-date.guaranteed {
  color: #52c41a !important;
  background-color: #f6ffed !important;
}
.v2 .departure-date.guaranteed.selected {
  background-color: #52c41a !important;
  border-color: #52c41a !important;
}
.v2 .departure-date.almost-guaranteed {
  color: #dc1a22 !important;
}
.v2 .departure-date.almost-guaranteed.selected {
  background-color: #dc1a22 !important;
  border-color: #dc1a22 !important;
}
.v2 .departure-date.selected {
  color: white !important;
}
.v2 #tour-details-tabs {
  margin-top: 20px;
  scroll-margin-top: 54px;
}
.v2 #tour-details-tabs.ant-tabs .ant-tabs-ink-bar {
  background-color: #dc1a22;
}
.v2 #tour-details-tabs.ant-tabs .ant-tabs-tab:hover,
.v2 #tour-details-tabs.ant-tabs .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  color: #dc1a22;
}
.v2 #tour-details-tabs.ant-tabs .ant-tabs-tab-btn:focus {
  color: #000000;
}
.v2 #tour-details-tabs.ant-tabs > .ant-tabs-nav {
  position: sticky;
  top: 54px;
  z-index: 10;
  background: white;
}
.v2 #tour-details-tabs.ant-tabs > .ant-tabs-nav > .ant-tabs-nav-wrap > .ant-tabs-nav-list {
  flex: 1;
}
.v2 #tour-details-tabs.ant-tabs > .ant-tabs-nav > .ant-tabs-nav-wrap > .ant-tabs-nav-list > .ant-tabs-tab {
  flex: 1;
  justify-content: center;
  padding: 12px;
}
.v2 #tour-details-tabs.ant-tabs > .ant-tabs-nav > .ant-tabs-nav-wrap::before, .v2 #tour-details-tabs.ant-tabs > .ant-tabs-nav > .ant-tabs-nav-wrap::after {
  opacity: 0;
}
.v2 #tour-details-tabs h2 {
  margin-top: 0;
}
.v2 #tour-details-tabs .ant-tabs-extra-content {
  background: white;
  padding-inline-start: 10px;
  position: absolute;
  right: -20px;
  width: 30px;
  height: 100%;
  display: flex;
  font-size: 20px;
}
.v2 .travelers-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  z-index: 100;
}
.v2 .b2c2b .passenger-info-pending {
  padding: 30px 20px;
  color: #999;
  font-size: 14px;
  text-align: center;
  border: 1px dashed #e0e0e0;
  border-radius: 8px;
  margin: 0;
}
.v2 .b2c2b .passenger-info-pending p {
  margin: 0;
}
.v2 .b2c2b .passenger-info-pending__link {
  color: #dc1a22;
  cursor: pointer;
}
.v2 .b2c2b .passenger-info-pending__link:hover {
  text-decoration: underline;
}
.v2 .b2c2b .ant-btn-color-primary.ant-btn-variant-filled {
  border-radius: 10px;
}
.v2 .b2c2b fieldset {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 15px 0;
  background: #fff;
  font-family: Poppins, san-serif;
}
.v2 .b2c2b fieldset legend {
  padding: 0 8px;
  font-size: 20px;
  font-weight: 600;
  color: #222;
  width: auto;
  border-bottom: unset;
  margin-bottom: 0;
}
.v2 .b2c2b fieldset .fieldset-content {
  padding: 0 15px;
}
.v2 .b2c2b fieldset .fieldset-content h3 {
  color: #dc1a22;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  margin: 0;
}
.v2 .b2c2b .agent-selection {
  display: flex;
  flex-direction: column;
}
.v2 .b2c2b .agent-selection .b2c2b-section_panel-header {
  padding: 0;
}
.v2 .b2c2b .agent-selection .preferred-agent {
  margin: 0 20px 20px;
  padding: 15px 20px;
  border-radius: 20px;
  background-color: #f5f5f5;
}
.v2 .b2c2b .agent-selection .preferred-agent-details {
  gap: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.v2 .b2c2b .agent-selection .preferred-agent-name {
  font-family: Georama;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.03em;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
}
.v2 .b2c2b .agent-selection .preferred-agent button.whatsapp {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  height: 25px;
  padding: 4px 12px;
}
.v2 .b2c2b .agent-selection_filter {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v2 .b2c2b .agent-selection_filter-states {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
.v2 .b2c2b .agent-selection_filter-states span {
  border: 1px solid rgba(220, 26, 34, 0.631372549);
  border-radius: 24px;
  padding: 4px 16px;
  font-family: Poppins, san-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  height: 30px;
  letter-spacing: 0.02em;
  color: rgba(220, 26, 34, 0.631372549);
  cursor: pointer;
}
.v2 .b2c2b .agent-selection_filter-states span.selected {
  background-color: #dc1a22;
  color: #ffffff;
}
.v2 .b2c2b .agent-selection_list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v2 .b2c2b .agent-selection_list > label {
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #dc1a22;
}
.v2 .b2c2b .agent-selection_list .agent-card {
  flex: 0 0 calc(33.333% - 27px);
  border: 2px solid transparent;
  border-radius: 12px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
}
.v2 .b2c2b .agent-selection_list .agent-card.selected {
  border-color: #dc1a22;
}
.v2 .b2c2b .agent-selection_list .agent-card .ant-card-cover {
  padding: 12px 12px 16px;
}
.v2 .b2c2b .agent-selection_list .agent-card .ant-card-cover img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: auto;
}
.v2 .b2c2b .agent-selection_list .agent-card .ant-card-body {
  padding: 0 12px 12px;
}
.v2 .b2c2b .agent-selection_list .agent-card .ant-card-meta-title {
  font-family: Poppins, san-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}
.v2 .b2c2b .agent-selection_list .agent-card .agent-address {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #959492;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}
.v2 .b2c2b .agent-selection_list .agent-card button.whatsapp {
  font-family: Poppins, san-serif;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.05em;
  vertical-align: middle;
  height: 25px;
  padding: 4px 12px;
}
.v2 .b2c2b-section {
  padding: 0;
}
.v2 .b2c2b-section h1 {
  font-family: Poppins, san-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #222222;
  padding-inline: 10px;
  margin-bottom: 0;
}
.v2 .b2c2b-section_panel {
  background: #ffffff;
  border-top: 2px solid #dc1a22;
  border-radius: 20px;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.v2 .b2c2b-section_panel-header {
  padding: 20px 20px 15px;
}
.v2 .b2c2b-section_panel-header label {
  color: #dc1a22;
  font-family: Poppins, san-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
}
.v2 .b2c2b-section_panel-form .ant-row {
  width: 100%;
}
.v2 .b2c2b-section_panel-form .ant-form-item {
  margin-bottom: 0;
}
.v2 .b2c2b-section_panel-form .ant-form-item .ant-form-item-label > label {
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.v2 .b2c2b-section_panel-form .ant-form-item .ant-input-suffix,
.v2 .b2c2b-section_panel-form .ant-form-item .ant-picker-suffix {
  color: rgba(0, 0, 0, 0.8);
  font-size: 19px;
}
.v2 .b2c2b-section_panel-form .ant-form-item .info-icon {
  color: #dc1a22;
  vertical-align: middle;
  margin-left: 8px;
}
.v2 .b2c2b-section_panel-form .ant-form-item .ant-select-arrow svg {
  color: #000000;
}
.v2 .b2c2b-section_panel-form .contact-details-same-as-first-pax .ant-form-item-label > label {
  color: #dc1a22 !important;
}
.v2 .b2c2b-section_panel-form .contact-details-same-as-first-pax .ant-form-item-label > label::after {
  content: "";
}
.v2 .b2c2b-section .pax-count {
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}
.v2 .b2c2b-section .pax-count label {
  width: 165px;
  font-family: Poppins, san-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.05em;
  color: rgba(0, 0, 0, 0.8);
}
.v2 .b2c2b-section .pax-count .counter {
  padding: 10px;
  background-color: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 155px;
  border-radius: 2px;
}
.v2 .b2c2b-section .pax-count .counter button {
  background-color: #ffffff;
}
.v2 .b2c2b-section .infants-form {
  border: none;
}
.v2 .b2c2b .form-next-btn-wrapper:has(.next-tab-btn-absolute) {
  position: absolute;
  right: 0;
  bottom: 20px;
}
.v2 .b2c2b .form-next-btn-wrapper:has(.next-tab-btn) {
  text-align: right;
}
.v2 .price-drawer-toggle {
  display: none;
}

.highlight {
  background-color: rgba(220, 26, 34, 0.1);
}

.mobile-price-drawer.ant-drawer-content {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.mobile-price-drawer.ant-drawer-content .ant-drawer-title {
  text-align: center;
}
.mobile-price-drawer.ant-drawer-content .ant-drawer-close {
  order: 2;
}
.mobile-price-drawer.ant-drawer-content .ant-drawer-body {
  padding: 10px 40px 40px;
}

.ant-popover .inclusives-tooltip-popover {
  width: 360px;
}
.ant-popover .inclusives-tooltip-popover .tooltip-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  margin-bottom: 10px;
}
.ant-popover .inclusives-tooltip-popover .tooltip-content {
  font-size: 12px;
}
.ant-popover .ant-popover-content:has(.pricing-summary-popover) {
  width: 100vw;
}
.ant-popover .pricing-summary-popover {
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.48), 0 3px 6px -4px rgba(0, 0, 0, 0.49), 0 9px 28px 8px rgba(0, 0, 0, 0.25);
  padding: 30px;
}
.ant-popover .pricing-summary-popover .ant-popover-title {
  color: #dc1a22;
  font-size: 17px;
}

@media only screen and (max-width: 768px) {
  .headline_banner_full {
    background-image: var(--mobile-bg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
  }
  .agent-selection_list .agent-card,
  .v2 .agent-selection_list .agent-card {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media only screen and (min-width: 769px) {
  :root {
    --side-padding: 8%;
  }
  .headline {
    --side-padding: 8%;
  }
  #homepage_banner .banner {
    height: 100%;
  }
  .red-bg,
  .grey-bg {
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
  }
  .nav-menu-home-label span {
    display: none;
  }
  .nav-menu-home-label svg {
    display: block;
  }
  .header {
    height: 83px;
  }
  .header .logo {
    flex-basis: 280px;
    flex-shrink: 0;
  }
  .header .logo picture {
    padding: 0 25px 0 15px;
  }
  .header .logo picture img {
    height: auto;
    padding: unset;
  }
  .header #nav-buttons {
    flex: 1;
    min-width: 0;
  }
  .header .nav-menu {
    min-width: 0;
  }
  .header .nav-menu .ant-menu-item,
  .header .nav-menu .ant-menu-submenu {
    padding-inline: 10px;
  }
  .header .ant-menu-submenu .ant-menu-title-content > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }
  .header .sign-in,
  .header .sign-out {
    height: 62px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex-shrink: 0;
  }
  .ant-menu-submenu-popup {
    top: 75px !important;
  }
  .ant-menu-submenu-popup #sign-out-menu {
    padding: 0 15px;
  }
  .ant-menu-submenu-popup #sign-out-menu svg {
    display: block;
  }
  .footer .ant-space {
    flex-direction: column;
  }
  .headline_header {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }
  .headline .ant-breadcrumb {
    padding: 0;
  }
  #homepage {
    border-bottom-right-radius: 70px;
    border-bottom-left-radius: 70px;
  }
  #homepage_banner {
    height: 800px;
  }
  #homepage_banner [class~=ant-carousel] [class~=slick-dots] {
    text-align: right;
    width: max-content;
    background: rgba(255, 255, 255, 0.2);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 10px 15px;
    height: 35px;
    right: 0;
    left: calc(100% - 40px);
    transform: translateX(-50%);
    bottom: 100px;
  }
  #homepage #destinations-highlight {
    padding-top: 10px;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    background-image: url("/iceholidays-assets/images/destinations-highlight-bg-desktop.png");
    background-repeat: no-repeat;
    background-position-y: -110px;
    background-position-x: center;
    background-size: 80%;
    background-blend-mode: multiply;
  }
  #homepage #destinations-highlight_body {
    max-width: 90%;
    margin: auto;
  }
  #homepage #destinations-highlight_body h1 {
    font-size: 36px;
    flex-direction: row;
    justify-content: flex-start;
    margin: 30px;
  }
  #homepage #destinations-highlight_body h1 svg {
    width: 43px !important;
    height: 43px !important;
  }
  #homepage .location-tabs_header {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    height: 54px;
    margin-bottom: 60px;
  }
  #homepage .location-tabs_header .title {
    font-size: 36px;
  }
  #homepage .location-tabs_header .subtitle {
    font-size: 20px;
    max-width: 525px;
  }
  #homepage .location-tabs .country-image {
    height: 355px;
  }
  #homepage .location-tabs .country-name {
    font-size: 36px;
    top: 100px;
    left: 100px;
  }
  #homepage .location-tabs .country-tour-count {
    font-size: 28px;
    top: 170px;
    left: 100px;
  }
  #homepage .location-tabs .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    border-top-width: 4px;
    border: none;
    justify-content: center;
    margin: 0;
    width: 180px;
    height: 50px;
    font-family: Poppins, san-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    vertical-align: middle;
    text-transform: capitalize;
  }
  #homepage .location-tabs .sub-locations {
    padding: 24px;
  }
  #homepage #gd-classic,
  #homepage #gd-indepth {
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }
  #homepage #gd-classic {
    padding: 80px 0;
  }
  #homepage #gd-classic .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab {
    background: #dc1a22;
    color: #ffffff;
  }
  #homepage #gd-classic .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab[data-node-key=see-more] {
    background: #ffffff;
    color: #dc1a22;
  }
  #homepage #gd-classic .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active {
    background: #ffffff;
    border-top: 4px solid #dc1a22;
  }
  #homepage #gd-classic .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #dc1a22;
  }
  #homepage #gd-indepth {
    margin-top: -80px;
    padding-top: 160px;
  }
  #homepage #gd-indepth .ant-tabs > .ant-tabs-nav .ant-tabs-nav-wrap {
    justify-content: center;
  }
  #homepage #gd-indepth .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab {
    background: #ed434b;
    color: #ffffff;
  }
  #homepage #gd-indepth .ant-tabs-card > .ant-tabs-nav .ant-tabs-tab[data-node-key=see-more] {
    background: #ffffff;
    color: #ed434b;
  }
  #homepage #gd-indepth .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active {
    background: #ffffff;
    border-top: 4px solid #ed434b;
  }
  #homepage #gd-indepth .ant-tabs-card.ant-tabs-top > .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn {
    color: #ed434b;
  }
  #homepage .postcards .postcard .details {
    padding: 10px 20px;
  }
  #homepage .section {
    padding: 40px var(--side-padding);
  }
  #homepage .section-header h1 {
    font-size: 42px;
  }
  #homepage .section-header-button {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    font-size: 14px;
  }
  #homepage #whats-new .ant-card img {
    height: 262px;
  }
  #homepage #whats-new .ant-card .ant-card-meta-title {
    font-size: 16px;
  }
  #homepage #whats-new .ant-card .ant-card-meta-description {
    font-size: 13px;
  }
  #homepage #news-and-events .section-body {
    flex-flow: row wrap;
  }
  #homepage #news-and-events .ant-card {
    display: flex;
    flex: 0;
    flex-basis: calc(50% - 12px);
  }
  #homepage #news-and-events .ant-card img {
    border: 1px solid #d9d9d9;
    height: 190px;
    width: 268px;
  }
  #homepage #news-and-events .ant-card .ant-card-meta {
    height: 100%;
    align-items: center;
  }
  #homepage #news-and-events .ant-card .ant-card-meta-description .ant-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #show-page_header h1 {
    font-size: 40px;
  }
  #show-page_subheader {
    padding-top: 40px;
  }
  #show-page_subheader h1 {
    font-size: 30px;
  }
  #passenger-info .ant-tabs-left > .ant-tabs-nav .ant-tabs-tab {
    width: 120px;
  }
  #passenger-info .passenger-info-header-mobile {
    display: none;
  }
  #passenger-info .passenger-info-header-desktop {
    display: block;
  }
  .gd-series-tour-page .headline_header {
    flex-direction: row;
    padding-top: 20px;
  }
  .gd-series-tour-page#g-trip #trips .trip-card {
    gap: 40px;
    padding: 40px;
    flex-direction: row;
  }
  .gd-series-tour-page#g-trip #trips .trip-card_image img {
    height: 330px;
    max-width: 500px;
  }
  .gd-series-tour-page#g-trip #trips .trip-card_details {
    gap: 16px;
  }
  .mice-page_body {
    padding: 24px;
  }
  .mice-page_body #header {
    flex-direction: row;
    align-items: center;
  }
  .mice-page_body #header h1 {
    font-size: 40px;
  }
  #gd-domestic-show .gd-series-tour-show-page_body {
    padding: 32px;
  }
  #gd-domestic-show .gd-series-tour-show-page_body .brochure-card_image img {
    height: 600px;
  }
  #gd-domestic-show .gd-series-tour-show-page_body .brochure-card_details {
    gap: 12px;
  }
  #gd-domestic-show .gd-series-tour-show-page_body .brochure-card_date {
    text-align: center;
  }
  #gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body {
    gap: 12px;
  }
  #gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row {
    flex-direction: row;
    justify-content: space-between;
  }
  #gd-domestic-show .gd-series-tour-show-page_body .brochure-card_tours_table_body_row .tour-program-code .download-icon {
    margin: 0 32px;
  }
  #news-blogs .gd-series-tour-page_body .blogs {
    grid-template-columns: repeat(3, 1fr);
  }
  #gallery-show .gd-series-tour-page_body .gallery {
    padding: 32px;
    grid-template-columns: repeat(4, 1fr);
  }
  .signin-page-form,
  #reset-password-form {
    width: 600px;
    margin: auto;
  }
  .signin-page-form #download-options,
  #reset-password-form #download-options {
    flex-direction: row;
    justify-content: center;
  }
  .more-page .headline_header h1 {
    font-size: 36px;
  }
  .more-page_content {
    padding: 40px;
  }
  #about-us-page #article {
    flex-direction: row;
  }
  #about-us-page #article_text {
    max-width: 50%;
  }
  #about-us-page .about-us .certificates {
    justify-content: flex-start;
  }
  #contact-agents-page .headline_banner {
    background-position: center 30%;
  }
  .new-posts {
    grid-template-columns: repeat(4, 1fr);
  }
  .new-posts .ant-card-cover img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .static-page .headline_header,
  .footer-links-page .headline_header {
    flex-direction: row;
    padding-top: 20px;
  }
  .payment-status_content .pricing-summary-booking-details {
    flex-direction: row;
  }
  .payment-status .outstanding-balance .due-date:last-child {
    align-items: flex-end;
  }
  .price-details-container_content #pricing-list {
    display: none;
  }
  .price-details-container_content .pricing-table {
    display: inline-flex;
    gap: 5px;
    width: 100%;
  }
  .price-details-container_content .pricing-table-category {
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-basis: 210px;
  }
  .price-details-container_content .pricing-table-category-header {
    height: 35px;
  }
  .price-details-container_content .pricing-table-category span {
    font-family: Poppins, san-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    vertical-align: middle;
    color: #545047;
  }
  .price-details-container_content .pricing-table-column {
    border-radius: 10px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    flex: 1;
    background-color: #f9f6f3;
    cursor: pointer;
  }
  .price-details-container_content .pricing-table-column-header {
    font-family: Poppins, san-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    vertical-align: middle;
    color: #dc1a22;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .price-details-container_content .pricing-table-column-header .price-type {
    text-transform: capitalize;
  }
  .price-details-container_content .pricing-table-column span {
    font-family: Poppins, san-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.05em;
    text-align: center;
    vertical-align: middle;
    color: #545047;
  }
  .price-details-container_content .pricing-table-column.selected {
    background-color: #fbdfdf;
  }
  #show-page #pricing-summary {
    box-shadow: none;
  }
  .bookings-page_table .ant-col-sm-12:nth-child(2n) .bookings-page_table-grid-cell {
    border-left: 1px solid #ececec;
    padding-left: 16px;
  }
  .bookings-page_table .bookings-page_table-grid-cell {
    align-items: flex-start;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1024px) {
  #search-bar #search-bar-widget {
    padding: 15px;
    border-radius: 100px;
  }
  #search-bar #search-bar-widget .ant-form {
    display: inline-flex;
  }
  #search-bar #search-bar-widget .ant-form .ant-row {
    border: 1px solid #d9d9d9;
    border-radius: 50px;
  }
  #search-bar #search-bar-widget .ant-picker,
  #search-bar #search-bar-widget .ant-select-selector {
    border: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  #search-bar #search-bar-widget .ant-picker .ant-picker-suffix {
    font-size: 22px;
  }
  #search-bar #search-bar-widget .ant-select-outlined:focus-within,
  #search-bar #search-bar-widget .ant-select-outlined:focus-visible,
  #search-bar #search-bar-widget .ant-picker-outlined:focus-within,
  #search-bar #search-bar-widget .ant-picker-outlined:focus-visible,
  #search-bar #search-bar-widget .ant-select-outlined:focus,
  #search-bar #search-bar-widget .ant-picker-outlined:focus {
    box-shadow: none;
    outline: none;
  }
  #search-bar #search-bar-widget .ant-form-item .ant-form-item-label label,
  #search-bar #search-bar-widget .ant-picker .ant-picker-input > input,
  #search-bar #search-bar-widget .ant-select-selection-item,
  #search-bar #search-bar-widget .ant-select-selection-placeholder {
    font-size: 14px;
  }
  #search-bar #search-bar-widget .ant-form-item .ant-form-item-control-input {
    padding: 0 12px;
    height: 32px;
  }
  #search-bar #search-bar-widget .ant-form-item .ant-form-item-label label {
    font-weight: 600;
    padding: 10px 20px 0;
    height: auto;
  }
  #search-bar #search-bar-widget .ant-flex:has(.search-button) {
    align-items: center;
  }
  #search-bar #search-bar-widget .search-button {
    height: 100%;
    border-radius: 50px;
    width: 65px;
  }
  #search-bar #search-bar-widget .search-button span {
    display: none;
  }
  #search-bar #search-bar-widget .search-button .ant-btn-icon {
    display: flex;
  }
  #listing-page #tours .tour {
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1490196078);
    border-radius: 20px;
    overflow: hidden !important;
  }
  .b2c2b-section .payment-gateway_channels {
    grid-template-columns: repeat(3, 1fr);
  }
  .b2c2b-section .payment-terms {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bookings-page {
    width: 80%;
  }
  .bookings-page_notes .ant-select {
    width: 500px;
  }
  .contact-agents_body .find-agents_form .ant-form > .ant-row {
    align-items: center;
  }
  .contact-agents_body .find-agents_form .find-button {
    height: 60px;
    border-radius: 50px;
  }
  .v2 #show-page {
    --side-padding: 8%;
    padding-bottom: 0;
    /* Breadcrumb on gray background */
  }
  .v2 #show-page .headline {
    padding-top: 0;
    background-color: #ebebeb;
  }
  .v2 #show-page .headline_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    height: auto;
    margin-top: 0;
    border-radius: 0;
    background-color: #ebebeb;
    padding: 20px var(--side-padding);
    top: unset;
  }
  .v2 #show-page .headline_header .headline_title_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .v2 #show-page .headline_header .headline_title_row #show-page_header {
    flex: 7;
    min-width: 0;
  }
  .v2 #show-page .headline_header .headline_title_row .tour_details {
    flex: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .v2 #show-page .headline_header .headline_title_row .tour_details_info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .v2 #show-page .headline_header .headline_title_row .tour_details span {
    font-size: 12px;
    color: #000000;
    text-align: right;
  }
  .v2 #show-page .headline_header .headline_title_row .tour_details_category {
    color: #dc1a22 !important;
  }
  .v2 #show-page .headline_header .headline_title_row .tour_details_code {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-end;
  }
  .v2 #show-page .headline_header .headline_title_row .tour_details_breadcrumb {
    margin-top: 2px;
  }
  .v2 #show-page .headline_banner {
    display: none;
  }
  .v2 #show-page_header {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }
  .v2 #show-page_header h1 {
    font-size: 26px;
    color: #000000;
  }
  .v2 #show-page .headline .ant-breadcrumb {
    flex-shrink: 0;
    align-self: flex-start;
    padding: 4px 0 0;
  }
  .v2 #show-page .headline .ant-breadcrumb a,
  .v2 #show-page .headline .ant-breadcrumb .ant-breadcrumb-separator,
  .v2 #show-page .headline .ant-breadcrumb .ant-breadcrumb-link {
    color: rgba(0, 0, 0, 0.45);
  }
  .v2 #show-page .itinerary-images .slick-slide {
    padding-inline: 5px;
  }
  .v2 #show-page .itinerary-images .slick-slide > div {
    aspect-ratio: 3/2;
  }
  .v2 #show-page .itinerary-images .show-all-photos-button {
    right: 20px;
    bottom: 72px;
  }
  .v2 #show-page .itinerary-images .show-all-photos-button-label-mobile {
    display: none;
  }
  .v2 #show-page .itinerary-images .show-all-photos-button-label-desktop {
    display: block;
  }
  .v2 #show-page #itinerary-details {
    padding-block: 20px;
    align-items: stretch;
  }
  .v2 #show-page #itinerary-details .itinerary-images {
    display: flex;
    flex-direction: column;
    width: 50%;
    flex-shrink: 0;
    align-self: stretch;
  }
  .v2 #show-page #itinerary-details .itinerary-images .slick-slider {
    flex: 1;
    min-height: 0;
  }
  .v2 #show-page #itinerary-details .itinerary-images .slick-list,
  .v2 #show-page #itinerary-details .itinerary-images .slick-track {
    height: 500px;
  }
  .v2 #show-page #itinerary-details .itinerary-images .slick-slide > div {
    height: 100%;
    aspect-ratio: unset;
  }
  .v2 #show-page #itinerary-details .itinerary-images .slick-slide .ant-image,
  .v2 #show-page #itinerary-details .itinerary-images .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .v2 #show-page #itinerary-details #tour-inclusives {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
  }
  .v2 #show-page #itinerary-details #tour-inclusives .item {
    padding: 6px 0;
  }
  .v2 #show-page #itinerary-details .details-container {
    border-radius: 0;
  }
  .v2 #show-page #itinerary-details .details-container {
    border-radius: 0;
  }
  .v2 #show-page .headline_header {
    border-radius: 0;
    margin-top: 0;
  }
  .v2 #show-page .toggle-side-widget,
  .v2 #show-page .collapse-travelers {
    display: none;
  }
  .v2 #show-page .side-widget-sider {
    position: relative;
    top: unset;
    z-index: auto;
  }
  .v2 #show-page .travelers-animating.side-widget-sider {
    z-index: 101;
  }
  .v2 #show-page .contact-agent {
    z-index: auto;
  }
  .v2 #show-page .travelers {
    display: block;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1490196078);
    margin-top: 15px;
    z-index: auto;
  }
  .v2 #show-page .pricing-summary-footer {
    position: static;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--side-padding);
  }
  .v2 #show-page .pricing-summary-footer_departure-date {
    flex-shrink: 0;
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .v2 #show-page .pricing-summary-footer_price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: right;
  }
  .v2 #show-page .pricing-summary-footer_details_total {
    color: #000000;
  }
  .v2 #show-page .pricing-summary-footer_details_label {
    display: block;
  }
  .v2 #show-page .pricing-summary-footer .booking-form-checkout-button {
    width: 200px;
  }
  .v2 .b2c2b fieldset, .v2 .b2c2b-section {
    padding-inline: 15px;
  }
  .v2 .mobile-price-drawer-toggle {
    display: none;
  }
  .v2 .price-drawer-toggle {
    display: block;
  }
  .v2 #tour-details-tabs {
    scroll-margin-top: 0;
  }
  .v2 #tour-details-tabs.ant-tabs > .ant-tabs-nav {
    top: 0;
  }
  .v2 #tour-details-tabs .ant-tabs-extra-content {
    display: none;
  }
  .ant-popover .ant-popover-content:has(.pricing-summary-popover) {
    width: unset;
  }
  .ant-popover .pricing-summary-popover {
    width: 300px;
  }
}
@media only screen and (min-width: 1441px) {
  :root {
    --side-padding: 10%;
  }
  #search-bar #search-bar-widget .search-button {
    width: 205px;
  }
  #search-bar #search-bar-widget .search-button span {
    display: flex;
    font-size: 16px;
  }
  #search-bar #search-bar-widget .search-button .ant-btn-icon {
    display: none;
  }
  .bookings-page_table-grid-cell .label {
    width: 200px;
  }
  .v2 #show-page .itinerary-images .slick-slide > div {
    aspect-ratio: 3/2;
  }
}
.inclusion-drawer-title {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  gap: 8px;
}
.inclusion-drawer-title__icon {
  display: flex;
  align-items: center;
}
.inclusion-drawer-title__label {
  font-weight: 600;
  font-size: 16px;
}

.inclusion-drawer-close {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0;
}

@media only screen and (max-width: 1023px) {
  body.chat-menu-open #show-page_body .contact-agent-sider,
  body.chat-menu-open #show-page_body .side-widget-backdrop {
    display: none;
  }
}
@keyframes v3-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.15;
  }
}
.v3 {
  font-family: Poppins, san-serif;
}
.v3 #show-page {
  padding-bottom: 80px;
}
.v3 .tour-date-selector.v3 .legends-v2 {
  display: none;
}
.v3 .legends-v2 {
  padding-inline: 0;
  margin-bottom: 6px;
}
.v3 .legends-v2 .legend.guaranteed {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #52c41a;
  color: #fff;
  padding: 4px 10px 4px 6px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.v3 .legends-v2 .legend.guaranteed svg {
  color: #fff !important;
}
.v3 _header .legends-v2 {
  margin-bottom: 0;
}
.v3 .tour-date-selector.v3 .wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 8px 0;
  margin-right: calc(-1 * var(--side-padding, 16px));
  padding-right: var(--side-padding, 16px);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.v3 .tour-date-selector.v3 .wrapper::-webkit-scrollbar {
  display: none;
}
.v3 .tour-date-selector.v3 .wrapper.is-loading {
  opacity: 0.4;
  pointer-events: none;
  animation: v3-pulse 1.2s ease-in-out infinite;
}
.v3 .tour-date-selector.v3 .tour-date-box-wrapper {
  flex: 0 0 40%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}
.v3 .tour-date-selector.v3 .tour-date-box_gd-badge {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 4px 6px 12px 6px;
  background: linear-gradient(95.21deg, #a6ffd5 1.1%, #d2ffea 74.2%, #d2ffea 99.7%);
  border: 2px solid #89ffc7;
  color: #065f46 !important;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  border-radius: 8px 8px 4px 4px;
}
.v3 .tour-date-selector.v3 .tour-date-box {
  width: 100%;
  box-sizing: border-box;
  aspect-ratio: 126/99;
  border-radius: 8px;
  padding: 15px;
  border: 2px solid #d4d9dd;
  text-align: center;
  position: relative;
  background: #fff;
  top: -10px;
}
.v3 .tour-date-selector.v3 .tour-date-box > .ant-flex > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v3 .tour-date-selector.v3 .tour-date-box .guaranteed-indicator-icon {
  display: none !important;
}
.v3 .tour-date-selector.v3 .tour-date-box .tour-date-box_date span {
  display: block !important;
  font-size: 11px;
  opacity: 0.8;
}
.v3 .tour-date-selector.v3 .tour-date-box .tour-date-box_date b {
  display: block !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 2px;
}
.v3 .tour-date-selector.v3 .tour-date-box .tour-date-box_price {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
}
.v3 .tour-date-selector.v3 .tour-date-box .tour-indicator small {
  color: black;
  padding: 2px 10px;
  border-radius: 13px;
  font-size: 12px;
  background: white;
}
.v3 .tour-date-selector.v3 .tour-date-box_promo-tag {
  position: absolute;
  bottom: -2.5%;
  left: 0;
  right: 0;
  line-height: 0;
}
.v3 .tour-date-selector.v3 .tour-date-box_promo-tag svg {
  display: block;
  width: 70%;
}
.v3 .tour-date-selector.v3 .tour-date-box_promo-tag .tour-date-box_promo-label {
  position: absolute;
  left: -15%;
  right: 0;
  bottom: -15%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  pointer-events: none;
}
.v3 .tour-date-selector.v3 .tour-date-box.selected {
  background-color: #fff5f3 !important;
  border: 2px solid #dc1a22 !important;
  color: #dc1a22 !important;
}
.v3 .tour-date-selector.v3 .tour-date-box.selected.guaranteed, .v3 .tour-date-selector.v3 .tour-date-box.selected.almost-guaranteed {
  background-color: #fff5f3 !important;
}
.v3 .tour-date-selector.v3 .tour-date-box.selected span {
  opacity: 1 !important;
  color: #dc1a22 !important;
}
.v3 .tour-date-selector.v3 .tour-date-box.selected .tour-date-box_date b {
  color: #dc1a22;
}
.v3 .tour-date-selector.v3 .tour-date-box.selected .tour-date-box_price {
  color: #dc1a22 !important;
}
.v3 .tour-date-selector.v3 .tour-date-box:not(.selected) {
  background-color: #fff;
  border-color: #e8e8e8 !important;
}
.v3 .tour-date-selector.v3 .tour-date-box:not(.selected) span,
.v3 .tour-date-selector.v3 .tour-date-box:not(.selected) b {
  color: #131f32 !important;
}
.v3 .tour-date-selector.v3 .tour-date-box:not(.selected) .tour-date-box_price {
  color: #555 !important;
}
.v3 .ant-drawer-header-title {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
.v3 .ant-drawer-close {
  margin: 0;
  padding: 0;
}
.v3 .floating-chat-button {
  bottom: 90px;
}
.v3 .section-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: auto;
  scrollbar-width: none;
}
.v3 .section-nav.sticky.fixed {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.v3 .section-nav_tab {
  flex: 1;
  min-width: max-content;
  padding: 12px 16px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
}
.v3 .section-nav_tab.active {
  border-bottom-color: #dc1a22;
  color: #dc1a22;
  font-weight: 500;
}
.v3 .hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.v3 .hero .itinerary-images {
  position: relative;
}
.v3 .hero .itinerary-images .slick-slider,
.v3 .hero .itinerary-images .slick-list,
.v3 .hero .itinerary-images .slick-track,
.v3 .hero .itinerary-images .slick-slide,
.v3 .hero .itinerary-images .slick-slide > div {
  height: 260px;
}
.v3 .hero .itinerary-images .ant-image,
.v3 .hero .itinerary-images .ant-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.v3 .hero .itinerary-images .slick-dots {
  bottom: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-inline: 50px;
}
.v3 .hero .itinerary-images .slick-dots li {
  flex: 1;
  height: 5px;
  margin: 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  overflow: hidden;
}
.v3 .hero .itinerary-images .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.v3 .hero .itinerary-images .slick-dots li button:before {
  display: none;
}
.v3 .hero .itinerary-images .slick-dots li::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.v3 .hero .itinerary-images .slick-dots li.slick-active::after {
  transform: scaleX(1);
}
.v3 .hero .itinerary-images .slick-dots li.slick-active {
  background: rgba(255, 255, 255, 0.8);
}
.v3 .hero .itinerary-images .show-all-photos-button {
  position: absolute;
  bottom: 30px;
  right: 12px;
  z-index: 10;
  height: 30px;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18) !important;
  border-radius: 6px !important;
  padding: 0 10px !important;
}
.v3 .hero .itinerary-images .show-all-photos-button-label-desktop {
  display: none;
}
.v3 .hero .itinerary-images .show-all-photos-button svg {
  color: #dc1a22;
}
.v3 .hero .share-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(4px);
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
  z-index: 10;
  padding: 15px;
}
.v3 .tour-header {
  padding: 14px var(--side-padding, 16px) 14px;
}
.v3 .tour-header .tour-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.v3 .tour-header .category-badge {
  font-size: 11px;
  font-weight: 600;
  color: #dc1a22;
  padding: 0;
  border: none;
  background: none;
}
.v3 .tour-header .new-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90.97deg, #ffe4e4 0.43%, #ffecd6 100.49%) !important;
  border: 1px solid #ffe2e1 !important;
  color: #dc1a22 !important;
  border-radius: 38px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 2px 8px !important;
  margin-bottom: 8px;
  line-height: normal;
}
.v3 .tour-header .tour-code {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #ebebeb;
  padding: 4px 10px;
  border-radius: 6px;
}
.v3 .tour-header .tour-title {
  font-size: 16px;
  font-weight: 600;
  color: #131f32;
  line-height: 1.4;
  margin: 0 0 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: break-word;
}
.v3 .tour-header .tour-title.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.v3 .tour-header .read-more-btn {
  padding: 0;
  height: auto;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #dc1a22 !important;
  text-decoration: underline !important;
}
.v3 .tour-header .read-more-btn:hover {
  text-decoration: underline !important;
  opacity: 0.8;
}
.v3 .inclusions-card {
  position: relative;
  margin: 0 var(--side-padding, 16px);
  border-radius: 8px;
  background: #fffaf7;
  overflow: hidden;
  padding: 14px 16px 16px;
}
.v3 .inclusions-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(91.17deg, #ffeaeb 1%, #ffeacc 97.42%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.v3 .inclusions-card_label {
  font-size: 14px;
  font-weight: 600;
  display: block;
}
.v3 .inclusions-card_deco {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 120px;
  height: auto;
  pointer-events: none;
}
.v3 .inclusions-card_glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 176, 0.55) 0%, rgba(255, 250, 240, 0) 70%);
  filter: blur(18px);
  pointer-events: none;
}
.v3 .inclusions-card_header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.v3 .inclusions-card_list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v3 .inclusions-card_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.v3 .inclusions-card_item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #dc1a22;
  margin-top: 1px;
}
.v3 .inclusions-card_item-icon svg {
  width: 24px !important;
  height: 24px !important;
}
.v3 .inclusions-card_item-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.v3 .inclusions-card_item-label {
  font-size: 14px;
  font-weight: 500;
  color: #131f32;
  line-height: 1.35;
}
.v3 .inclusions-card_item-sub {
  font-size: 12px;
  color: #777;
  line-height: 1.3;
}
.v3 .highlight-section_label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #102c4f;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.v3 .highlight-card {
  position: relative;
  border-radius: 16px;
  background: linear-gradient(100.62deg, #f4fbff 0.84%, #f7f8ff 102.33%);
  border: 1px solid #a9dfff;
  overflow: hidden;
  padding: 16px;
  min-height: 148px;
}
.v3 .highlight-card_icon {
  position: absolute;
  bottom: 15px;
  right: 10px;
  width: 62px;
  height: 62px;
  opacity: 0.78;
  pointer-events: none;
}
.v3 .highlight-card_title {
  position: relative;
  display: inline-block;
}
.v3 .highlight-card_wave {
  position: absolute;
  bottom: 0;
  left: -6px;
  width: 80px;
  height: 8px;
  pointer-events: none;
}
.v3 .highlight-card_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.v3 .highlight-card_view-all {
  padding: 0 !important;
  height: auto !important;
  font-size: 14px !important;
  font-weight: 500;
  color: #dc1a22 !important;
  line-height: 1 !important;
}
.v3 .highlight-body {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #212b3a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v3 .highlight-body p {
  margin-bottom: 4px;
}
.v3 .highlight-body ul,
.v3 .highlight-body ol {
  padding-left: 16px;
  margin-bottom: 4px;
}
.v3 .highlight-wavy-svg {
  position: absolute;
  bottom: 0;
  top: 5px;
  pointer-events: none;
}
.v3 .page-section {
  padding: 16px var(--side-padding, 16px);
  border-bottom: 0px solid #f0f0f0;
}
.v3 .page-section_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.v3 .section-label {
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.v3 .section-sublabel {
  font-size: 14px;
  font-weight: 600;
  color: #131f32;
}
.v3 .bn-group_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.v3 .bn-group_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.v3 .bn-group_name {
  font-size: 14px;
  font-weight: 500;
  color: #131f32;
}
.v3 .view-all-btn,
.v3 .read-more-btn {
  color: #dc1a22;
  font-size: 14px;
  padding: 0;
  height: auto;
}
.v3 .view-all-btn .mdi-icon,
.v3 .read-more-btn .mdi-icon {
  vertical-align: middle;
}
.v3 .promo-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  margin-top: 10px;
  padding: 10px 12px;
  background: linear-gradient(91.17deg, #ffeaeb 1%, #ffeacc 97.42%);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  border: 1px solid rgba(245, 124, 0, 0.15);
  box-sizing: border-box;
}
.v3 .promo-banner_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  flex-shrink: 0;
}
.v3 .promo-banner span {
  flex: 1;
  line-height: 1.4;
}
.v3 .promo-banner strong {
  color: #dc1a22;
}
.v3 .itinerary-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding: 14px 10px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(245, 124, 0, 0.15);
  background: linear-gradient(91.17deg, #ffeaeb 1%, #ffeacc 97.42%);
  overflow: hidden;
  cursor: pointer;
  outline: none;
  user-select: none;
}
.v3 .itinerary-card--disabled {
  opacity: 0.55;
  pointer-events: none;
}
.v3 .itinerary-card_deco {
  position: absolute;
  right: 100px;
  bottom: 0px;
  width: 185px;
  height: auto;
  pointer-events: none;
}
.v3 .itinerary-card_mini-deco {
  position: absolute;
  right: 0px;
  bottom: -15px;
  width: 185px;
  height: auto;
  pointer-events: none;
}
.v3 .itinerary-card_left {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.v3 .itinerary-card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  flex-shrink: 0;
}
.v3 .itinerary-card_right-icon {
  z-index: 1;
}
.v3 .itinerary-card_label {
  font-size: 14px;
  font-weight: 500;
  color: #131f32;
}
.v3 .itinerary-card > .mdi-icon {
  position: relative;
  z-index: 1;
}
.v3 .bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transform: translateZ(0);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px var(--side-padding, 16px);
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}
.v3 .bottom-bar_info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  min-width: 0;
}
.v3 .bottom-bar_info--placeholder {
  color: #aaa;
  font-size: 14px;
}
.v3 .bottom-bar_date {
  font-size: 12px;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3 .bottom-bar_price {
  font-size: 17px;
  font-weight: 700;
  color: #dc1a22;
}
.v3 .bottom-bar_note {
  font-size: 10px;
  color: #888;
}
.v3 .bottom-bar_btn {
  flex-shrink: 0;
  min-width: 90px;
  border-radius: 8px;
}

.inclusions-drawer .ant-drawer-header {
  background: #fffaf7;
  border-bottom: none;
  padding: 16px 20px;
}
.inclusions-drawer .ant-drawer-header-title {
  flex-direction: row-reverse;
}
.inclusions-drawer .ant-drawer-close {
  color: #131f32;
  margin-inline-end: 0;
}
.inclusions-drawer .ant-drawer-title .section-label {
  font-size: 20px;
  font-weight: 600;
  color: #131f32;
  margin-bottom: 0;
}
.inclusions-drawer .ant-drawer-body {
  background: #fffaf7;
  padding: 0;
  overflow-y: auto;
}

.inclusions-drawer_body {
  position: relative;
  padding: 10px 20px 20px;
  overflow: hidden;
}

.inclusions-drawer_deco {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 200px;
  height: auto;
  opacity: 1;
  pointer-events: none;
}

.price-summary-sheet-root {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.price-summary-sheet_backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: priceSummaryFade 0.2s ease;
}

.price-summary-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  padding: 20px 20px calc(28px + env(safe-area-inset-bottom, 0px));
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  animation: priceSummarySlideUp 0.25s ease;
}
.price-summary-sheet_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.price-summary-sheet_header .section-label {
  font-size: 20px;
  font-weight: 600;
  color: #131f32;
  margin: 0;
}
.price-summary-sheet_close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  color: #131f32;
  cursor: pointer;
}

@keyframes priceSummaryFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes priceSummarySlideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.price-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.price-summary_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-summary_label {
  font-size: 14px;
  font-weight: 500;
  color: #484954;
  opacity: 0.8;
}
.price-summary_value {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: right;
  opacity: 0.8;
}
.price-summary_divider {
  height: 1px;
  background: #e5e5e5;
}
.price-summary_row--total .price-summary_label,
.price-summary_row--total .price-summary_value {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  opacity: 0.8;
  letter-spacing: 0.55px;
}

.inclusion-row {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  padding-bottom: 10px;
}
.inclusion-row--clickable {
  cursor: pointer;
}
.inclusion-row_icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #dc1a22;
}
.inclusion-row_text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 0px;
}
.inclusion-row_label {
  font-size: 14px;
  font-weight: 700;
  color: #131f32;
  line-height: 1.3;
}
.inclusion-row_content {
  font-size: 13px;
  color: #5a6170;
  line-height: 1.45;
}

.highlight-drawer .ant-drawer-header {
  background: linear-gradient(92.03deg, #f4fbff 0.84%, #f7f8ff 102.33%);
  border-bottom: none;
  padding: 16px 20px;
}
.highlight-drawer .ant-drawer-header-title {
  flex-direction: row-reverse;
}
.highlight-drawer .ant-drawer-header-title .ant-drawer-title .section-label {
  font-size: 20px;
  font-weight: 600;
  color: #131f32;
  margin-bottom: 0;
}
.highlight-drawer .ant-drawer-close {
  color: #131f32;
  margin-inline-end: 0;
}
.highlight-drawer .ant-drawer-body {
  background: linear-gradient(92.03deg, #f4fbff 0.84%, #f7f8ff 102.33%);
  padding: 0;
  overflow-y: auto;
}
.highlight-drawer_body {
  padding: 0px 20px 32px;
  font-size: 16px;
  color: #212b3a;
  line-height: 1.6;
}
.highlight-drawer_body p {
  margin-bottom: 8px;
}
.highlight-drawer_body ul,
.highlight-drawer_body ol {
  padding-left: 18px;
  margin-bottom: 8px;
}
.highlight-drawer_icon {
  position: absolute;
  bottom: 15px;
  right: -20px;
  width: 129px;
  height: 129px;
  aspect-ratio: 1/1;
  pointer-events: none;
  border-radius: 3.11325rem;
  opacity: 0.77;
}

.itinerary-card-group {
  display: flex;
  gap: 8px;
}
.itinerary-card-group > .itinerary-card {
  flex: 1;
  min-width: 0;
}

.nested-drawer .ant-drawer-content-wrapper {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.nested-drawer .ant-drawer-header {
  background: #fffaf7;
  border-bottom: none;
  padding: 16px 20px;
}
.nested-drawer .ant-drawer-header-title {
  flex-direction: row-reverse;
}
.nested-drawer .ant-drawer-close {
  color: #131f32;
  margin-inline-end: 0;
}
.nested-drawer .ant-drawer-title .section-label {
  font-size: 20px;
  font-weight: 600;
  color: #131f32;
  margin-bottom: 0;
}
.nested-drawer .ant-drawer-body {
  background: #fffaf7;
  padding: 0;
  overflow-y: auto;
}
.nested-drawer .nested-drawer_body {
  position: relative;
  padding: 10px 20px 20px;
  overflow: hidden;
  font-size: 14px;
}

.insurance-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.insurance-zone {
  font-size: 13px;
  color: #666;
}

.insurance-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.insurance-btn {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid #dc1a22 !important;
  color: #dc1a22 !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 500;
  height: 28px !important;
  padding: 0 10px !important;
  background: transparent !important;
}
.insurance-btn .mdi-icon {
  vertical-align: middle;
}

.price-details-drawer .ant-drawer-content-wrapper {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.price-details-drawer .ant-drawer-header {
  background: #fff;
  border-bottom: none;
  padding: 16px 20px;
}
.price-details-drawer .ant-drawer-header-title {
  flex-direction: row-reverse;
}
.price-details-drawer .ant-drawer-close {
  color: #131f32;
  margin-inline-end: 0;
}
.price-details-drawer .ant-drawer-title .section-label {
  font-size: 20px;
  font-weight: 600;
  color: #131f32;
  margin-bottom: 0;
}
.price-details-drawer .ant-drawer-body {
  background: #fff;
  padding: 0;
  overflow-y: auto;
}

.price-details-table {
  display: flex;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.price-details-table_categories {
  flex-shrink: 0;
  width: 106px;
  background: #fff;
}
.price-details-table_cat-header {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  height: 55px;
  background: #f5f5f5;
  border-bottom: 1px solid #d5d5dc;
}
.price-details-table_cat-header span {
  font-size: 12px;
  font-weight: 600;
  color: #5d5f5f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.price-details-table_cat-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 12px;
  min-height: 80px;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
}
.price-details-table_cat-name {
  font-size: 14px;
  font-weight: 600;
  color: #1b1b1b;
  line-height: 20px;
}
.price-details-table_scroll {
  flex: 1;
  overflow-x: auto;
  display: flex;
  -webkit-overflow-scrolling: touch;
}
.price-details-table_tier {
  flex-shrink: 0;
  min-width: 140px;
}
.price-details-table_tier--promo .price-details-table_price-row {
  background: rgba(174, 0, 17, 0.05);
}
.price-details-table_tier-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 16px;
  gap: 4px;
  min-height: 55px;
  background: #f5f5f5;
  border-bottom: 1px solid #d5d5dc;
  border-left: 1px solid rgba(224, 224, 224, 0.5);
}
.price-details-table_tier-header--promo {
  background: #dc1a22;
}
.price-details-table_tier-header--promo .price-details-table_tier-name {
  color: #fff;
}
.price-details-table_tier-header--promo .price-details-table_tier-badge {
  background: #fbf2f3;
  color: #dc1a22;
}
.price-details-table_tier-name {
  font-size: 12px;
  font-weight: 600;
  color: #5d5f5f;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 16px;
  white-space: nowrap;
}
.price-details-table_tier-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  padding: 2px 6px;
  background: #4d4d4d;
  color: #fff;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 13.5px;
  letter-spacing: 0.02em;
}
.price-details-table_price-row {
  display: flex;
  align-items: center;
  padding: 0 16px;
  min-height: 80px;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
  border-left: 1px solid rgba(224, 224, 224, 0.5);
}
.price-details-table_price {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 32px;
  white-space: nowrap;
}
.price-details-table_price--promo {
  color: #ae0011;
}

.v3-price-chart {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  scrollbar-width: none;
}
.v3-price-chart::-webkit-scrollbar {
  display: none;
}
.v3-price-chart_table {
  display: flex;
  min-width: max-content;
}
.v3-price-chart_col {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.v3-price-chart_col--category {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 110px;
  background: #fff;
  border-right: 1px solid #e0e0e0;
}
.v3-price-chart_col--promo {
  background: rgba(174, 0, 17, 0.05);
}
.v3-price-chart_col--normal {
  background: #fff;
}
.v3-price-chart_header {
  height: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 8px 12px;
  border-bottom: 1px solid #d5d5dc;
  background: #f5f5f5;
}
.v3-price-chart_header--category {
  font-size: 11px;
  font-weight: 700;
  color: #5d5f5f;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.v3-price-chart_header--tier {
  min-width: 130px;
  padding: 8px 16px;
}
.v3-price-chart_header--promo {
  background: #dc1a22;
}
.v3-price-chart_header--promo .v3-price-chart_tier-label {
  color: #fff;
}
.v3-price-chart_tier-label {
  font-size: 11px;
  font-weight: 700;
  color: #5d5f5f;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.v3-price-chart_badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 7px;
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 700;
  width: fit-content;
  background: #fbf2f3;
  color: #dc1a22;
  letter-spacing: 0.3px;
}
.v3-price-chart_cell {
  height: 80px;
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid rgba(224, 224, 224, 0.5);
  font-size: 14px;
  font-weight: 600;
  color: #1b1b1b;
}
.v3-price-chart_col--promo .v3-price-chart_cell, .v3-price-chart_col--normal .v3-price-chart_cell {
  padding: 0 16px;
}
.v3-price-chart_col--promo .v3-price-chart_cell {
  color: #ae0011;
}
.v3-price-chart_cell--category {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}
.v3-price-chart_cat-main {
  font-size: 14px;
  font-weight: 600;
  color: #1b1b1b;
  line-height: 20px;
}
.v3-price-chart_cat-sub {
  font-size: 10px;
  font-weight: 400;
  color: #1b1b1b;
  line-height: 1.3;
}
.v3-price-chart--single .v3-price-chart_table {
  width: 100%;
  min-width: 0;
}
.v3-price-chart--single .v3-price-chart_col:not(.v3-price-chart_col--category) {
  flex: 1;
}
.v3-price-chart--single .v3-price-chart_header--tier {
  min-width: 0;
}

.v3.booking-form {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #f7f7fa;
  min-height: 100%;
}
.v3.booking-form.booking-form--step3 {
  background-color: #fff;
}
.v3.booking-form.booking-form--step3 .booking-form_header {
  background: #fff;
}
.v3.booking-form .booking-form_header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  position: sticky;
  top: 0;
  background: #f7f7fa;
  z-index: 100;
  flex-shrink: 0;
}
.v3.booking-form .booking-form_back-btn {
  color: #333;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background-color: transparent;
}
.v3.booking-form .booking-form_progress {
  display: flex;
  flex: 1;
  gap: 10px;
  padding: 0px 30px 0px 15px;
}
.v3.booking-form .progress-segment {
  flex: 1;
  height: 6px;
  border-radius: 5px;
  background-color: #e0e0e0;
  transition: background-color 0.3s ease;
}
.v3.booking-form .progress-segment.active {
  background-color: #dc1a22;
}
.v3.booking-form .booking-form_content {
  padding: 0px 20px 20px;
  flex: 1;
}
.v3.booking-form .booking-form_title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}
.v3.booking-form .booking-form_next-wrap {
  position: sticky;
  bottom: 0;
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #f0f0f0;
  z-index: 200;
}
.v3.booking-form .booking-form_next-wrap .booking-form_next-btn {
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  height: 50px;
}
.v3.booking-form .booking-form_bottom-bar {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  z-index: 200;
}
.v3.booking-form .booking-form_summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.v3.booking-form .booking-form_summary-date {
  font-size: 12px;
  color: #555;
}
.v3.booking-form .booking-form_submit-btn {
  flex-shrink: 0;
  min-width: 130px;
  border-radius: 10px;
  height: 44px;
  font-weight: 600;
}
.v3 .flights {
  position: relative;
  margin: 14px -20px 0;
  padding: 14px 20px 14px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(180deg, #ffe8e8 0%, #fff8f8 100%);
}
.v3 .flights::after {
  content: "";
  position: absolute;
  top: -9px;
  left: var(--arrow-left, 65px);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #ffe8e8;
}
.v3 .flights_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.v3 .flights_scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  margin: 4px -20px 0;
  padding: 4px 20px 12px;
  scroll-padding-left: 20px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.v3 .flights_scroll::-webkit-scrollbar {
  display: none;
}
.v3 .flights_scroll > .flight-card {
  flex: 0 0 84%;
  scroll-snap-align: start;
}
.v3 .gd-inline {
  display: flex;
  align-items: center;
  gap: 6px;
}
.v3 .gd-inline_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(19, 182, 1, 0.12);
  flex-shrink: 0;
}
.v3 .gd-inline_text {
  font-size: 13px;
  font-weight: 600;
  color: #0d6b0d;
}
.v3 .flight-card {
  position: relative;
  border-radius: 10px;
  background: #fff;
  overflow: visible;
  border: 1px solid rgba(101, 201, 237, 0.35);
}
.v3 .flight-card_inner {
  padding: 12px 14px;
}
.v3 .flight-card_airline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.v3 .flight-card_airline img {
  height: 28px;
  max-width: 90px;
  object-fit: contain;
}
.v3 .flight-card_no {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  margin-left: auto;
}
.v3 .flight-card_separator {
  position: relative;
  border: none;
  border-top: 1.5px dashed #e0e0e0;
  margin: 10px 0;
}
.v3 .flight-card_notch {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff1f1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.v3 .flight-card_notch--left {
  left: -23px;
}
.v3 .flight-card_notch--right {
  right: -23px;
}
.v3 .flight-card_route {
  display: flex;
  align-items: flex-start;
}
.v3 .flight-card_point {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.v3 .flight-card_point--right {
  text-align: right;
}
.v3 .flight-card_time {
  font-size: 16px;
  font-weight: 700;
  color: #545047;
  letter-spacing: 0.8px;
}
.v3 .flight-card_city {
  font-size: 14px;
  color: #dc1a22;
  font-weight: 400;
  line-height: 1.3;
  min-height: 36.4px;
}
.v3 .flight-card_date {
  font-size: 14px;
  color: #545047;
}
.v3 .flight-card_divider {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.v3 .v3-checkout-disabled-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin: 0 16px 12px;
  background: #fff8e1;
  border: 1px solid #ffc107;
  border-radius: 10px;
  font-size: 13px;
  color: #7a5800;
  line-height: 1.5;
}
.v3 .v3-checkout-disabled-banner svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.v3 .policy-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid #90caf9;
  border-radius: 16px;
  background: #f3f8ff;
  margin-bottom: 20px;
}
.v3 .policy-notice_icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.v3 .policy-notice_text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.v3 .policy-notice_title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.v3 .policy-notice_body {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.v3 .pax-list {
  display: flex;
  flex-direction: column;
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  background: #fff;
}
.v3 .pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}
.v3 .pax-row:first-child {
  padding-top: 0;
}
.v3 .pax-row:last-child {
  border-bottom: none;
}
.v3 .pax-row_info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.v3 .pax-row_label {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.55px;
}
.v3 .pax-row_age {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.55px;
  color: #888;
}
.v3 .pax-row_controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v3 .pax-btn {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.v3 .pax-btn--minus {
  background: #e8e8e8 !important;
  border: none !important;
  color: #555 !important;
}
.v3 .pax-btn--plus {
  background: #dc1a22 !important;
  border: none !important;
  color: #fff !important;
}
.v3 .pax-count {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  min-width: 16px;
  text-align: center;
}
.v3 .validation-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: #fff3f3;
  border: 1px solid #ffcdd2;
  border-radius: 16px;
  font-size: 13px;
  color: #c62828;
  line-height: 1.5;
}
.v3 .validation-error svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.v3 .passengers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.v3 .passengers_title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 4px;
}
@keyframes passenger-card-pulse {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}
.v3 .passenger-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v3 .passenger-card--highlight {
  border-color: #dc1a22 !important;
  animation: passenger-card-pulse 0.4s ease;
}
.v3 .passenger-card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3 .passenger-card_name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.55px;
  color: #dc1a22;
}
.v3 .passenger-card_edit {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #f3f3f3;
}
.v3 .passenger-card_edit .mdi-icon {
  vertical-align: middle;
}
.v3 .passenger-card_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.v3 .passenger-card_field {
  color: #555;
}
.v3 .passenger-card_value {
  font-weight: 500;
  color: #1a1a1a;
}
.v3 .passenger-card_value.placeholder {
  color: #dc1a22;
}
.v3 .passenger-card_divider {
  height: 1px;
  background: #e8e8e8;
  width: 100%;
}
.v3 .passenger-card_infants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.v3 .passenger-card_infant-tag {
  display: inline-flex;
  align-items: center;
  background: #ffeaeb;
  color: #dc1a22;
  font-size: 12px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  padding: 0 8px;
  height: 33px;
  white-space: nowrap;
  cursor: pointer;
}
.v3 .passenger-drawer .ant-drawer-body {
  padding-top: 0 !important;
  padding: 16px;
  overflow-y: auto;
  background-color: #f7f7fa;
}
.v3 .passenger-drawer .ant-drawer-header {
  padding: 24px 16px 8px 16px !important;
  background-color: #f7f7fa;
  border: 0;
}
.v3 .passenger-drawer .ant-drawer-footer {
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
}
.v3 .passenger-drawer_divider {
  height: 1px;
  background: #e8e8e8;
  width: 100%;
  margin: 12px 0;
  border: none;
}
.v3 .passenger-drawer_subtitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}
.v3 .passenger-drawer_req {
  color: #dc1a22;
  margin: 0 1px;
}
.v3 .passenger-drawer_banner {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #7b3f00;
  border-radius: 16px;
  border: 1px solid #ffc386;
  background: linear-gradient(91deg, #ffecd2 1.09%, #ffddce 107.33%);
}
.v3 .passenger-drawer_banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 40%;
  background: #fff;
}
.v3 .passenger-drawer_done-btn {
  border-radius: 10px;
}
.v3 .drawer-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v3 .drawer-section-header_num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fbdfdf;
  color: #dc1a22;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
}
.v3 .drawer-section-header_title {
  font-size: 16px;
  font-weight: 400;
  color: #131f32;
}
.v3 .drawer-section-header--plain {
  padding: 0;
  margin-bottom: 10px;
}
.v3 .required-info-section {
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 16px;
}
.v3 .enhance-section {
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 16px;
}
.v3 .drawer-collapse {
  border: none !important;
  background: transparent !important;
  margin-bottom: 0;
}
.v3 .drawer-collapse > .ant-collapse-item {
  border: none !important;
}
.v3 .drawer-collapse > .ant-collapse-item > .ant-collapse-header {
  background: transparent !important;
  padding: 0 !important;
}
.v3 .drawer-collapse > .ant-collapse-item > .ant-collapse-content {
  border: none !important;
  background: transparent !important;
}
.v3 .drawer-collapse > .ant-collapse-item > .ant-collapse-content .ant-collapse-content-box {
  padding: 0 !important;
  margin-top: 20px;
}
.v3 .faster-checkin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2e7d32;
  padding: 3px 9px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  border-radius: 100px;
  border: 1px solid #a0e0c9;
  background: var(--Icon-Success-Inverse, #ecfff8);
}
.v3 .faster-checkin-badge_icon {
  font-size: 14px;
  line-height: 0;
}
.v3 .infant-drawer .ant-drawer-header {
  padding: 24px 16px 8px 16px !important;
  border: 0;
}
.v3 .infant-drawer .ant-drawer-body {
  padding-top: 0 !important;
  padding: 16px;
}
.v3 .infant-drawer .ant-drawer-footer .ant-btn-primary {
  border-radius: 10px;
}
.v3 .passenger-drawer .ant-form-item-label:has(.nationality-label) > label {
  width: 100%;
}
.v3 .nationality-label-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.v3 .nationality-label {
  flex: 1;
}
.v3 .visa-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(220, 26, 34, 0.18);
  border: none;
  border-radius: 12px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  color: #dc1a22;
  cursor: pointer;
}
.v3 .visa-info-drawer .ant-drawer-content {
  border-radius: 16px 16px 0 0;
}
.v3 .visa-info-drawer_body {
  padding: 4px 0 8px;
}
.v3 .visa-info-drawer_body p {
  font-size: 14px;
  color: #5a6170;
  line-height: 1.6;
  margin-bottom: 12px;
}
.v3 .visa-info-drawer_body p:last-child {
  margin-bottom: 0;
}
.v3 .same-as-pax1-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.v3 .same-as-pax1-row .ant-switch {
  flex-shrink: 0;
}
.v3 .same-as-pax1-row_label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.88);
}
.v3 .infant-section {
  border-radius: 16px;
  border: 1px solid #eaeaea;
  background: #fff;
  margin-bottom: 0;
  padding: 16px;
}
.v3 .infant-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}
.v3 .infant-card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3 .infant-card_name {
  font-size: 14px;
  font-weight: 500;
  color: #dc1a22;
}
.v3 .infant-card_edit {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  background-color: #f3f3f3;
}
.v3 .infant-card_row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 13px;
  gap: 8px;
}
.v3 .infant-card_field {
  color: #888;
}
.v3 .infant-card_value {
  font-weight: 500;
  color: #1a1a1a;
  text-align: right;
}
.v3 .add-infant-btn.ant-btn {
  border: 1.5px solid #0088ef !important;
  color: #0088ef !important;
  border-radius: 8px !important;
  height: 48px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-top: 4px;
  background: rgba(2, 136, 239, 0.0588235294) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}
.v3 .add-infant-btn.ant-btn .ant-btn-icon {
  display: flex;
  align-items: center;
  line-height: 0;
}
.v3 .agent-search {
  margin-bottom: 14px;
}
.v3 .agent-search .agent-search_input {
  border-radius: 40px;
  border: 1px solid #e1e1e1;
  background: #fff;
}
.v3 .state-chips-wrapper {
  position: relative;
  max-height: 41px;
  overflow: hidden;
  margin-bottom: 4px;
}
.v3 .state-chips-wrapper--expanded {
  max-height: none;
  overflow: visible;
}
.v3 .state-chips-wrapper--expanded .state-chips-wrapper_fade {
  display: none;
}
.v3 .state-chips-wrapper--expanded .state-chips-wrapper_toggle {
  top: 4px;
  transform: none;
  background: none;
}
.v3 .state-chips-wrapper_fade {
  position: absolute;
  right: 28px;
  top: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff 60%);
  pointer-events: none;
}
.v3 .state-chips-wrapper_toggle {
  position: absolute;
  right: 0;
  top: 4px;
  background: #fff;
  border: none;
  padding: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.v3 .state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-right: 32px;
}
.v3 .state-chip {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 14px;
  height: 33px;
  border-radius: 44px;
  border: none;
  background: #fef2f2;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #dc1a22;
  cursor: pointer;
  white-space: nowrap;
}
.v3 .state-chip--active {
  background: #dc1a22;
  color: #fff;
}
.v3 .agent-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #f0f0f0;
  margin-top: 14px;
  padding-top: 14px;
}
.v3 .agent-list_empty {
  text-align: center;
  padding: 40px 0;
  color: #aaa;
  font-size: 14px;
}
.v3 .agent-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.v3 .agent-card--selected {
  border-color: #dc1a22;
  background: #fff5f5;
}
.v3 .agent-card_logo {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #e8eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3 .agent-card_logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v3 .agent-card_logo-placeholder {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: #37474f;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3 .agent-card_details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.v3 .agent-card_name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3 .agent-card_address {
  font-size: 12px;
  color: #666;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v3 .agent-card_info-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}
.v3 .sticky-agent-wrapper {
  margin-bottom: 16px;
}
.v3 .sticky-agent-wrapper .agent-card--locked {
  cursor: default;
  border-radius: 12px 12px 0 0;
  border-bottom-color: transparent;
}
.v3 .sticky-agent-banner {
  background: #eff5f9;
  border: 1px solid #dbebf6;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 10px 12px 12px;
}
.v3 .sticky-agent-banner_text {
  font-size: 13px;
  color: #484954;
  line-height: 1.5;
  margin: 0 0 4px;
}
.v3 .sticky-agent-banner_change-link {
  background: none;
  border: none;
  color: #dc1a22;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.v3 .referral-agent-wrapper {
  margin-bottom: 16px;
}
.v3 .referral-agent-wrapper .agent-card--locked {
  cursor: default;
  border-radius: 12px 12px 0 0;
  border-bottom-color: transparent;
}
.v3 .referral-agent-banner {
  background: #eff5f9;
  border: 1px solid #dbebf6;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 10px 12px 12px;
}
.v3 .referral-agent-banner_text {
  font-size: 13px;
  color: #484954;
  line-height: 1.5;
  margin: 0 0 4px;
}
.v3 .referral-agent-banner_change-link {
  background: none;
  border: none;
  color: #dc1a22;
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.v3 .radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.v3 .radio--selected {
  border-color: #dc1a22;
}
.v3 .radio--check {
  background: #dc1a22;
  border-color: #dc1a22;
}
.v3 .radio_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dc1a22;
}
.v3 .summary-card {
  margin: 0 0px 16px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
.v3 .summary-card_tour-wrap {
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
}
.v3 .summary-card_tour {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.v3 .summary-card_tour.expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.v3 .summary-card_readmore {
  margin-top: 6px;
  padding: 0;
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 500;
  color: #dc1a22;
  text-decoration: underline;
  cursor: pointer;
}
.v3 .summary-card_readmore:hover {
  opacity: 0.8;
}
.v3 .summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  cursor: pointer;
}
.v3 .summary-row_left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.v3 .summary-row_text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.v3 .summary-row_label {
  font-size: 14px;
  color: #999;
  letter-spacing: 0.55px;
  font-weight: 400;
}
.v3 .summary-row_value {
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 0.55px;
  text-overflow: ellipsis;
}
.v3 .summary-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0 16px;
}
.v3 .einvoice-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.v3 .einvoice-card_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3 .einvoice-card_title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.0393em;
  color: #000;
}
.v3 .einvoice-card_edit-btn {
  background: #f3f3f3;
  border: none;
  border-radius: 8px;
  height: 32px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
}
.v3 .einvoice-card_subtitle {
  font-size: 14px;
  color: #545047;
  margin: 0;
}
.v3 .einvoice-card_preview {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: #545047;
}
.v3 .form-section {
  margin: 0 0px 20px;
}
.v3 .form-section_title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.v3 .terms-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.18s;
}
.v3 .terms-card--selected {
  border-color: #dc1a22;
  background: rgba(220, 26, 34, 0.03);
}
.v3 .terms-card_body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.v3 .terms-card_name {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
}
.v3 .terms-card_desc {
  font-size: 14px;
  font-weight: 400;
  color: #777;
}
.v3 .terms-card_notice {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  border-radius: 8px;
  border: 1px solid rgba(19, 156, 183, 0.1);
  background: #ebf7ff;
  padding: 6px 8px;
  margin-top: 2px;
}
.v3 .terms-card_notice strong {
  color: #1a1a1a;
}
.v3 .terms-card_amount {
  font-size: 16px;
  font-weight: 600;
  color: #dc1a22;
  margin-top: 4px;
}
.v3 .payment-channels {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  overflow: hidden;
}
.v3 .channel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.v3 .channel-row:last-child {
  border-bottom: none;
}
.v3 .channel-row--selected {
  background: rgba(220, 26, 34, 0.04);
}
.v3 .channel-logo {
  width: 40px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.v3 .channel-label {
  flex: 1;
  font-size: 14px;
  color: #1a1a1a;
  font-weight: 500;
}
.v3 .bank-select {
  margin-top: 12px;
}
.v3 .bank-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  margin-top: 12px;
}
.v3 .bank-select-trigger_placeholder {
  font-size: 14px;
  color: #aaa;
}
.v3 .bank-select-trigger_value {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}
.v3 .agreement.form-section {
  padding-bottom: 8px;
}
.v3 .agreement .consent-card {
  background: #fff;
  border: 1px solid rgba(225, 29, 72, 0.1);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.v3 .agreement .consent-card .ant-form-item {
  margin-bottom: 0;
}
.v3 .agreement .consent-card .ant-checkbox-wrapper {
  align-items: center;
  font-size: 14px;
  color: #334155;
  line-height: 1.625;
  gap: 12px;
}
.v3 .agreement .consent-card .ant-checkbox {
  flex-shrink: 0;
}
.v3 .agreement .consent-card .ant-checkbox .ant-checkbox-inner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border-color: #ccc;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.v3 .agreement .consent-card .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #dc1a22;
  border-color: #dc1a22;
  border-radius: 50%;
}
.v3 .agreement .consent-card .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner::after {
  border-color: #fff;
  width: 5px;
  height: 9px;
  top: 46%;
  left: 28%;
}
.v3 .agreement_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #444;
  line-height: 1.5;
}
.v3 .agreement_item .ant-checkbox-wrapper {
  flex-shrink: 0;
  padding-top: 2px;
}
.v3 .agreement_item a {
  color: #dc1a22;
  text-decoration: underline;
}
.v3 .bottom-price {
  font-size: 16px;
  font-weight: 700;
  color: #dc1a22;
  line-height: 1.2;
}
.v3 .bottom-price--clickable {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  width: fit-content;
}
.v3 .bottom-price--clickable svg {
  margin-right: -4px;
}
.v3 .bottom-note {
  font-size: 10px;
  color: #999;
}
.v3 .save-btn {
  margin-top: 8px;
  border-radius: 8px !important;
  height: 48px !important;
  font-weight: 600 !important;
}
.v3 .payment-processing-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3 .payment-processing-overlay_card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  min-width: 220px;
}
.v3 .payment-processing-overlay_text {
  font-size: 15px;
  font-weight: 700;
  color: #131f32;
}
.v3 .payment-processing-overlay_sub {
  font-size: 12px;
  color: #999;
}

.v3-payment-success {
  min-height: 100vh;
  background: #f8f8f9;
  display: flex;
  flex-direction: column;
}
.v3-payment-success_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 24px;
  gap: 8px;
}
.v3-payment-success_title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.0077em;
}
.v3-payment-success_amount {
  font-size: 24px;
  font-weight: 600;
  color: #131f32;
  line-height: 1.6em;
}
.v3-payment-success_date {
  font-size: 14px;
  font-weight: 500;
  color: #484954;
  opacity: 0.8;
}
.v3-payment-success_subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #484954;
  opacity: 0.8;
  text-align: center;
  line-height: 1.55;
  margin-top: 4px;
}
.v3-payment-success_body {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v3-payment-success_balance-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ff8d30;
  border-radius: 12px;
  background: #fff0e3;
  padding: 16px 16px 16px 16px;
}
.v3-payment-success_balance-card--paid {
  border-color: #2f80ed;
  background: #eaf2fe;
}
.v3-payment-success_balance-card--paid .v3-payment-success_balance-label {
  color: #2a4a7a;
}
.v3-payment-success_balance-card--paid .v3-payment-success_balance-amount {
  color: #2f80ed;
}
.v3-payment-success_balance-card--paid .v3-payment-success_balance-due {
  color: #2a4a7a;
}
.v3-payment-success_balance-card--paid .v3-payment-success_balance-watermark {
  filter: hue-rotate(180deg) saturate(0.9);
}
.v3-payment-success_balance-label {
  font-size: 12px;
  font-weight: 500;
  color: #5a403f;
  letter-spacing: 0.012em;
  line-height: 20px;
  margin-bottom: 2px;
}
.v3-payment-success_balance-amount {
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #dc1a22;
  line-height: 30px;
  margin-bottom: 8px;
}
.v3-payment-success_balance-due {
  font-size: 12px;
  color: #5a403f;
  letter-spacing: 0.012em;
  line-height: 20px;
}
.v3-payment-success_balance-due strong {
  font-size: 14px;
  font-weight: 700;
  color: #1b1c1c;
  letter-spacing: 0.01em;
  line-height: 20px;
}
.v3-payment-success_balance-watermark {
  position: absolute;
  bottom: -8px;
  right: -8px;
  opacity: 0.35;
  pointer-events: none;
}
.v3-payment-success_details-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  overflow: visible;
}
.v3-payment-success_tour-name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.4;
}
.v3-payment-success_ticket-notch {
  display: flex;
  align-items: center;
  margin: 4px -16px 4px;
}
.v3-payment-success_ticket-notch-circle {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f8f8f9;
  border: 1px solid #d9d9d9;
}
.v3-payment-success_ticket-notch-line {
  flex: 1;
  border-top: 1px dashed #d9d9d9;
}
.v3-payment-success_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: none;
  font-size: 14px;
}
.v3-payment-success_row-label {
  color: #484954;
  opacity: 0.8;
  font-weight: 500;
}
.v3-payment-success_row-value {
  color: #000;
  font-weight: 500;
  text-align: right;
  max-width: 60%;
  opacity: 0.8;
}
.v3-payment-success_country-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  background: #ffeaeb;
  color: #dc1a22;
  font-size: 14px;
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.039em;
  opacity: 0.8;
}
.v3-payment-success_breakdown-header {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin: 12px 0 4px;
}
.v3-payment-success_breakdown-label {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  opacity: 0.8;
  margin-bottom: 8px;
  letter-spacing: 0.039em;
}
.v3-payment-success_breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #484954;
  opacity: 0.8;
  padding: 4px 0;
}
.v3-payment-success_grand-total {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  opacity: 0.8;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid #f0f0f0;
  letter-spacing: 0.0344em;
}
.v3-payment-success_deposit {
  color: #0c9060;
  opacity: 0.8;
}
.v3-payment-success_remaining {
  color: #dd741d;
  opacity: 0.8;
}
.v3-payment-success_footer {
  padding: 16px;
  background: #fff;
  border-top: 1px solid #e9e9e9;
}
.v3-payment-success_footer--row {
  display: flex;
  gap: 8px;
}

.v3.ant-modal-root .change-agent-modal .ant-modal-content,
.ant-modal-root .v3 .change-agent-modal .ant-modal-content {
  border-radius: 16px;
  padding: 24px;
}
.v3.ant-modal-root .change-agent-modal .change-agent-modal_title,
.ant-modal-root .v3 .change-agent-modal .change-agent-modal_title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0 0 8px;
}
.v3.ant-modal-root .change-agent-modal .change-agent-modal_body,
.ant-modal-root .v3 .change-agent-modal .change-agent-modal_body {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.5;
  margin: 0 0 24px;
}
.v3.ant-modal-root .change-agent-modal .change-agent-modal_confirm,
.ant-modal-root .v3 .change-agent-modal .change-agent-modal_confirm {
  display: block;
  width: 100%;
  height: 40px;
  background: #dc1a22;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 8px;
}
.v3.ant-modal-root .change-agent-modal .change-agent-modal_cancel,
.ant-modal-root .v3 .change-agent-modal .change-agent-modal_cancel {
  display: block;
  width: 100%;
  height: 40px;
  background: transparent;
  color: #dc1a22;
  border: 1px solid #dc1a22;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.agent-info-drawer .ant-drawer-content-wrapper {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.agent-info-drawer .ant-drawer-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
}

.agent-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 8px;
}
.agent-info_identity {
  display: flex;
  align-items: center;
  gap: 16px;
}
.agent-info_logo-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agent-info_logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.agent-info_logo-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f4f6;
}
.agent-info_name {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.3;
}
.agent-info_address-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.agent-info_address-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.agent-info_meta-label {
  font-size: 12px;
  font-weight: 500;
  color: #747581;
  line-height: 1;
}
.agent-info_address {
  font-size: 14px;
  color: black;
  line-height: 1.4;
  letter-spacing: 0.014px;
}
.agent-info_location-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.agent-info_card {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.agent-info_card-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1;
}
.agent-info_contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.agent-info_contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.agent-info_contact-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.agent-info_contact-label {
  font-size: 12px;
  font-weight: 500;
  color: #747581;
  line-height: 1;
}
.agent-info_contact-value {
  font-size: 14px;
  color: black;
  line-height: 1.4;
  letter-spacing: 0.014px;
}
.agent-info_icon-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.agent-info_icon-btn--whatsapp {
  background: #25d366;
}
.agent-info_icon-btn--phone {
  background: #fff;
  border: 1px solid #e8e8e8;
}
.agent-info_icon-btn--email {
  background: #fff;
  border: 1px solid #e8e8e8;
}

.address-drawer .ant-drawer-content-wrapper {
  overflow: hidden;
}
.address-drawer .ant-drawer-header {
  background: #fffaf7;
  border: 0;
  padding: 20px 20px 8px;
}
.address-drawer .ant-drawer-body {
  padding-top: 0 !important;
  padding: 16px 20px;
  background: #fffaf7;
}
.address-drawer .ant-drawer-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
}
.address-drawer .ant-drawer-footer {
  border-top: none;
  padding: 16px;
}
.address-drawer .address-drawer_done-btn {
  background: #dc1a22;
  border-color: #dc1a22;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.address-drawer .address-drawer_subtitle {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
}
.address-drawer .address-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bank-select-drawer .ant-drawer-content-wrapper {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.bank-select-drawer .ant-drawer-title {
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
}
.bank-select-drawer .ant-drawer-footer {
  border-top: none;
  padding: 16px;
}
.bank-select-drawer .bank-select-drawer_done-btn {
  background: #dc1a22;
  border-color: #dc1a22;
  height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.bank-select-drawer .bank-list {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.bank-select-drawer .bank-row {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 12px 0;
}
.bank-select-drawer .bank-row--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.bank-select-drawer .bank-row_name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: #111827;
}
.bank-select-drawer .bank-row_divider {
  height: 1px;
  background: #d5d5dc;
}
