@charset "UTF-8";
.page-reset *,
.page-reset *::before,
.page-reset *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.page-reset {
  font-size: 16px;
  line-height: normal;
}
.page-reset header {
  background: transparent;
  height: auto;
}
.page-reset h1,
.page-reset h2,
.page-reset h3,
.page-reset h4 {
  font-weight: revert;
  line-height: normal;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes loading-quick {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(200%);
  }
}
@keyframes loading-full {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.block {
  display: block !important;
}

.flex {
  display: flex !important;
}

.flex-col {
  display: flex !important;
  flex-direction: column !important;
}

.align-center {
  align-items: center !important;
}

.justify-sb {
  justify-content: space-between !important;
}

.justify-center {
  justify-content: center;
}

.gap-10 {
  gap: 10px !important;
}

.p-0 {
  padding: 0 !important;
}

.p-10 {
  padding: 10px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.fixed {
  position: fixed !important;
  width: 100% !important;
}

.hidden {
  visibility: hidden !important;
  display: none !important;
}

@media (min-width: 1024px) {
  .hide-lg {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (min-width: 769px) {
  .hide-md {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 768px) {
  .hide-sm {
    display: none !important;
    visibility: hidden !important;
  }
}

@media (max-width: 1023px) {
  .show-lg {
    display: none !important;
    visibility: hidden !important;
  }
}

.rotate-180 {
  transform: rotate(180deg) !important;
}

.of-hidden {
  overflow: hidden;
}

.c-pointer {
  cursor: pointer;
}

.no-select {
  user-select: none; /* Standard */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE10+/Edge */
}

.clr-blue {
  color: #0672ff !important;
}

.bg-white {
  background: #fff !important;
}

.filter-blue {
  filter: invert(30%) sepia(69%) saturate(3412%) hue-rotate(208deg)
    brightness(102%) contrast(104%);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #343434;
}

/* Scoped with :where() - adds no specificity, so the cascade inside the widget is
   unchanged, but these no longer reach the site header, footer or other pages. */
:where(.page-reset) a {
  color: #0672ff;
}

.f-md {
  font-size: 14px !important;
}

.f-base {
  font-size: 16px !important;
}

.clr-blue {
  color: #0672ff !important;
}

.link {
  color: #0672ff !important;
  text-decoration: underline !important;
}

@font-face {
  font-family: 'cambria';
  src: url('/assets/fonts/CAMBRIA.TTC') format('ttc');
  font-weight: normal;
  font-style: normal;
}

.btn {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: inset 2px 2px 0px hsla(0, 0%, 100%, 0.161);
  cursor: pointer;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}
.btn__red {
  background: transparent linear-gradient(180deg, #bc2525 0%, #a41515 100%);
  box-shadow: inset 1px 1px 0px rgba(255, 255, 255, 0.1607843137);
  border: 1px solid #961b20;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.btn__ghost-alt {
  background: transparent;
  font-size: 14px;
  border: 1px solid #cecece;
  color: #0672ff;
}

.disabled {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.media-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: #cecece;
  background: #fff;
  border: 1px solid #cecece;
  border-radius: 5px;
  cursor: pointer;
}
.media-btn svg {
  margin-right: 5px;
  fill: #cecece;
}
.media-btn:is(.active) {
  border-color: #008286;
  background: #f5ffff;
  color: #008286;
}
.media-btn:is(.active) svg {
  fill: #008286;
}

[data-overlay-btn] {
  cursor: pointer;
}

.btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.read-more-container {
  position: relative;
}
.read-more-container p:not(:first-of-type) {
  margin-top: 10px;
}
.read-more-container .read-more-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: 3;
}
.read-more-container .read-more-btn:after {
  content: '';
  display: inline-block;
  text-align: left;
  position: absolute;
  left: -40px;
  height: 100%;
  width: 40px;
  padding-right: 2px;
  background: linear-gradient(90deg, transparent 0%, #f9f9f9 85%, #f9f9f9 100%);
}
@media (max-width: 768px) {
  .read-more-container .read-more-btn:after {
    background: linear-gradient(90deg, transparent 0%, #fff 85%, #fff 100%);
  }
}
.read-more-container .read-more-btn--bottom {
  position: relative;
}
.read-more-container .read-more-btn--bottom:after {
  display: none;
}
.read-more-container:has(.remove-truncated) .read-more-btn {
  position: relative;
  display: block;
}
.read-more-container:has(.remove-truncated) .read-more-btn:after {
  display: none;
}

.icon {
  position: relative;
  background-position: calc(100% - 10px) center !important;
  background-size: 20px !important;
  border-radius: 5px;
  padding: 0;
}

.icon select,
.icon input {
  padding-right: 35px !important;
  padding-left: 10px;
}

.lgd-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 2px;
}
.lgd-box img {
  height: 12px;
  width: 12px;
}

.package-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 0 10px;
  cursor: pointer;
  border-right: 1px solid #dbdbdb;
  color: #343434;
  font-size: 14px;
  text-decoration: none;
}
.package-tab:last-of-type {
  border-right: none;
}
.package-tab:first-of-type:is(.active) {
  width: 100%;
}
.package-tab:is(.active) {
  background: #fff;
  font-weight: bold;
  position: relative;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.1019607843);
  border-right: none;
  z-index: 1;
}
.package-tab:is(.active) span {
  transform: translateY(-5px);
}
.package-tab:is(.active):first-of-type:after {
  left: -5px;
}
.package-tab:is(.active):last-of-type:after {
  right: -5px;
}
.package-tab:is(.active):after {
  content: '';
  position: absolute;
  height: 51px;
  width: calc(100% + 5px);
  border-radius: 5px 5px 0 0;
  top: -5px;
  background: #fff;
  z-index: -1;
}

.card {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  margin-bottom: 5px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
  border-radius: 5px;
}
.card h4 {
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: bold;
}
.card p {
  font-size: 12px;
}
.card img {
  margin-right: 10px;
}

.card-sa {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
  border-radius: 10px;
  opacity: 1;
}
.card-sa__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  padding-left: 20px;
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid #f3f3f3;
}
.card-sa__header > h1 {
  font-size: 18px;
}
.card-sa__body {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .card-sa {
    flex-direction: column;
    box-shadow: none;
    padding: 0;
  }
  .card-sa__header {
    padding: 0 0 10px;
    border-bottom: none;
    min-height: auto;
  }
  .card-sa__body {
    font-size: 14px;
    padding: 0;
  }
}

.slider {
  margin-bottom: 10px;
}
.slider:first-of-type {
  margin-top: 5px;
}
.slider .slides {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-right: 20px;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: none;
}
.slider .slides::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}
.slider .slide {
  width: 120px;
  position: relative;
  text-decoration: none;
  color: #343434;
}
.slider .slide img {
  width: inherit;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* Ship-template overlay.  Namespaced as .ship-overlay* so it cannot reach the
   site header's own overlay wrappers (header.mobile > .overlay-container, from
   /style/overlay/main.css) or the cruise search filter overlay
   (#cruise-line-overlay, from landing-full.css).  This stylesheet is injected
   mid-body by CRUISE-routesLeadin-newV2 and so wins the cascade over both. */

.ship-overlay {
  display: none;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 4;
}

.ship-overlay__scrollable {
  max-height: 74dvh;
  overflow-y: auto !important;
}
.ship-overlay__scrollable::-webkit-scrollbar {
  display: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ship-overlay__scrollable .os-st {
  background: #f1f1f2;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 3;
}

.ship-overlay.open {
  display: flex;
}
.ship-overlay.open .ship-overlay__container {
  animation: slideUp 0.3s ease-in-out;
}

.ship-overlay__bg {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  min-height: 20px;
  height: 100%;
  width: 100%;
}

.ship-overlay__container {
  position: relative;
  align-self: flex-end;
  width: 100%;
  max-height: 93dvh;
}
.ship-overlay__container:has(.full-height) {
  height: 100%;
}
.ship-overlay__container form {
  display: none;
}
.ship-overlay__container [data-overlay='media'] {
  margin-bottom: 0 !important;
}
.ship-overlay__container header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  height: 50px;
  border-radius: 5px 5px 0px 0px;
  border-bottom: 1px solid #dbdbdb;
  padding: 0 10px;
}
.ship-overlay__container header .overlay-heading {
  line-height: 1;
}
.ship-overlay__container header .overlay-subtitle {
  font-size: 14px;
}
.ship-overlay__container header .overlay-close {
  font-size: 14px;
  padding: 10px;
  right: 10px;
  cursor: pointer;
}
.ship-overlay__container .overlay-content {
  position: relative;
  background: #f1f1f2;
  font-size: 14px;
}
.ship-overlay__container .overlay-content p {
  padding-bottom: 10px;
}
.ship-overlay__container input[type='text'] {
  max-height: 40px;
  height: 100%;
  width: 100%;
  padding: 10px;
  border: 1px solid #cecece;
  border-radius: 5px;
}
.ship-overlay__container input[type='checkbox'] {
  padding: 15px;
  margin-right: 10px;
}
.ship-overlay__container li {
  list-style: none;
}

.ship-overlay__container .open {
  display: none;
  transition: 0.5s;
}

.ship-overlay__controls {
  height: 70px;
  width: 100%;
  padding: 10px 10px 0 10px;
  background: #fff;
  border-top: 1px solid #dbdbdb;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 10px;
}

.airline-list .checkbox {
  font-weight: normal !important;
}
.airline-list .checkbox:first-of-type {
  font-weight: bold;
}

.tooltip {
  display: none;
}

.tooltip-highlight {
  border: 1px solid #008286;
  color: #008286;
  background: #f5ffff;
  border-bottom: 1px solid #008286 !important;
}
.tooltip-highlight:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.tooltip-highlight:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.tooltip-highlight select,
.tooltip-highlight input {
  background-color: #f5ffff;
  color: #008286;
  font-weight: bold;
}
.tooltip-highlight img {
  filter: invert(37%) sepia(70%) saturate(671%) hue-rotate(135deg)
    brightness(91%) contrast(103%);
}

:where(.page-reset) .close {
  cursor: pointer;
  z-index: 2;
}

.hover-tip {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 5px;
  font-size: 14px;
  text-decoration: none;
  width: auto;
  color: #0672ff;
  cursor: help;
  line-height: 20px;
}
.hover-tip svg {
  flex-shrink: 0;
  transform: translateY(5px);
}

.list-group {
  background: #fff;
  border: #dbdbdb 1px solid;
  border-radius: 5px;
  margin-bottom: 5px;
  overflow: hidden;
}
.list-group li {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 10px;
  padding-right: 0;
  font-size: 14px;
}
.list-group li:has(.checkbox) {
  justify-content: space-between;
  width: 100%;
}
.list-group li .checkbox {
  padding: 0 0 0 30px;
  margin: 0;
  font-weight: bold;
  width: 100%;
}
.list-group li .options {
  padding-right: 5px;
  display: flex;
  gap: 0px;
  width: 115px;
  justify-content: space-between;
}
.list-group li .options .only-btn {
  position: relative;
  right: 0;
}
.list-group li:last-of-type {
  border-bottom: none;
}
.list-group li .only-btn {
  position: absolute;
  right: 10px;
  font-size: 12px;
  font-weight: normal;
  color: #0672ff;
  text-transform: capitalize;
}
.list-group ul {
  width: 100%;
}
.list-group ul li {
  border: none;
}

.list-group li a {
  position: relative;
  right: unset;
  font-size: unset;
  font-weight: unset;
  text-transform: unset;
}

.accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 10px 0 10px 10px;
  font-size: 14px;
  border: 1px solid #dbdbdb;
  border-top: none;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.accordion:first-of-type {
  border-top: 1px solid #dbdbdb;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.accordion:nth-last-child(2) {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.accordion:nth-last-child(2):is(.active) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion .icon {
  margin-right: 10px;
}

.accordion.active {
  border: 1px solid #dbdbdb;
  border-bottom: none;
  border-top: none;
}
.accordion.active:first-of-type {
  border-top: 1px solid #dbdbdb;
}
.accordion.active .icon {
  transform: rotate(90deg);
}

.panel {
  padding: 0 10px;
  background: #fff;
  display: none;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.panel .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 5px;
  border-bottom: none;
}
.panel:last-of-type {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

[data-accordion].active + * {
  display: block;
}

.panel.active {
  border: 1px solid #dbdbdb;
  border-top: none;
}

.accordion-cabin-cat .accordion b {
  font-size: 16px;
}
.accordion-cabin-cat .accordion .link {
  text-transform: capitalize;
}
@media (min-width: 769px) {
  .accordion-cabin-cat .accordion {
    height: 60px;
    padding: 15px 20px;
    border-top: 1px solid #cecece;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  .accordion-cabin-cat .accordion b {
    font-size: 18px;
  }
  .accordion-cabin-cat .accordion:is(.active) {
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 1px solid transparent;
    justify-content: flex-start;
  }
  .accordion-cabin-cat .accordion:is(.active) .link {
    display: none;
  }
  .accordion-cabin-cat .panel {
    padding: 0 20px 10px;
  }
  .accordion-cabin-cat .panel:is(.active) {
    margin-bottom: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}

[data-overlay='fltDepartFrom'],
[data-overlay='fltDestination'] {
  height: 100%;
}

@media (max-width: 767px) {
  #results {
    width: 100%;
    border-spacing: 0;
  }
  #results tbody {
    width: 100%;
  }
  #results tr td {
    display: flex;
    align-items: center;
  }
  #results tr {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 85px;
    grid-template-areas: 'hotel right' 'destination right' 'icons right';
    column-gap: 5px;
    row-gap: 2px;
    border-bottom: 1px solid #dbdbdb;
    cursor: pointer;
  }
  #results tr:last-of-type {
    border-bottom: none;
  }
  #results tr .destination {
    grid-area: destination;
    font-size: 12px;
    color: #868686;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background: #fff;
  border-radius: 100%;
  height: 40px;
  width: 40px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 14px;
  font-weight: 900;
  color: #343434;
}

