/* BUTTONS */
/* BASE STYLES */
.btn {
  width: fit-content;
  text-transform: uppercase;
  padding: calc(var(--padding-sm) * 3) calc(var(--padding-md) * 3);
  border-radius: 100px;
  background-color: var(--primary);
  color: var(--ui-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  justify-content: center;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn:hover {
  background-color: var(--secondary);
  color: var(--ui-white);
}
.btn:focus {
  box-shadow: none; /* BOOTSTRAP OVERRIDER */
}

/* PRIMARY VARIANT */
.btn--primary {
  background-color: var(--secondary);
  color: var(--ui-white);
}
.btn--primary:hover {
  background-color: var(--primary);
  color: var(--ui-white);
}

/* SECONDARY VARIANT */
.btn--secondary {
  background-color: var(--ui-white);
  border: 3px solid var(--secondary);
  padding: calc(var(--padding-sm) * 3 - 3px) calc(var(--padding-md) * 3);
  color: var(--secondary);
}
.btn--secondary:hover {
  background-color: var(--secondary);
  color: var(--ui-white);
}

/* TERTIARY VARIANT */
.btn--tertiary {
  background-color: var(--ui-white);
  color: var(--primary);
}
.btn--tertiary:hover {
  background-color: var(--primary);
  color: var(--ui-white);
}

/* LG BUTTON */
.btn--lg {
  padding: calc(var(--padding-sm) * 4) calc(var(--padding-md) * 4);
  font-size: 1.5rem;
}

/* MD BUTTON */
.btn--md {
  padding: calc(var(--padding-sm) * 2) calc(var(--padding-md) * 2);
  font-size: 1.1rem;
}

/* DELETE */
.btn--lg-primary {
  background-color: var(--secondary);
}
.btn--lg-primary:hover {
  background-color: var(--primary);
}
/* DELETE */

/* HAS ICON */
.btn--has-icon {
  min-width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--gutter-sm);
}

.btn--has-icon svg {
  width: auto;
  height: 1.2rem;
  max-height: 18px;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn--lg.btn--has-icon {
  gap: var(--gutter-md);
}

/* HAS ICON - HIERARCHY COLORS */
.btn svg {
  fill: var(--ui-white);
}

.btn--primary svg {
  fill: var(--ui-white);
}

.btn--secondary svg {
  fill: var(--secondary);
}

.btn--secondary:hover svg {
  fill: var(--ui-white);
}

.btn--tertiary svg {
  fill: var(--primary);
}

.btn--tertiary:hover svg {
  fill: var(--ui-white);
}

.btn--lg svg {
  height: 1.5rem;
  max-height: initial;
}

/* TAB BUTTON */
.btn--tab {
  background-color: transparent;
  text-transform: none;
  color: var(--primary);
  border: 2px solid transparent;
  border-radius: 6px;
  padding: var(--padding-md);
}

.btn--tab :is(svg, img) {
  display: none;
}

.btn--tab:hover {
  color: var(--primary);
  background-color: var(--btn-tab-hover);
}

.btn--tab:active,
.tab-active {
  border-color: var(--primary);
}

/* INPUT */
.btn--input {
  border: 3px solid var(--primary);
  padding: calc(var(--padding-sm) * 3 - 3px) calc(var(--padding-md) * 3);
}

.btn--input svg {
  fill: var(--ui-white);
}

.btn--input:hover {
  background-color: var(--ui-white);
  color: var(--primary);
}

.btn--input:hover svg {
  fill: var(--primary);
}

/* ICON VARIANT (TBF) */
.btn--icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--padding-xs);
}

.btn--icon svg {
  height: 20px;
  width: 20px;
}

.btn--icon-lg svg {
  height: 40px;
  width: 40px;
}

/* SEARCH WIDGET COMPONENT*/
/* BASE STYLES */
.search-widget {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
  padding: var(--padding-lg);
  background-color: var(--primary-light-transparency);
  border-radius: 10px;
  backdrop-filter: blur(2px);
}

.search-widget__tabs {
  display: flex;
  justify-content: space-evenly;
}

.search-widget__tabs-content-item {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  transform: scale(0.97);
  -webkit-transition: max-height 0s, opacity 0.3s, transform 0.3s linear;
  -moz-transition: max-height 0s, opacity 0.3s, transform 0.3s linear;
  -o-transition: max-height 0s, opacity 0.3s, transform 0.3s linear;
  transition: max-height 0s, opacity 0.3s, transform 0.3s linear;
}

.tab-is-open {
  opacity: 1;
  max-height: 100rem;
  visibility: visible;
  transform: scale(1);
}

.tab-is-closed {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  transform: scale(0.97);
  -webkit-transition: max-height 0s, opacity 0s, transform 0.3s linear;
  -moz-transition: max-height 0s, opacity 0s, transform 0.3s linear;
  -o-transition: max-height 0s, opacity 0s, transform 0.3s linear;
  transition: max-height 0s, opacity 0s, transform 0.3s linear;
}

/* SLIDESHOW */
.slideshow {
  position: relative;
}

.slideshow-indicators {
  position: absolute;
  display: flex;
  gap: calc(var(--gutter-xs) * 3);
  left: 50%;
  bottom: -28px;
  transform: translateX(-50%);
}