.swiper-button-prev {
  transform: translateX(-30px);
}

.swiper-button-next {
  transform: translateX(30px);
}

@keyframes slide-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.swiper-md {
  width: 100%;
}

.sa-media-swiper .swiper-slide {
  max-width: 264px;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .sa-media-swiper .swiper-slide {
    max-width: 205px;
    height: 140px;
  }
}
.sa-media-swiper img {
  width: inherit;
  height: inherit;
  object-fit: cover;
}
.sa-media-swiper .swiper-button-next {
  transform: translateX(5px);
}
.sa-media-swiper .swiper-button-prev {
  transform: translateX(-5px);
}
.sa-media-swiper .swiper-button-next,
.sa-media-swiper .swiper-button-prev {
  top: calc(50% - 20px);
}

.travel-tips-swiper {
  padding-bottom: 10px;
}
.travel-tips-swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  width: 335px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
}
.travel-tips-swiper .swiper-slide img {
  height: 180px;
  width: 100%;
}
@media (max-width: 768px) {
  .travel-tips-swiper .swiper-slide img {
    border-radius: 10px;
  }
}
@media (max-width: 768px) {
  .travel-tips-swiper .swiper-slide {
    box-shadow: none;
    max-width: 240px;
  }
  .travel-tips-swiper .swiper-slide img {
    height: 130px;
    object-fit: cover;
  }
}
.travel-tips-swiper .swiper-button-next {
  transform: translateX(5px);
}
.travel-tips-swiper .swiper-button-prev {
  transform: translateX(-5px);
}
.travel-tips-swiper .swiper-button-next,
.travel-tips-swiper .swiper-button-prev {
  top: calc(50% - 5px);
  transform: translateY(calc(-50% - 5px));
}

@media (max-width: 768px) {
  .travel-tips-swiper .swiper-button-next,
  .travel-tips-swiper .swiper-button-prev,
  .sa-media-swiper .swiper-button-next,
  .sa-media-swiper .swiper-button-prev {
    display: none;
  }
}

.deck-image {
  display: block;
  width: 100%;
}

body:has([data-modal].open) {
  overflow: hidden;
}

body:has(dialog[open]) {
  overflow: hidden;
}

body {
  font-family: Arial, sans-serif;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes fade {
  0% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0.1;
  }
}

input,
select {
  padding: inherit;
  box-shadow: none;
}

form:not(.form-reset) b {
  font-size: 12px;
  display: block;
  margin: 10px 0 8px;
}

select {
  width: 100%;
  height: 40px;
  border: 1px solid #cecece;
  border-radius: 5px;
  padding-left: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('/style/cruises-assets/images/icons/arrow-down.svg');
  background-repeat: no-repeat, repeat;
  background-position:
    right 0.7em top 50%,
    0 0;
  background-size: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #343434;
}

input[type='date'] {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.input {
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  height: 40px;
}

.checkbox {
  display: flex;
  align-items: center;
  position: relative;
  padding: 5px 0 5px 28px;
  margin: 5px 0;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 18px;
  width: 18px;
}
.checkbox img {
  margin-right: 14px;
}

.error * {
  border-color: #dc1e1e !important;
}

.page {
  padding: 30px 0;
  background: #f1f1f2;
}
@media (max-width: 1024px) {
  .page {
    padding: 10px 0;
  }
}

.container {
  max-width: 1480px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .container {
    padding: 0;
  }
}

.results {
  background: #f1f1f2;
}
.results [data-overlay-btn] > * {
  pointer-events: none;
}

.oa-content {
  padding: 20px;
  background: #fff;
  border: 1px solid #dbdbdb;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
@media (max-width: 767px) {
  .oa-content {
    border: none;
    border-top: 1px solid #008286;
    padding: 10px;
  }
}
.oa-content .optional-addon header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
@media (max-width: 767px) {
  .oa-content .optional-addon header {
    cursor: pointer;
    pointer-events: auto;
  }
}
.oa-content .optional-addon header span {
  font-size: 14px;
  font-weight: bold;
}
.oa-content .optional-addon header i {
  color: #868686;
  font-size: 12px;
}
.oa-content .optional-addon header svg {
  transform: rotate(90deg);
}
.oa-content .optional-addon .oa-list {
  list-style: none;
}
.oa-content .optional-addon .oa-list li {
  background: #f3f3f3;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 5px;
}
.oa-content .optional-addon .oa-list li:last-of-type {
  margin-bottom: 0;
}
.oa-content .optional-addon .oa-list li label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.oa-content .optional-addon .oa-list li label input[type='radio'] {
  margin-right: 5px;
}
.oa-content .optional-addon .oa-list li label .price {
  font-weight: bold;
  font-size: 12px;
}

.featured-options li {
  padding: 0;
  overflow: hidden;
}
.featured-options li:last-of-type label {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.featured-options li img {
  height: 24px;
}
.featured-options li a {
  position: unset;
  font-size: 14px;
}
.featured-options li:has(label) {
  padding-right: 0 !important;
}
.featured-options label {
  display: flex;
  width: 100%;
  align-items: center;
  height: 100%;
  padding: 10px;
  position: relative;
  overflow: hidden;
  min-height: 40px;
}
.featured-options label:hover {
  background: #f3f3f3;
  cursor: pointer;
}
.featured-options label:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  background: transparent;
  box-sizing: inherit;
  left: 0;
}
.featured-options label.selected {
  background: #f3f3f3;
}
.featured-options label.selected:before {
  background: #0672ff;
}
.featured-options label input[type='radio'] {
  margin-right: 12px;
  display: block;
}
.featured-options b {
  margin: 0;
  display: block;
}

.row-as-link {
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.row-as-link:hover td {
  background: #fdfdfd;
}
.ship-details__list {
  list-style: none;
  display: flex;
  row-gap: 10px;
  column-gap: 30px;
  flex-wrap: wrap;
}
.ship-details__list li {
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .ship-details__list--mbl {
    flex-direction: column;
  }
}

.deck-plans--select {
  max-width: 340px;
  width: 100%;
  padding: 0 0 0 10px;
}
@media (max-width: 767px) {
  .deck-plans--select {
    max-width: 100%;
  }
}

.deck-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.view-deck__map {
  overflow: hidden;
  max-height: 400px;
  height: 100%;
}
.view-deck__map img {
  transform: translateY(-100%) rotate(90deg);
  transform-origin: left bottom;
  width: 400px;
  height: auto;
}

.drag-scroll {
  cursor: grab;
}
.drag-scroll img {
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.deck-plan-lgd--basic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  font-size: 14px;
}

.more-ellipse {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.remove-truncated {
  display: inline-block;
}

.standalone {
  position: relative;
}
.standalone .container {
  max-width: 1440px;
}
@media (min-width: 769px) {
  .standalone {
    background: #f3f3f3;
  }
  .standalone .card-sa {
    align-items: center;
  }
  .standalone .slider {
    background: #fff;
    padding: 10px 20px 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1019607843);
  }
}

.crs-landing--card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 1200px) {
  .crs-landing--card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .crs-landing--card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .crs-landing--card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.crs-landing--card-grid .card-sa {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .crs-landing--card-grid .card-sa {
    border: 1px solid #dbdbdb;
  }
}
.crs-landing--card-grid .card-sa .thumbnail {
  width: 100%;
  height: 212px;
  object-fit: cover;
}
.crs-landing--card-grid .card-sa .card-sa__body {
  padding: 20px;
  width: 100%;
}
.crs-landing--card-grid .card-sa .card-sa__body h3 {
  font-size: 16px;
}
.crs-landing--card-grid .card-sa .card-sa__body p {
  font-size: 14px;
}
.crs-landing--card-grid .card-sa .card-footer {
  padding: 5px 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 5px;
  font-size: 14px;
  margin-top: auto;
  width: 100%;
}
.crs-landing--card-grid .card-sa .card-footer .price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.crs-landing--card-grid .card-sa .card-footer .price span {
  font-size: 12px;
  color: #5b5b5b;
}
.crs-landing--card-grid .card-sa .card-footer .price h2 {
  font-size: 24px;
}

.page-banner-v2 {
  position: absolute;
  height: 225px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  top: 0;
  left: 0;
  right: 0;
}
.page-banner-v2 img {
  width: 100%;
  min-height: 225px;
  object-fit: cover;
}
.page-banner-v2:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.15) 100%
  );
  pointer-events: none;
}
@media (max-width: 1023px) {
  .page-banner-v2 {
    display: none;
  }
}