.slideshow-indicators li {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  border: 2px solid var(--primary-medium);
  background-color: var(--primary-light);
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.slideshow-indicators li:hover,
.slideshow-indicators li.active,
.slideshow-indicators li:focus {
  background-color: var(--primary-medium);
}

.slideshow-play-btn {
  position: absolute;
  right: var(--gutter-md);
  bottom: var(--gutter-md);
  fill: var(--ui-white);
  z-index: 2;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.slideshow-play-btn:hover {
  fill: var(--secondary);
  filter: drop-shadow(0 0 4px rgba(33, 37, 41, 0.1));
}

.slideshow-list {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.slideshow-list__item {
  height: 100%;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  overflow-clip-margin: unset;
}

/* INPUT BUTTON COMPONENT*/
.input-button {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
  align-items: center;
}

.input-button__legend {
  font-size: var(--heading-lg);
  font-weight: 700;
  color: var(--ui-white);
}

.input-button__fieldset {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  zoom: 0.8;
}

.input-button__input {
  flex: 1;
  background-color: var(--ui-white);
  border-top-left-radius: var(--input-border-radius);
  padding-left: var(--padding-lg);
  padding-right: var(--padding-xxl);
  border-bottom-left-radius: var(--input-border-radius);
  font-size: var(--body-txt-regular);
  font-weight: 500;
  color: var(--primary);
  text-overflow: ellipsis;
}

.input-button__btn {
  margin-left: -44px;
}

.input-button__feedback {
  position: absolute;
  top: calc(100% + var(--gutter-xs));
  left: 0;
  display: flex;
  gap: var(--gutter-sm);
  align-items: center;
  /* opacity: 0; */
  /* transform: translateX(12px); */
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.input-button__feedback-icon {
  height: 14px;
  width: auto;
  fill: var(--ui-white);
}
.input-button__feedback-text {
  font-size: var(--body-txt-md);
  font-weight: 600;
  color: var(--ui-white);
}

/* SHOW FEEDBACK */
/* .signup-success {
  opacity: 1;
  transform: translateX(0);
} */

/* TRAVEL ADVISOR TAB */
.travel-advisor-tab {
  min-height: 208px;
}

.travel-advisor-tab__label {
  font-size: var(--heading-lg);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.travel-advisor-tab__paragraph {
  margin-top: var(--gutter-md);
}

.travel-advisor-tab__button {
  display: flex;
  margin: var(--gutter-lg) auto 0 auto;
}

/* INPUT SEARCH */
.input-search {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
}

.input-search__label {
  font-size: var(--heading-lg);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.input-search__group {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-sm);
  justify-items: flex-end;
}

.input-search__input-container {
  position: relative;
  display: flex;
  justify-content: center;
  justify-self: stretch;
  min-height: 44px;
}

.input-search__input {
  flex: 1;
  background-color: var(--ui-white);
  border-radius: var(--input-border-radius);
  padding-left: var(--padding-lg);
  padding-right: var(--padding-xxl);
  font-size: var(--body-txt-regular);
  font-weight: 500;
  color: var(--primary);
  text-overflow: ellipsis;
}

.input-search__search-icon {
  position: absolute;
  height: 24px;
  width: auto;
  top: 50%;
  right: var(--gutter-md);
  transform: translateY(-50%);
  fill: var(--secondary);
  fill: var(--ui-gray-medium);
}

.input-search__filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter-md);
}

.input-search__result-counter {
  margin-top: auto;
  font-weight: 600;
  text-align: center;
}

/* ACCORDION COMPONENT */
/* BASE STYLES */
.accordion {
  display: flex;
  flex-direction: column;
}

.accordion__item {
  padding: var(--padding-lg) 0;
  border-top: 1px solid var(--secondary);
  cursor: default;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.accordion__item:last-of-type {
  border-bottom: 1px solid var(--secondary);
}

.accordion__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.accordion__item-title {
  flex-wrap: wrap;
  max-width: calc(100% - 64px);
}

.accordion__item-content {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  transition: 0.4s ease;
}

.accordion__item-trigger-close {
  display: none;
}

/* EXPANDABLE ANIMATION */
.is-open .accordion__item-content {
  opacity: 1;
  max-height: 80vh;
  margin-top: var(--gutter-md);
}

.is-open .accordion__item-trigger-open {
  display: none;
}

.is-open .accordion__item-trigger-close {
  display: initial;
}

/* BANNER COMPONENT */
/* BASE STYLES */
.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--gutter-lg);
  background-color: var(--ui-white);
  border: 1px solid var(--primary-medium);
  border-radius: var(--banner-border-radius);
  padding: var(--padding-xl);
}

.banner__icon {
  height: 100px;
  margin: auto;
}

.banner__icon svg {
  height: 100%;
  width: auto;
}

.banner__image {
  height: 100px;
  margin: auto;
}

.banner__image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.banner__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
  text-align: center;
}

.banner__content-link {
  font-size: var(--body-txt-regular);
}

/* PRIMARY LIGHT BG */
.banner--primary-light {
  background-color: var(--primary-light);
}

/* SUBNAV COMPONENT */
.subnav {
  position: relative;
  display: flex;
  background-color: var(--primary);
}

.subnav--mobile .subnav__group-toggle {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  font-size: var(--heading-md);
  font-weight: 700;
  color: var(--ui-white);
  line-height: 1;
  padding: var(--padding-lg) var(--padding-xl);
}

.subnav__group-toggle::after {
  content: url("data:image/svg+xml; utf8, %3Csvg width='' height='' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='chevron-down-solid 1'%3E%3Cpath id='Vector' d='M7.29374 13.2063C7.68437 13.5969 8.31874 13.5969 8.70937 13.2063L14.7094 7.20625C15.1 6.81563 15.1 6.18125 14.7094 5.79063C14.3187 5.4 13.6844 5.4 13.2937 5.79063L7.99999 11.0844L2.70624 5.79375C2.31562 5.40313 1.68124 5.40313 1.29062 5.79375C0.899994 6.18438 0.899994 6.81875 1.29062 7.20938L7.29062 13.2094L7.29374 13.2063Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
  width: 16px;
  height: auto;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.subnav__list {
  position: absolute;
  width: 100%;
  left: 0px;
  top: 100%;
  background-color: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}

/* SUBNAV MOBILE LIST OPEN */
.subnav-sm-toggle ~ .subnav__list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subnav-sm-toggle::after {
  transform: rotate(-180deg);
}

.subnav--mobile .subnav__list-item:first-of-type {
  display: none;
}

.subnav__list-item-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--padding-lg) calc(var(--padding-xl) * 1.25);
  font-size: var(--body-txt-regular);
  font-weight: 600;
  color: var(--ui-white);
  text-transform: capitalize;
  line-height: 1;
  background-color: var(--secondary);
}

/* ADDING CHEVRON ICON TO ITEMS EXCEPT FIRST ONE */
.subnav__list-item:not(:first-of-type) .subnav__list-item-label::after {
  content: url("data:image/svg+xml; utf8, %3Csvg width='' height='' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='chevron-down-solid 1'%3E%3Cpath id='Vector' d='M7.29374 13.2063C7.68437 13.5969 8.31874 13.5969 8.70937 13.2063L14.7094 7.20625C15.1 6.81563 15.1 6.18125 14.7094 5.79063C14.3187 5.4 13.6844 5.4 13.2937 5.79063L7.99999 11.0844L2.70624 5.79375C2.31562 5.40313 1.68124 5.40313 1.29062 5.79375C0.899994 6.18438 0.899994 6.81875 1.29062 7.20938L7.29062 13.2094L7.29374 13.2063Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
  width: 16px;
  height: auto;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

/* NESTED CONTAINER */
.subnav__list-item-nested {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: max-height 0.5s, opacity 0.5s ease;
  -moz-transition: max-height 0.5s, opacity 0.5s ease;
  -o-transition: max-height 0.5s, opacity 0.5s ease;
  transition: max-height 0.5s, opacity 0.5s ease;
}

/* MOBILE NESTED CONTAINER OPEN */
.subnav-sm-open ~ .subnav__list-item-nested {
  opacity: 1;
  max-height: 240px;
  visibility: visible;
  padding: var(--padding-md) calc(var(--padding-xl) * 1.25);
}

.subnav-sm-open::after {
  transform: rotate(-180deg);
}

.subnav__list-item-nested-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-md);
  padding: var(--padding-md);
  max-height: 200px;
  overflow-y: auto;
}

.subnav__list-item-nested-menu {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-sm);
}