.landing-container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  padding: 0 0 50px 0;
}
.landing-container .padded-sec {
  padding: 0 20px;
}
.landing-container .crs-landing--media {
  padding: 0 20px;
}
@media (max-width: 1023px) {
  .landing-container .crs-landing--media {
    padding: 0 0 0 20px;
  }
}

.landing--page-header {
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 30px 20px 0;
  overflow: hidden;
}
.landing--page-header:before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background-image: url(/assets/images/bgimage.png);
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .landing--page-header:before {
    display: none;
  }
}
.landing--page-header:after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.26) 100%
  );
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 1024px) {
  .landing--page-header:after {
    display: none;
  }
}
.landing--page-header .heading {
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.landing--page-header .subheading {
  font-size: 18px;
  line-height: 1;
  margin-top: 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
.landing--page-header .btn-group {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
}
.landing--page-header .btn-group .btn {
  min-height: 50px;
  height: auto;
  padding: 10px 20px;
  width: auto;
}
@media (max-width: 1023px) {
  .landing--page-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .landing--page-header .heading {
    font-size: 22px;
    line-height: 24px;
    text-transform: capitalize;
  }
  .landing--page-header .subheading {
    font-size: 16px;
    line-height: 20px;
  }
  .landing--page-header .btn-group {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.crs-landing--table {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  font-size: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1019607843);
  border-collapse: collapse;
  border-spacing: 0;
  overflow: hidden;
  position: relative;
}
.crs-landing--table thead {
  height: 45px;
  font-size: 14px;
}
@media (max-width: 1023px) {
  .crs-landing--table thead {
    display: none;
  }
}
.crs-landing--table th {
  padding: 15px 4px;
  border-bottom: 1px solid #dbdbdb;
  background: #f3f4f6;
  cursor: pointer;
}
.crs-landing--table th:is(.active),
.crs-landing--table th:hover {
  text-decoration: underline;
}
.crs-landing--table th img {
  margin-left: 5px;
}
.crs-landing--table tr th:first-of-type,
.crs-landing--table tr td:first-of-type {
  padding-left: 20px;
}
.crs-landing--table tr th:last-of-type,
.crs-landing--table tr td:last-of-type {
  padding-right: 20px;
}
.crs-landing--table td {
  padding: 15px 4px;
  line-height: 1;
}
.crs-landing--table td:has(a) {
  padding: 10px 0;
}
.crs-landing--table td:has(a) a {
  text-decoration: none;
  padding: 5px 4px;
}
.crs-landing--table tbody tr:nth-of-type(even) {
  background: #f6fcff;
}
.crs-landing--table .date,
.crs-landing--table .region,
.crs-landing--table .embark,
.crs-landing--table .disembark {
  text-align: left;
}
.crs-landing--table .days {
  text-align: center;
}
.crs-landing--table .inside,
.crs-landing--table .outside,
.crs-landing--table .balcony,
.crs-landing--table .suite {
  text-align: right;
}
.crs-landing--table td.inside,
.crs-landing--table td.outside,
.crs-landing--table td.balcony,
.crs-landing--table td.suite {
  color: #0672ff;
  font-weight: bold;
}
.crs-landing--table td.inside span,
.crs-landing--table td.outside span,
.crs-landing--table td.balcony span,
.crs-landing--table td.suite span {
  display: none;
}
.crs-landing--table td.suite a {
  padding-right: 0;
}
.crs-landing--table td.date {
  color: #0672ff;
  text-transform: uppercase;
}
.crs-landing--table td.date a {
  text-decoration: none;
}
.crs-landing--table td.date .date--mbl {
  display: none;
}
@media (max-width: 1023px) {
  .crs-landing--table {
    box-shadow: none;
    background: transparent;
    overflow: auto;
  }
  .crs-landing--table:not(.is-collapsed) {
    padding-bottom: 70px;
  }
  .crs-landing--table:not(.is-collapsed) .row-toggle {
    position: fixed;
    bottom: 0;
  }
  .crs-landing--table tbody tr {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: 'date date date date' 'region region region region' 'route route route route' 'inside outside balcony suite';
    padding: 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e2e2;
    margin-bottom: 10px;
    border-radius: 5px;
    background: #fff;
  }
  .crs-landing--table tbody tr:nth-of-type(even) {
    background: #fff;
  }
  .crs-landing--table tr td:last-of-type {
    padding-right: 6px;
  }
  .crs-landing--table tr td,
  .crs-landing--table tr td:has(a) {
    padding: 3px 15px;
  }
  .crs-landing--table td.date {
    font-size: 12px;
    color: #5b5b5b;
    font-weight: bold;
    text-transform: capitalize;
    grid-area: date;
    padding: 20px 20px 0;
  }
  .crs-landing--table td.date a {
    color: #5b5b5b;
    display: none;
  }
  .crs-landing--table td.date .date--mbl {
    display: inline-block;
  }
  .crs-landing--table td.embark {
    display: flex;
    align-items: center;
    gap: 8px;
    grid-area: route;
    font-size: 14px;
    padding: 0 20px 10px;
  }
  .crs-landing--table td.embark span {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .crs-landing--table td.region {
    grid-area: region;
    font-weight: bold;
    padding: 4px 20px 2px;
  }
  .crs-landing--table td.inside {
    grid-area: inside;
  }
  .crs-landing--table td.outside {
    grid-area: outside;
  }
  .crs-landing--table td.balcony {
    grid-area: balcony;
  }
  .crs-landing--table td.suite {
    grid-area: suite;
  }
  .crs-landing--table td.inside,
  .crs-landing--table td.outside,
  .crs-landing--table td.balcony,
  .crs-landing--table td.suite {
    text-align: center;
    padding: 10px 6px;
    border-top: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    font-size: 18px;
  }
  .crs-landing--table td.inside a,
  .crs-landing--table td.outside a,
  .crs-landing--table td.balcony a,
  .crs-landing--table td.suite a {
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .crs-landing--table td.inside span,
  .crs-landing--table td.outside span,
  .crs-landing--table td.balcony span,
  .crs-landing--table td.suite span {
    color: #343434;
    font-size: 12px;
    text-transform: capitalize;
    display: block;
  }
  .crs-landing--table td.suite {
    border-right: none;
  }
}

.crs-landing--table:has(+ .table-footer) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

.crs-landing--table-wrap .table-sort-mbl {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
  padding-left: 10px;
}

.crs-landing--table-wrap:has(> .crs-landing--table ~ .table-footer)
  .table-footer {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 45px;
  font-size: 14px;
  border-top: 1px solid #dbdbdb;
  background: #fff;
}
.crs-landing--table-wrap:has(> .crs-landing--table ~ .table-footer)
  .table-footer
  .row-toggle {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1023px) {
  .crs-landing--table-wrap:has(> .crs-landing--table ~ .table-footer)
    .table-footer {
    border-top: none;
    justify-content: space-between;
    font-size: 14px;
    padding: 0;
    box-shadow: none;
    background: transparent;
    min-height: auto;
  }
  .crs-landing--table-wrap:has(> .crs-landing--table ~ .table-footer)
    .table-footer
    .row-toggle {
    justify-content: center;
    width: 100%;
    height: 40px;
    padding: 10px 15px 10px 10px;
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
    font-size: 14px;
  }
  .crs-landing--table-wrap:has(> .crs-landing--table ~ .table-footer)
    .table-footer
    .extra-info {
    display: none;
  }
}

@media (max-width: 1023px) {
  .crs-landing--table-wrap:has(.crs-landing--table.is-expanded)
    .table-footer.is-sticky {
    position: sticky;
    bottom: 0;
    margin: 0 -20px;
  }
  .crs-landing--table-wrap:has(.crs-landing--table.is-expanded)
    .table-footer.is-sticky
    .row-toggle {
    border-radius: 0;
  }
}

table.is-collapsed tbody tr.row--collapsed {
  display: none;
}