.subnav__list-item-nested-menu-label {
  font-weight: 600;
  color: var(--primary-light);
  font-size: var(--body-txt-regular);
  margin-bottom: var(--gutter-xs);
  padding-bottom: var(--padding-md);
  border-bottom: 1px solid var(--primary-light);
}

/* SUBNAV NESTED - SCROLLBAR COLOR CONTRAST*/
.subnav__list-item-nested::-webkit-scrollbar-thumb {
  background-color: var(--primary-medium);
}
.subnav__list-item-nested::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-light);
}

/* FAST FACTS COMPONENT */
.fast-facts {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
  background-color: var(--primary-light);
  border-radius: 10px;
  padding: calc(var(--padding-lg) * 1.5);
}

.fast-facts > ul,
.fast-facts__list {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-sm);
}

.fast-facts > ul > li > strong,
.fast-facts__list-item-label {
  padding-right: var(--gutter-xs);
}

/* WYSIWYG FALLBACK */
.fast-facts__list-item-label,
.fast-facts__list-item-txt {
  font-size: var(--body-txt-regular);
  line-height: var(--body-txt-line-height-regular);
  color: var(--ui-black);
}

/* DV VIDEO */
.dv-video {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.dv-video__iframe {
  width: 100%;
  height: 100%;
}

/* VIDEO GROUP COMPONENT */
.video-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gutter-md);
  background-color: var(--primary);
  padding: calc(var(--padding-lg) * 1.5) var(--padding-lg);
}

.video-group__label {
  color: var(--ui-white);
}

.video-group__list {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-md);
}

.video-group__list-item {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.video-group__list-item-iframe {
  width: 100%;
  height: 100%;
}

.video-group__more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gutter-md);
}

.video-group__more-text {
  color: var(--ui-white);
}

/* HIGHLIGHT LIST - ORDERED LIST, CAN USE DECIMAL, UPPER AND LOWER ALPHA */
/* BASE STYLES */
.highlight-list {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-lg);
  list-style: none;
  counter-reset: count;
}

.highlight-list__item {
  position: relative;
  padding-left: calc(var(--padding-lg) + 40px);
  counter-increment: count;
}

.highlight-list__item::before {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--secondary);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--body-txt-regular);
  color: var(--ui-white);
}

/* LIST STYLES VARIANTS - USE CLASS TO SWICHT IT */
.highlight-list--decimal .highlight-list__item::before {
  content: counter(count, decimal);
}

.highlight-list--upper-alpha .highlight-list__item::before {
  content: counter(count, upper-alpha);
}

.highlight-list--lower-alpha .highlight-list__item::before {
  content: counter(count, lower-alpha);
}

/* DREAM VACATION CAROUSEL COMPONENT - DRAGGABLE / NEXT / BACK */
/* BASE STYLES */
.dv-carousel {
  position: relative;
}

.dv-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--ui-white);
  box-shadow: var(--box-shdw);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 2;
}

/* ADDING SVG ICON TO SPAN */
.dv-carousel__btn::after {
  width: 10px;
  content: url("data:image/svg+xml,%3Csvg width='' height='' viewBox='0 0 13 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.20312 10.2031L10.2031 1.25C10.625 0.78125 11.3281 0.78125 11.7969 1.25C12.2188 1.67188 12.2188 2.375 11.7969 2.79688L3.54688 11L11.75 19.25C12.2188 19.6719 12.2188 20.375 11.75 20.7969C11.3281 21.2656 10.625 21.2656 10.2031 20.7969L1.20312 11.7969C0.734375 11.375 0.734375 10.6719 1.20312 10.2031Z' fill='%230b2e6a'/%3E%3C/svg%3E%0A");
  line-height: 0;
  margin: 0 var(--gutter-xs) 0 0;
}

.dv-carousel__btn-left {
  left: -8px;
}

.dv-carousel__btn-right {
  right: -8px;
}
.dv-carousel__btn-right::after {
  margin: 0 0 0 var(--gutter-xs);
  transform: rotate(-180deg);
}

.dv-carousel__btn:active {
  transform: translateY(-50%) scale(0.8);
}

.dv-carousel__list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--gutter-md)) / 1.2);
  gap: var(--gutter-md);
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scrollbar-width: none;
}
.dv-carousel__list::-webkit-scrollbar {
  display: none;
}

.dv-carousel__list-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ui-white);
  scroll-snap-align: start;
  cursor: grab;
}

.dv-carousel__list-card-content {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.dv-carousel__list-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-transition {
  scroll-behavior: auto;
}

.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.dragging .dv-carousel__list-card {
  cursor: grabbing;
  user-select: none;
}

/* QUICK BUTTONS COMPONENT */
.quick-buttons {
  min-width: 65%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
}

.quick-buttons > .btn {
  width: initial;
}

.quick-buttons > * {
  flex: 1;
}

/* PAGINATION COMPONENT */
.dv-pagination {
  display: flex;
}

.dv-pagination__pages {
  display: flex;
  gap: var(--gutter-xs);
  margin: 0 auto;
}

.dv-pagination__pages-item-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-light);
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: var(--body-txt-regular);
  font-weight: 500;
  color: var(--ui-black);
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.dv-pagination__pages-item-link svg {
  height: 16px;
}
.dv-pagination__pages-item-link:has(svg) {
  background-color: var(--ui-white);
}

.dv-pagination__pages-item-link:hover,
.pg-active {
  background-color: var(--ui-white);
  border: 2px solid var(--secondary);
}

.dv-pagination__pages-item-link:active {
  transform: scale(0.8);
}

/* OFFER CARD */
.offer-card-list {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-lg);
}
.offer-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-md);
  border: var(--dflt-border-solid);
  border-radius: var(--card-border-radius);
  box-shadow: var(--box-shdw);
  padding: calc(var(--padding-lg) * 1.5);
}
.offer-card__cover,
.offer-card__more-info-head-cover {
  aspect-ratio: 5/3;
  border-radius: 8px;
  overflow: hidden;
}
.offer-card__cover img,
.offer-card__more-info-head-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.offer-card__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-md);
}
.offer-card__place,
.offer-card__more-info-head-place {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-xs);
}

.offer-card__place-name > * {
  display: inline;
}
.offer-card__place-name > .btn--icon {
  line-height: 0;
  transform: translateY(-4px);
  margin-left: var(--gutter-sm);
}

.offer-card__place-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gutter-sm);
}
.offer-card__place-tags {
  margin-top: var(--gutter-sm);
}
.offer-card__rate {
  order: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gutter-sm);
  border: var(--dflt-border-solid);
  border-radius: var(--card-border-radius);
  padding: var(--padding-lg) var(--padding-xl);
  line-height: 1;
  color: var(--primary);
}
.offer-card__rate-line-md {
  font-size: var(--body-txt-md);
  font-weight: 600;
}
.offer-card__rate-line-lg {
  font-size: var(--heading-xl);
  font-weight: 700;
}
.offer-card__description {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-sm);
}

/* OFFER CARD MODAL CONTENT - MORE INFORMATION */
.offer-card__more-info {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
  max-height: 360px;
  overflow-y: auto;
}
.offer-card__more-info-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gutter-md);
}
.offer-card__more-info-head-cover {
  width: 100%;
}

/* DV LOCATION */
.dv-location {
  display: flex;
  align-items: baseline;
  gap: var(--gutter-xs);
  color: var(--ui-black);
  cursor: default;
}
.dv-location__icon {
  height: 16px;
  transform: translateY(-3px);
}
.dv-location__icon svg {
  height: 100%;
}
.dv-location__txt {
  font-size: var(--body-txt-regular);
  font-weight: 400;
  line-height: var(--body-txt-line-height-regular);
}

/* DV STARS GROUP - SIZES TBD */
.dv-star-group {
  display: flex;
  gap: calc(var(--gutter-xs) - 1px);
}
.dv-star {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  margin-top: -2px;
}
.dv-star--yellow::after {
  content: url("data:image/svg+xml,%3Csvg width='' height='' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.875 2.5625L12.9062 6.71875L17.375 7.375C17.75 7.4375 18.0625 7.6875 18.1875 8.0625C18.3125 8.40625 18.2188 8.8125 17.9375 9.0625L14.6875 12.2812L15.4688 16.8438C15.5312 17.2188 15.375 17.5938 15.0625 17.8125C14.75 18.0625 14.3438 18.0625 14 17.9062L10 15.75L5.96875 17.9062C5.65625 18.0625 5.25 18.0625 4.9375 17.8125C4.625 17.5938 4.46875 17.2188 4.53125 16.8438L5.28125 12.2812L2.03125 9.0625C1.78125 8.8125 1.6875 8.40625 1.78125 8.0625C1.90625 7.6875 2.21875 7.4375 2.59375 7.375L7.09375 6.71875L9.09375 2.5625C9.25 2.21875 9.59375 2 10 2C10.375 2 10.7188 2.21875 10.875 2.5625Z' fill='%23FEBD11'/%3E%3C/svg%3E%0A");
}
.dv-star--gray::after {
  content: url("data:image/svg+xml,%3Csvg width='' height='' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.875 2.5625L12.9062 6.71875L17.375 7.375C17.75 7.4375 18.0625 7.6875 18.1875 8.0625C18.3125 8.40625 18.2188 8.8125 17.9375 9.0625L14.6875 12.2812L15.4688 16.8438C15.5312 17.2188 15.375 17.5938 15.0625 17.8125C14.75 18.0625 14.3438 18.0625 14 17.9062L10 15.75L5.96875 17.9062C5.65625 18.0625 5.25 18.0625 4.9375 17.8125C4.625 17.5938 4.46875 17.2188 4.53125 16.8438L5.28125 12.2812L2.03125 9.0625C1.78125 8.8125 1.6875 8.40625 1.78125 8.0625C1.90625 7.6875 2.21875 7.4375 2.59375 7.375L7.09375 6.71875L9.09375 2.5625C9.25 2.21875 9.59375 2 10 2C10.375 2 10.7188 2.21875 10.875 2.5625Z' fill='%23DBE1EB'/%3E%3C/svg%3E%0A");
}
.dv-star--half::after {
  content: url("data:image/svg+xml,%3Csvg width='' height='' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.8814 2.55078L12.9126 6.70703L17.3814 7.36328C17.7564 7.42578 18.0689 7.67578 18.1939 8.05078C18.3189 8.39453 18.2251 8.80078 17.9439 9.05078L14.6939 12.2695L15.4751 16.832C15.5376 17.207 15.3814 17.582 15.0689 17.8008C14.7564 18.0508 14.3501 18.0508 14.0064 17.8945L10.0064 15.7383L5.97511 17.8945C5.66261 18.0508 5.25636 18.0508 4.94386 17.8008C4.63136 17.582 4.47511 17.207 4.53761 16.832L5.28761 12.2695L2.03761 9.05078C1.78761 8.80078 1.69386 8.39453 1.78761 8.05078C1.91261 7.67578 2.22511 7.42578 2.60011 7.36328L7.10011 6.70703L9.10011 2.55078C9.25636 2.20703 9.60011 1.98828 10.0064 1.98828C10.3814 1.98828 10.7251 2.20703 10.8814 2.55078Z' fill='%23DBE1EB'/%3E%3Cpath d='M10.0064 1.98828V15.7383L5.97511 17.8945C5.66261 18.0508 5.25636 18.0508 4.94386 17.8008C4.63136 17.582 4.47511 17.207 4.53761 16.832L5.28761 12.2695L2.03761 9.05078C1.78761 8.80078 1.69386 8.39453 1.78761 8.05078C1.91261 7.67578 2.22511 7.42578 2.60011 7.36328L7.10011 6.70703L9.10011 2.55078C9.25636 2.20703 9.60011 2.01953 10.0064 1.98828ZM14.4126 17.9883H14.5376C14.5064 18.0195 14.4751 18.0195 14.4126 17.9883Z' fill='%23FEBD11'/%3E%3C/svg%3E");
}

.dv-star--md::after {
  width: 22px;
}

/* TAGS */
.dv-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter-sm);
}
.dv-tag {
  border: 1px solid var(--primary-medium);
  border-radius: 50px;
  padding: var(--padding-md) var(--padding-lg);
  font-size: var(--body-txt-sm);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  cursor: default;
}

/* DV MODAL */
.dv-modal {
  background: var(--ui-black-transparency);
  background-color: var(--ui-black-transparency);
  backdrop-filter: blur(2px);
}
.dv-modal__modal-dialog {
  max-width: 94vw;
  margin: 0 auto;
}
.dv-modal__content {
  border: 0;
  border-radius: 10px;
  box-shadow: var(--box-shdw);
  max-height: 90vh;
  overflow: hidden;
}
.dv-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  padding: var(--padding-lg);
}
.dv-modal__header-title {
  color: var(--ui-white);
}
.dv-modal__header-close {
  fill: var(--ui-white);
}
.dv-modal__body {
  padding: var(--padding-lg);
}

/* DV POPOVER */
.dv-popover {
  border: 0;
  border-radius: 10px;
  box-shadow: var(--box-shdw);
  margin: auto;
}
.dv-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--primary);
  padding: var(--padding-lg);
}
.dv-popover__header-title {
  color: var(--ui-white);
}
.dv-popover__header-close {
  fill: var(--ui-white);
}
.dv-popover__body {
  padding: var(--padding-xl);
}

/* FORM ELEMENTS */
/* LABEL */
.dv-form-label {
  font-size: var(--body-txt-md);
  font-weight: 600;
  line-height: 1;
  color: var(--ui-black);
}

/* DV INPUT */
.dv-form-input {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gutter-xs);
}
.dv-form-input__input {
  flex: 1;
  font-size: var(--body-txt-regular);
  font-weight: 400;
  line-height: 1;
  color: var(--ui-gray-800);
  background-color: var(--ui-white);
  padding: calc(var(--padding-md) * 1.5);
  border: var(--form-input-border-solid);
  border-radius: var(--form-input-border-radius);
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

/* DV INPUT HAS INFO ICON */
.dv-form-input--info > .dv-form-input__input {
  padding-right: calc((var(--padding-md) * 3) + 16px);
}
.dv-form-input__input-trailing-icon {
  position: absolute;
  right: calc(var(--gutter-sm) * 1.5);
  bottom: var(--gutter-md);
  line-height: 0;
  width: 16px;
  height: 16px;
  color: var(--ui-gray);
}

/* DV INPUT HAS ICON */
.dv-form-input--has-icon > .dv-form-input__input {
  padding-right: calc((var(--padding-md) * 3) + 24px);
}
.dv-form-input--has-icon .dv-form-input__input-trailing-icon {
  position: absolute;
  right: calc(var(--gutter-sm) * 1.5);
  top: 50%;
  transform: translateY(-50%);
  line-height: 0;
  width: 24px;
  height: 24px;
  color: var(--ui-gray);
}

/* DV DROPDOWN */
.dv-form-dropdown {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-xs);
}
.dv-form-dropdown__select {
  position: relative;
  flex: 1;
  color: var(--ui-gray-800);
  background-color: var(--ui-white);
  padding: calc(var(--padding-md) * 1.5);
  border: var(--form-input-border-solid);
  border-radius: var(--form-input-border-radius);
}
.dv-form-dropdown__select > select {
  display: none;
}
.dv-form-dropdown__list {
  position: absolute;
  top: calc(100% + var(--gutter-xs));
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: var(--gutter-xs);
  padding: var(--padding-md) 0;
  border: var(--form-input-border-solid);
  border-radius: var(--form-input-border-radius);
  background-color: var(--ui-white);
  box-shadow: var(--box-shdw);
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.dv-form-dropdown__list div {
  color: var(--ui-black);
  padding: var(--padding-md) calc(var(--padding-md) * 1.5);
  cursor: pointer;
  user-select: none;
}
.dv-form-dropdown__list div:hover,
.dv-dropdown-is-selected {
  background-color: var(--primary-light);
}
.dv-form-dropdown__selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--ui-white);
  cursor: pointer;
  user-select: none;
}
.dv-form-dropdown__selected::after {
  content: url("data:image/svg+xml; utf8, %3Csvg width='' height='' viewBox='0 0 16 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='chevron-down-solid 1'%3E%3Cpath id='Vector' d='M7.29374 13.2063C7.68437 13.5969 8.31874 13.5969 8.70937 13.2063L14.7094 7.20625C15.1 6.81563 15.1 6.18125 14.7094 5.79063C14.3187 5.4 13.6844 5.4 13.2937 5.79063L7.99999 11.0844L2.70624 5.79375C2.31562 5.40313 1.68124 5.40313 1.29062 5.79375C0.899994 6.18438 0.899994 6.81875 1.29062 7.20938L7.29062 13.2094L7.29374 13.2063Z' fill='%239a9a9a'/%3E%3C/g%3E%3C/svg%3E");
  width: 14px;
  line-height: 0;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
/* DV DROPDOWN BEHAVIOR */
.dv-dropdown-is-closed {
  visibility: hidden;
  opacity: 0;
}
.dv-dropdown-is-open::after {
  transform: rotate(-180deg);
}

/* DV TEXTAREA */
.dv-form-textarea {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-xs);
}
.dv-form-textarea__text {
  flex: 1;
  font-size: var(--body-txt-regular);
  font-weight: 400;
  line-height: var(--body-txt-line-height-regular);
  color: var(--ui-gray-800);
  background-color: var(--ui-white);
  padding: calc(var(--padding-md) * 1.5);
  border: var(--form-input-border-solid);
  border-radius: var(--form-input-border-radius);
  resize: none;
  box-sizing: border-box;
}

/* DV CHECKBOX */
.dv-checkbox {
  display: flex;
  gap: var(--gutter-sm);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.dv-checkbox:hover .dv-checkbox__input:not(:checked) {
  border-color: var(--primary-medium);
  background-color: var(--primary-light);
}
.dv-checkbox__input {
  appearance: none;
  vertical-align: middle;
  position: relative;
  width: 24px;
  height: 24px;
  background-color: var(--ui-white);
  border: var(--form-input-border-solid);
  border-radius: var(--form-input-border-radius);
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.dv-checkbox__input::after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='12' viewBox='0 0 16 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.6875 1.3125C15.0938 1.6875 15.0938 2.34375 14.6875 2.71875L6.6875 10.7188C6.3125 11.125 5.65625 11.125 5.28125 10.7188L1.28125 6.71875C0.875 6.34375 0.875 5.6875 1.28125 5.3125C1.65625 4.90625 2.3125 4.90625 2.6875 5.3125L6 8.59375L13.2812 1.3125C13.6562 0.90625 14.3125 0.90625 14.6875 1.3125Z' fill='%23fff'/%3E%3C/svg%3E%0A");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.dv-checkbox__input:checked {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.dv-checkbox__input:checked::after {
  visibility: visible;
  opacity: 1;
}
.dv-checkbox__label {
  flex: 1;
  font-size: var(--body-txt-regular);
  font-weight: 400;
  line-height: var(--body-txt-line-height-regular);
  color: var(--ui-black);
  cursor: pointer;
}
.dv-checkbox__label--md {
  font-size: var(--heading-md);
  font-weight: 700;
  line-height: normal;
  color: var(--primary);
}

/* DV STEPPER */
/* BASE STYLES */
.dv-stepper {
  display: flex;
  flex-direction: column;
  gap: var(--gutter-md);
}
.dv-stepper__steps {
  display: flex;
  flex-direction: column;
}
.dv-stepper__steps-item {
  display: flex;
  gap: var(--gutter-md);
}
.dv-stepper__steps-item-indicator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dv-stepper__steps-item-indicator::before {
  position: absolute;
  content: "";
  z-index: 0;
  height: 100%;
  border-right: 2px dashed var(--primary);
}
.dv-stepper__steps-item:last-child .dv-stepper__steps-item-indicator::before {
  height: 0;
}
.dv-stepper__steps-item-indicator-number {
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  background-color: var(--primary);
  border-radius: 50%;
  font-size: var(--heading-lg);
  font-weight: 700;
  color: var(--ui-white);
  z-index: 1;
}
.dv-stepper__steps-item-info {
  display: flex;
  flex-direction: column;
  padding: var(--padding-md) 0 var(--padding-xl) 0;
}
.dv-stepper__steps-item:last-child .dv-stepper__steps-item-info {
  padding-bottom: 0;
}
.dv-stepper__steps-item-title {
  font-size: var(--heading-md);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}
.dv-stepper__steps-item-subtitle {
  font-size: var(--heading-sm);
  font-weight: 600;
  line-height: 1;
  color: var(--secondary);
  margin-top: var(--gutter-sm);
}
.dv-stepper__steps-item-description {
  font-size: var(--body-txt-regular);
  font-weight: 400;
  line-height: var(--body-txt-line-height-regular);
  color: var(--body-txt-color);
  margin-top: var(--gutter-md);

  word-wrap: break-word;
  overflow-wrap: break-word;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* DV TABLE */
.dv-table {
  position: relative;
  width: 100%;
  display: flex;
  border-collapse: collapse;
  border-spacing: 0;
  overflow-x: scroll;
}
.dv-table :is(th, td) {
  flex: 1;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  padding: var(--padding-lg) var(--padding-xl);
  line-height: var(--table-line-height);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dv-table__header {
  position: sticky;
  left: 0;
  top: 0;
  background-color: var(--secondary);
  border: var(--dflt-border-solid-transparent);
  border-left: none;
  border-right: none;
}
.dv-table__header > tr {
  display: flex;
  flex-direction: column;
}
.dv-table__header > tr > th:not(:last-child),
.dv-table__body > tr > td:not(:last-child) {
  border-bottom: var(--dflt-border-solid);
}
.dv-table__header > tr > th {
  font-size: var(--table-txt-regular);
  font-weight: 600;
  color: var(--ui-white);
}
.dv-table__body {
  display: flex;
  background-color: var(--ui-white);
  border: var(--dflt-border-solid);
  border-left: none;
}
.dv-table__body > tr {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.dv-table__body > tr > td {
  font-size: var(--table-txt-regular);
  font-weight: 400;
  color: var(--ui-black);
}

/* DV TABLE - LONG HEADINGS - SCROLL X */
.dv-table--scroll-x .dv-table__header {
  position: initial;
  left: initial;
  top: initial;
}

/* BREAKPOINTS */

/* viewport-xs - Extra Small screens */
/* CSS Styles for devices with widths smaller than 576px */
@media screen and (max-width: 576px) {
}

/* viewport-sm - Small screens */
/* CSS Styles for devices with widths wider than 576px */
@media screen and (min-width: 576px) {
  .input-button__fieldset {
    zoom: 1;
  }

  .input-button__input {
    font-size: var(--body-txt-lg);
  }

  .input-button__btn {
    margin-left: -44px;
  }

  .btn--tab :is(svg, img) {
    display: inline-flex;
    fill: var(--primary);
  }

  .input-search__group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--gutter-md);
    justify-items: stretch;
  }

  .banner {
    max-width: 420px;
    margin: 0 auto;
  }

  .dv-modal__modal-dialog {
    max-width: 90vw;
  }
}

/* viewport-md - Medium screens */
/* CSS Styles for devices with widths wider than 768px */
@media screen and (min-width: 768px) {
  .btn--tab {
    border-radius: 8px;
    padding: calc(var(--padding-sm) * 3 - 2px) calc(var(--padding-md) * 3);
  }

  .input-search__result-counter {
    text-align: left;
  }

  .accordion__item {
    padding: var(--padding-xl) 0;
  }

  .banner {
    max-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(100px, auto) 1fr;
    gap: var(--gutter-lg);
  }

  .banner__content {
    text-align: initial;
    place-self: center start;
  }

  .subnav__list-item-nested-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: var(--gutter-lg);
  }

  .video-group {
    gap: var(--gutter-lg);
    padding: var(--padding-xl);
  }

  .video-group__list {
    position: relative;
    grid-template-columns: repeat(
      auto-fit,
      minmax(calc((100% - var(--gutter-lg)) / 2), 1fr)
    );
    gap: var(--gutter-lg);
  }

  .dv-video,
  .video-group__list-item {
    max-width: 720px;
    margin: 0 auto;
  }

  .video-group__list-item:nth-child(3) {
    grid-column: 1/3;
    width: 48%;
    justify-self: center;
  }

  .dv-carousel__list {
    grid-auto-columns: calc((100% - var(--gutter-lg)) / 2);
    gap: var(--gutter-lg);
  }

  .quick-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--gutter-lg);
    justify-content: center;
  }

  .quick-buttons > * {
    flex: initial;
    width: calc((100% - var(--gutter-lg)) / 2);
    max-width: 50%;
  }

  .offer-card__body {
    grid-template-columns: 1fr auto;
    place-items: start;
  }
  .offer-card__cover {
    aspect-ratio: 16/7;
  }
  .offer-card__rate {
    order: initial;
  }
  .offer-card__description {
    grid-column: 1/3;
  }

  .offer-card__more-info-head {
    grid-template-columns: auto 1fr;
    gap: var(--gutter-lg);
  }
  .offer-card__more-info-head-cover {
    width: 160px;
    aspect-ratio: 1/1;
  }

  .dv-modal__modal-dialog {
    max-width: 80vw;
  }

  .dv-table--scroll-x .dv-table__header {
    position: sticky;
    left: 0;
    top: 0;
  }
}

/* viewport-lg - Large screens */
/* CSS Styles for devices with widths wider than 992px */
@media screen and (min-width: 992px) {
  .search-widget__tabs {
    gap: var(--gutter-md);
    justify-content: flex-start;
  }

  .subnav {
    flex-direction: row;
    justify-content: center;
    position: relative;
  }

  .subnav--desktop .subnav__group-toggle {
    display: none;
  }

  .subnav__list {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    position: initial;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .subnav__list-item {
    padding: var(--padding-lg) 0;
    cursor: pointer;
  }

  .subnav--desktop .subnav__list-item:first-of-type {
    display: flex;
  }

  .subnav__list-item-label {
    justify-content: initial;
    gap: var(--gutter-xs);
    padding: var(--padding-md) var(--padding-lg);
    border-radius: 100px;
    background-color: transparent;
  }

  .subnav__list-item:hover > .subnav__list-item-label,
  .subnav__list-item-label:hover,
  .subnav__list-item-label:active,
  .subnav__list-item-label:focus {
    background-color: var(--secondary);
    color: var(--ui-white);
  }

  .subnav__list-item:has(> .subnav__list-item-nested):hover
    > .subnav__list-item-label::after {
    transform: rotate(-180deg);
  }

  /* RESET MOBILE NESTED CONTAINER OPEN */
  .subnav-sm-open ~ .subnav__list-item-nested {
    opacity: initial;
    max-height: initial;
    visibility: initial;
    padding: initial;
  }

  .subnav-sm-open::after {
    transform: none;
  }

  .subnav__list-item-nested {
    position: absolute;
    width: 100%;
    max-height: initial;
    left: 0px;
    top: 100%;
    background-color: var(--primary);
    transform: translateY(-8px);
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .subnav__list-item-nested-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter-lg);
    padding: var(--padding-lg);
    max-height: 300px;
  }

  .subnav__list-item-nested-menu-label {
    cursor: default;
  }

  /* DESKTOP NESTED CONTAINER OPEN */
  .subnav__list-item:hover > .subnav__list-item-nested,
  .subnav__list-item:active > .subnav__list-item-nested,
  .subnav__list-item:focus > .subnav__list-item-nested,
  .subnav__list-item-label:hover ~ .subnav__list-item-nested,
  .subnav__list-item-label:active ~ .subnav__list-item-nested,
  .subnav__list-item-label:focus-within ~ .subnav__list-item-nested {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    z-index: 1;
  }

  .dv-carousel__btn {
    width: 48px;
  }

  .dv-carousel__btn::after {
    width: 14px;
  }

  .dv-carousel__btn-left {
    left: -29px;
  }

  .dv-carousel__btn-right {
    right: -29px;
  }

  .dv-carousel__list {
    grid-auto-columns: calc((100% - var(--gutter-xl)) / 3);
    gap: var(--gutter-lg);
  }

  .quick-buttons {
    column-gap: var(--gutter-xl);
  }

  .quick-buttons > * {
    width: calc((100% - var(--gutter-xl)) / 2);
  }

  .dv-pagination {
    width: 70%;
    margin: 0 auto;
  }

  .dv-pagination__pages-item-link {
    width: 48px;
    height: 48px;
    font-size: var(--body-txt-lg);
  }

  .dv-pagination__pages-item-link svg {
    height: 20px;
  }

  .offer-card {
    grid-template-columns: 1fr 3fr;
    gap: var(--gutter-lg);
    padding: var(--padding-xl);
  }
  .offer-card__cover {
    aspect-ratio: 1/1;
  }

  .offer-card__more-info {
    gap: var(--gutter-lg);
  }
  .offer-card__more-info-head-cover {
    width: 180px;
  }

  .dv-location__icon {
    transform: translateY(-2px);
  }

  .dv-modal__header {
    padding: var(--padding-xl);
  }
  .dv-modal__body {
    padding: var(--padding-xl);
  }

  .dv-modal__modal-dialog {
    max-width: 720px;
  }

  .dv-stepper__steps {
    flex-direction: row;
  }
  .dv-stepper__steps-item {
    flex-direction: column;
    flex: 1;
    gap: initial;
  }
  .dv-stepper__steps-item-info {
    text-align: center;
    margin-top: var(--gutter-lg);
    padding: 0 var(--padding-lg);
  }

  .dv-stepper__steps-item-indicator::before {
    height: initial;
    border-right: none;
    width: 100%;
    border-bottom: 2px dashed var(--primary);
  }
  .dv-stepper__steps-item:first-child
    .dv-stepper__steps-item-indicator::before {
    width: 50%;
    right: 0;
  }
  .dv-stepper__steps-item:last-child .dv-stepper__steps-item-indicator::before {
    width: 50%;
    left: 0;
  }

  .dv-table {
    flex-direction: column;
    overflow-x: initial;
  }
  .dv-table__header {
    position: initial;
    border: none;
  }
  .dv-table__header > tr,
  .dv-table__body > tr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .dv-table :is(th, td) {
    white-space: wrap;
  }
  .dv-table__header > tr > th:not(:last-child),
  .dv-table__body > tr > td:not(:last-child) {
    border-bottom: none;
  }
  .dv-table__header > tr > th {
    font-size: var(--table-txt-lg);
  }
  .dv-table__body {
    flex-direction: column;
    border-top: none;
    border-left: var(--dflt-border-solid);
  }
  .dv-table__body > tr:not(:last-child) {
    border-bottom: var(--dflt-border-solid);
  }

  /* DV TABLE - VERTICAL HEADINGS */
  .dv-table--vertical {
    flex-direction: row;
    overflow-x: scroll;
  }
  .dv-table--vertical :is(th, td) {
    white-space: nowrap;
  }
  .dv-table--vertical .dv-table__header {
    position: sticky;
    left: 0;
    top: 0;
    border: var(--dflt-border-solid-transparent);
    border-left: none;
    border-right: none;
  }
  .dv-table--vertical .dv-table__header > tr,
  .dv-table--vertical .dv-table__body > tr {
    display: flex;
    flex-direction: column;
  }
  .dv-table--vertical .dv-table__header > tr > th:not(:last-child),
  .dv-table--vertical .dv-table__body > tr > td:not(:last-child) {
    border-bottom: var(--dflt-border-solid);
  }
  .dv-table--vertical .dv-table__body {
    flex: 1;
    flex-direction: row;
    border: var(--dflt-border-solid);
    border-left: none;
  }
  .dv-table--vertical .dv-table__body > tr:not(:last-child) {
    border-bottom: none;
  }
  .dv-table--scroll-x .dv-table__header {
    position: initial;
    left: initial;
    top: initial;
  }
}

/* viewport-xl - Extra Large screens */
/* CSS Styles for devices with widths wider than 1200px */
@media screen and (min-width: 1200px) {
  .search-widget__tabs {
    gap: var(--gutter-lg);
  }

  .input-button {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--gutter-lg);
  }

  .input-button__legend {
    font-size: var(--heading-md);
  }

  .subnav__list {
    width: fit-content;
    gap: var(--gutter-lg);
    justify-content: center;
  }

  .subnav__list-item-label {
    gap: var(--gutter-sm);
  }

  .subnav__list-item-nested-wrapper {
    grid-template-columns: repeat(4, 1fr);
    max-height: 340px;
  }

  .video-group {
    gap: var(--gutter-lg);
    padding: var(--padding-xl);
  }

  .video-group__list {
    grid-template-columns: repeat(
      auto-fit,
      minmax(calc((100% - var(--gutter-xl)) / 3), 1fr)
    );
  }

  .dv-video,
  .video-group__list-item {
    max-width: 960px;
  }

  .video-group__list-item:nth-child(3) {
    grid-column: initial;
    width: initial;
    justify-self: initial;
  }

  .video-group__more {
    gap: var(--gutter-lg);
  }

  .quick-buttons {
    margin: initial;
    column-gap: var(--gutter-xl);
  }

  .quick-buttons > * {
    flex: 1;
    width: initial;
  }
}

/* viewport-xxl - Ultrawide screens */
/* CSS Styles for devices with widths wider than 1400px */
@media screen and (min-width: 1400px) {
  .search-widget {
    gap: var(--gutter-lg);
    padding: var(--padding-xl);
    border-radius: 14px;
  }

  .input-button__legend {
    font-size: var(--heading-lg);
  }

  .subnav__list-item-nested-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    grid-template-columns: repeat(5, 1fr);
    padding: var(--padding-xl) 0;
    max-height: 360px;
  }

  .quick-buttons {
    column-gap: var(--gutter-xxl);
  }

  .dv-stepper__steps-item-info {
    padding: 0 var(--padding-xl);
  }

}

.all-cruises-buttons {
	display: flex;
	justify-content: center;
	gap: 24px;
}

.wth3-customSearchContinue {
	font-size: 14px !important;
}

.wth3-customSearchContinue:hover {
	background-color: var(--primary);
  	border: 3px solid var(--primary);
}


@media screen and (max-width: 768px) {
	.all-cruises-buttons {
		align-items: center;
		flex-direction: column;
	}
}

