:root {
  --primary-color: #fd7f23;
  --gray: #a1a1a1;
  --grayDark: #666666;
  --grayLight: #cccccc;
  --grayLighter: #eee;
  --danger: #fb5d5d;
  --green: #5cb85c;
}
html {
  font-size: 12px;
}
body {
  font-size: 16px;
}
body a {
  color: inherit;
}

#sp-main-body:has(.page-content.page-cruises) {
  background-color: #eeeeee;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  font-size: 1.4rem;
  line-height: 1.6rem;
}
[disabled]:not([disabled="false"]) {
  cursor: default;
  pointer-events: none;
}
.btn-primary {
  color: #fff !important;
}
.loading,
.img-loading {
  overflow: hidden;
}
.img-loading {
  position: relative;
  background-color: var(--grayLighter);
}
.img-loading img {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body > .loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
}
.loading::before,
.img-loading::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 11;
}
.loading::after,
.img-loading::after {
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  content: "";
  display: block;
  position: absolute;
  border: 0.2rem solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  animation: spin 1s linear infinite;
  z-index: 12;
}
button.loading {
  position: relative;
  color: transparent;
}
button.loading::before {
  display: none;
}
.cruise-booking-app.loading::before {
  z-index: 100;
  position: fixed;
}
.cruise-booking-app.loading::after {
  z-index: 101;
}

/* modals */
.modal-center .modal-dialog {
  top: 50%;
  translate: 0 -50%;
}
.modal.modal-subscribe {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.modal-subscribe .modal-dialog {
  margin: 1.5rem auto;
  height: min(calc(100vh - 3rem), 77rem);
  width: min(calc(100vw - 3rem), 45rem);
}
.modal.modal-subscribe .modal-content,
.modal.modal-subscribe .modal-body {
  height: 100%;
  padding: 0;
}
.modal.modal-subscribe .modal-body iframe {
  border: none;
}
.modal .btn-close {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 1;
  cursor: pointer;
  display: flex;
  height: 2rem;
  width: 2rem;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-shadow: 0.1rem 0.1rem 0.3rem rgba(0, 0, 0, 0.3);
  font-size: 1rem;
}
.modal-open #exitBookingModal.modal.in {
  display: block !important;
}
#exitBookingModal .modal-content > .wrapper {
  display: flex;
  /* min-height: 40rem; */
  min-height: 30rem;
}

#exitBookingModal .modal-content > .wrapper .left {
  flex-basis: 45%;
  max-width: 45%;
  background-color: #f0f0f0;
  background-image: url("../../../../../../images/style/exit-booking-bg.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  overflow: hidden;
  flex-shrink: 0;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#exitBookingModal .modal-content > .wrapper .left > div {
  margin-bottom: 10rem;
  font-size: 3rem;
  line-height: 130%;
  display: none;
}
#exitBookingModal .modal-content > .wrapper .right {
  flex-basis: 55%;
  max-width: 55%;
}
#exitBookingModal .modal-content > .wrapper .right > .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3rem;
  overflow: hidden;
  height: calc(100% - 6rem);
  flex-shrink: 0;
}
#exitBookingModal
  .modal-content
  > .wrapper
  .right
  > .wrapper
  > div:first-child {
  display: none;
}
#exitBookingModal
  .modal-content
  > .wrapper
  .right
  > .wrapper
  > div:first-child {
  font-size: 3rem;
  line-height: 130%;
}
#exitBookingModal .modal-content > .wrapper .right .buttons {
  padding: 3rem 0;
  max-width: 100%;
  margin-top: 8rem;
}
#exitBookingModal .modal-content > .wrapper .right .buttons button {
  width: 100%;
  margin: 0.75rem auto;
  padding: 0.75rem 1.5rem;
}
.page-cruises {
  padding: 3rem 0;
  margin-bottom: 3rem;
}
.slick-slider .slick-next,
.slick-slider .slick-prev {
  font-size: 0;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0.5rem;
  z-index: 1;
  color: #fff;
  opacity: 0;
  cursor: pointer;
}
.slick-slider .slick-next {
  right: 0.5rem;
  left: auto;
}
.slick-slider .slick-next::before,
.slick-slider .slick-prev::before {
  content: "\f053";
  font-family: FontAwesome;
  font-size: 2rem;
}

.slick-slider .slick-next::before {
  content: "\f054";
}
.slick-slider:hover .slick-next,
.slick-slider:hover .slick-prev {
  opacity: 1;
}
#appBooking .btn,
#appBooking .sppb-btn {
  padding: 0.8rem 2.8rem;
  margin-right: 0.3rem;
}
/* gallery, modal */
body.show-v-modal {
  overflow: hidden;
}
.ImageGallery,
.v-modal {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  /* justify-content: center;
  align-items: center; */
  z-index: 1045;
  overflow-y: auto;
  max-height: calc(100vh - 3rem);
}
.ImageGallery .overlay,
.v-modal .overlay {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  z-index: -1;
}
.ImageGallery > .wrapper,
.v-modal > .wrapper {
  margin: auto;
  width: 800px;
  max-width: 100%;
  position: relative;
  background-color: #fff;
  padding: 2rem;
}
.modal-confirm > .wrapper {
  width: 500px;
}
.v-modal > .wrapper .buttons {
  margin-bottom: 0;
}
.v-modal > .wrapper .buttons .btn {
  margin: 0 1rem;
}
.v-modal.v-modal-large > .wrapper {
  width: 1000px;
}
.ImageGallery .gallery-footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}
.ImageGallery .gallery-body {
  padding-top: 56.25%;
  position: relative;
}
.ImageGallery .gallery-body .gallery-item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ImageGallery .gallery-body .gallery-item img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ImageGallery .gallery-footer {
  position: relative;
}
.ImageGallery .gallery-footer ul {
  margin: 0 -0.75rem;
}
.ImageGallery .gallery-footer li {
  flex: 0 0 16.6666%;
  padding: 1rem 0.75rem;
}
.ImageGallery .gallery-footer li > div {
  padding-top: 56.25%;
  position: relative;
}
.ImageGallery .gallery-footer li.active > div::after {
  content: "";
  width: 100%;
  margin-top: 0.5rem;
  border-bottom: solid 0.2rem var(--blue);
  display: block;
  position: absolute;
}
.ImageGallery .gallery-footer li > div > img {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ImageGallery .gallery-close,
.v-modal .close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background-color: transparent;
  font-size: 2rem;
  border: none;
  color: #999;
}
.ImageGallery .gallery-close:focus {
  outline: none;
}
.ModalContent button.close {
  top: 1rem;
}
.ModalContent > .wrapper {
  padding-top: 4rem;
}
.ImageGallery .gallery-prev {
  position: absolute;
  left: 2rem;
  top: 50%;
  translate: 0 -50%;
  background-color: transparent;
  z-index: 10;
}

.ImageGallery .gallery-next {
  position: absolute;
  right: 2rem;
  top: 50%;
  translate: 0 -50%;
  background-color: transparent;
  z-index: 10;
}
.ImageGallery .gallery-body .gallery-prev,
.ImageGallery .gallery-body .gallery-next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.ImageGallery .gallery-body .gallery-prev:hover,
.ImageGallery .gallery-body .gallery-next:hover {
  opacity: 1;
}
.ImageGallery .gallery-header {
  text-align: center;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}
.fade-enter-active {
  z-index: 0;
}
.fade-leave-active {
  z-index: 1;
}
.fade-enter,
.fade-leave-to {
  opacity: 0;
  z-index: 1;
}
/* gallery - end */
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
  }
}
@media (max-width: 767px) {
  #exitBookingModal .modal-content > .wrapper .left {
    padding: 1.5rem;
  }
  #exitBookingModal .modal-content > .wrapper .right > .wrapper {
    margin: 1.5rem;
  }
  #exitBookingModal .modal-content > .wrapper .left > div {
    font-size: 2rem;
  }
  #exitBookingModal
    .modal-content
    > .wrapper
    .right
    > .wrapper
    > div:first-child {
    font-size: 2rem;
  }
  #exitBookingModal .modal-content > .wrapper .right .buttons button {
    padding: 0.75rem 1rem;
  }
}
@media (max-width: 375px) {
  #exitBookingModal .modal-content > .wrapper {
    flex-direction: column;
  }
  #exitBookingModal .modal-content > .wrapper .left,
  #exitBookingModal .modal-content > .wrapper .right {
    max-width: none;
    flex-basis: 100%;
  }
  #exitBookingModal .modal-content > .wrapper .left > div {
    margin-bottom: 7rem;
    margin-top: 5rem;
  }
  #exitBookingModal .modal-content > .wrapper .left br {
    display: none;
  }
}

/* filter cruise */
.filter-section .filter-cruise.module-filter-cruise {
  position: absolute;
  top: -200px;
  max-width: 100%;
}
.dropdown-content {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem;
  border: solid 0.1rem #e7e7e7;
  box-shadow: 0 1rem 1.5rem -5px rgba(0, 0, 0, 0.4);
  display: none;
}

.dropdown-content.show {
  display: block;
}
.dropdown-content li {
  cursor: pointer;
  padding: 0.7rem 0;
  color: var(--grayDark);
}
.dropdown-content li:hover {
  color: var(--cyan);
}
.dropdown-content li span {
  margin-right: 0.7rem;
}
.dropdown-content li[multi-value] {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.dropdown-content li[multi-value]::before {
  flex-grow: 0;
  flex-shrink: 0;
  display: block;
  content: "";
  font-family: "Font Awesome 5 Free";
  margin: 0 0.7rem 0 0;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.2rem;
  border: solid 0.1rem var(--gray);
}

.dropdown-content li[multi-value].selected::before {
  content: "\f14a";
  font-size: 1.5rem;
  line-height: 1.5rem;
  border-color: transparent;
  color: var(--blue);
}

[move-before],
[move-after],
[move-inner] {
  display: none;
}
.dropdown-right + .dropdown-content {
  left: auto;
  right: 0;
}
.dropdown-center + .dropdown-content {
  translate: -50% 0;
  margin-left: 50%;
}

.find-a-cruise .dropdown-content a {
  display: block;
}
.dropdown-item .fas.fa-ship::before {
  content: url("../images/cruise-ship-icon.svg");
}
#sp-page-builder .page-content .sppb-section.banner-search {
  z-index: 2;
}
#filter-cruise {
  position: absolute !important;
  bottom: 0;
}
/* .filter-cruise .wrapper {
  opacity: 0;
  transition: opacity 0.5s;
}
.slideshow:hover .filter-cruise .wrapper,
.filter-cruise.focus .wrapper {
  opacity: 1;
} */
.filter-cruise h3.title {
  margin: 0;
  position: relative;
  z-index: -1;
  font-size: 1.5rem;
}
.filter-cruise h3.title > span {
  background-color: var(--primary-color);
  display: inline-block;
  color: #fff;
  padding: 0.75rem 3rem;
  position: relative;
}
.filter-cruise h3.title > span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4rem 0 0 2rem;
  border-color: transparent transparent transparent #fd7f23;
  top: 0;
  right: -2rem;
}
.filter-cruise .wrapper {
  background-color: #ffffff;
  box-shadow: 3px 3px 5px 0px rgb(0 0 0 / 30%);
  padding: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
}
.filter-cruise .wrapper input,
.filter-cruise .wrapper input[readonly] {
  border: solid 0.1rem transparent;
  width: auto;
  max-width: 100%;
  min-width: 80px;
  background-color: transparent;
  cursor: default;
  text-overflow: ellipsis;
}
.filter-cruise .wrapper [ajax-dropdown] input {
  border: none;
}
.filter-cruise .wrapper input.search {
  border-color: #e0e0e0;
  width: 100%;
  padding: 0.5em 1rem;
}
.filter-cruise .wrapper input.search:focus {
  border-color: var(--grayDark);
}
.filter-cruise .wrapper > label {
  display: flex;
  align-items: flex-start;
  position: relative;
  border: 0.7px solid #898888;
  margin-right: 1rem;
  margin-bottom: 0;
  min-height: 3.2rem;
  align-items: stretch;
}
.filter-cruise .wrapper > * {
  flex: 0 0 15%;
  max-width: min(19rem, 19%);
  min-width: 0;
}

.filter-cruise .wrapper > button {
  width: auto;
  flex-basis: auto;
  flex-grow: 1;
  font-size: 1.4rem;
  padding: 0.46rem 2rem;
}
.filter-cruise .wrapper > label > *:first-child {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
  margin-right: 1rem;
}
.filter-cruise .wrapper > label > *:nth-child(2) {
  flex-grow: 1;
  max-width: calc(100% - 4rem);
  display: flex;
}
.filter-cruise .wrapper > label > *:nth-child(2) > *:first-child {
  font-weight: 600;
  color: var(--blue);
  display: none;
}
.filter-cruise button {
  padding: 1rem 3rem;
}
.filter-cruise .dropdown-content {
  min-width: min(35rem, calc(100vw - 4rem));
  padding: 1.5rem 0 !important;
  z-index: 1;
}

.filter-cruise .dropdown-content .dropdown-body ul {
  max-height: 20rem;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 2rem;
}
.filter-cruise .dropdown-content .dropdown-header {
  padding: 0.7rem 2rem;
}
.filter-cruise .dropdown-content .footer {
  display: flex;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: solid 0.1rem #e0e0e0;
}
.filter-cruise .dropdown-content .footer .inner {
  margin: auto;
  min-width: 30rem;
  max-width: 100%;
  display: flex;
}
.filter-cruise .dropdown-content .footer > *:not(.inner),
.filter-cruise .dropdown-content .footer .inner > * {
  flex: 0 0 30%;
}
.filter-cruise .dropdown-content .footer > *:not(.inner):nth-child(2),
.filter-cruise .dropdown-content .footer .inner > *:nth-child(2) {
  flex: 0 0 40%;
}

#filter-cruise {
  width: 100%;
}
.filter-cruise-options {
  padding: 1rem 0;
}
.filter-cruise-options .container {
  position: relative;
}
.filter-cruise-options .wrapper {
  max-width: none;
  display: block;
}
.filter-cruise-options .sppb-close {
  position: absolute;
  right: 3rem;
  top: 2rem;
}
.filter-cruise-options .wrapper .inner {
  border: solid 1px var(--blue);
  background-color: var(--grayLighter);
  padding: 3rem;
  border-radius: 1.5rem;
  margin-bottom: 3rem;
}
.filtes-options .filter-row:first-child {
  margin-top: 0rem;
}
.filtes-options .filter-row {
  display: flex;
  border-bottom: solid 0.1rem var(--grayLight);
  padding: 1rem 0;
  margin: 1rem 0;
}

.filtes-options .filter-row .filter-label {
  flex-basis: 18rem;
  flex-shrink: 0;
  font-weight: bold;
  color: var(--blue);
}
.filtes-options .filter-row .filter-options {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: flex-start;
}
.filtes-options .filter-row .filter-options .filter-option {
  margin: 0.75rem 1.5rem;
  display: flex;
}
.filtes-options .filter-row .filter-options .filter-option input {
  margin: -0.1rem 0.75rem 0 0;
}
.filtes-options .filter-row > .btn-view-more {
  margin: 0 0 auto auto;
  padding: 0.5rem 1rem;
  border: solid 0.1rem var(--grayLight);
  min-width: 8rem;
  display: none;
}
.filtes-options .filter-row > .btn-view-more::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 0.75rem;
  transition: rotate 0.5s;
}
.filtes-options .filter-row.show-less > .btn-view-more::after {
  rotate: 180deg;
}
.filtes-options .filter-option {
  min-width: 15rem;
}
.filtes-options .filter-ships .filter-option {
  min-width: 20rem;
}
.filtes-options .filter-ports .filter-option {
  min-width: 24rem;
}
.filtes-options .filter-days .filter-option,
.filtes-options .filter-months .filter-option {
  min-width: 10rem;
}
.filter-cruise .wrapper > label.dropdown-dates {
  position: static;
}
.filter-cruise .dropdown-dates .dropdown-content {
  max-width: calc(100vw - 2rem);
  padding: 2rem !important;
  margin-top: 0;
}
.filter-cruise .dropdown-dates .dropdown-content > .inner {
  display: flex;
}
.filter-cruise .dropdown-dates .dropdown-content ul:first-child {
  flex: 0 0 80%;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(8, 1fr);
}
.filter-cruise .dropdown-dates .dropdown-content ul li {
  margin: 0;
  padding: 0;
  min-width: 0;
}
.filter-cruise .dropdown-dates .dropdown-content ul li label {
  margin: 0;
  padding: 0.5rem 1rem;
  display: block;
}
.filter-cruise .dropdown-dates .dropdown-content ul li input {
  display: none;
}

.filter-cruise .dropdown-dates .dropdown-content ul:last-child {
  display: block;
  flex-basis: 20%;
  margin: 0;
  padding: 0;
}
.filter-cruise .dropdown-dates .dropdown-content ul:last-child li {
  flex-basis: 100%;
}
.filter-cruise .dropdown-item label > input + span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.filter-cruise .dropdown-item label > input.year + span {
  font-weight: bold;
}
.filter-cruise .dropdown-item label > input + span::before {
  flex-grow: 0;
  flex-shrink: 0;
  display: block;
  content: "";
  font-family: "Font Awesome 5 Free";
  margin: 0 0.7rem 0 0;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.2rem;
  border: solid 0.1rem var(--gray);
}
.filter-cruise .dropdown-item label > input:checked + span::before {
  content: "\f14a";
  font-size: 1.5rem;
  line-height: 1.5rem;
  border-color: transparent;
  color: var(--blue);
}
.filter-cruise .dropdown-item:focus,
.filter-cruise .dropdown-item:hover,
.filter-cruise .dropdown-item.active,
.filter-cruise .dropdown-item:active {
  background-color: unset;
}
.filter-cruise .dropdown-dates .dropdown-content ul li [ignore],
.filter-cruise .dropdown-dates .dropdown-content ul li [ignore] + span {
  opacity: 0.3;
}
.item-bottom .flight-price .price-box .price-text {
  font-size: 2.8rem;
  font-weight: bold;
}
.item-bottom .flight-price .price-box .price-text .upto {
  font-size: 1.5rem;
}
.image {
  position: relative;
}
.image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.image[ratio="16x9"]::before {
  padding-top: 56.25%;
}
.cruisesearch .nav {
  display: flex;
  justify-content: flex-start;
  border-bottom: none;
}
.cruisesearch .nav li:not(:last-child) {
  margin-right: 0.2rem;
}
.cruisesearch .nav li:first-child a {
  border-top-left-radius: 1rem;
}
.cruisesearch .nav li:last-child a {
  border-top-right-radius: 1rem;
}
.cruisesearch .nav li a {
  padding: 0.75rem 1.5rem;
  display: block;
  background-color: #fd7f23;
  color: #ffffff;
}
.cruisesearch .nav li a.active {
  background-color: #ffffff;
  color: #333333;
}
.tab-content .filter-cruise .wrapper,
.home-search-module.cruisesearch .home-search-inputs {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}

.home-search-inputs .inputs .home-search-button {
  border-radius: 0.4rem;
  min-width: 100px;
}
.filter-section .search-tabs .filter-cruise.module-filter-cruise {
  position: static;
  top: auto;
}
.filter-section .search-tabs .filter-cruise.module-filter-cruise h3.title {
  display: none;
}
.search-tabs .filter-cruise .wrapper {
  background-color: transparent;
  box-shadow: none;
  position: relative;
}
.search-tabs .home-search-module.cruisesearch {
  width: 100%;
}
.search-tabs .filter-cruise .wrapper > button {
  border-radius: 0;
}
@media (max-width: 900px) and (min-width: 821px) {
  .slick-items-disable .item {
    width: 33.3% !important;
  }
}
@media (max-width: 991px) {
  .filter-cruise .dropdown-dates .dropdown-content > .inner {
    display: block;
  }
  .filter-cruise .dropdown-dates .dropdown-content ul:last-child {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: revert;
    margin-top: 1rem;
  }
}
@media (max-width: 820px) {
  .item-bottom .airlines-date .cruise-item-logo {
    width: 80px !important;
  }
  .filter-cruise .wrapper > label:nth-child(3) > .dropdown-content {
    translate: -50% 0;
    margin-left: 50%;
  }
  .filter-cruise .wrapper > button {
    padding: 0.46rem 1rem;
  }
  .filter-cruise .wrapper > label {
    margin-right: 8px;
  }
  .filter-cruise .wrapper > label > *:first-child {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 768px) {
  .filter-cruise .wrapper > label > *:nth-child(2) {
    font-size: 1.2rem;
    line-height: 140%;
  }
  .filter-cruise .dropdown-dates .dropdown-content ul:first-child {
    grid-template-rows: unset;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: unset;
  }
}
@media (max-width: 767px) {
  .filter-section .filter-cruise {
    position: relative;
    top: auto;
  }
  .filter-section .filter-cruise .wrapper {
    flex-wrap: wrap;
    background-color: transparent;
    box-shadow: none;
    padding: 1.5rem;
  }
  .filter-cruise .wrapper > label {
    flex-basis: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    background-color: #ffffff;
  }
  .filter-cruise .wrapper > button {
    flex-basis: 100%;
    max-width: 100%;
  }
  .filter-cruise .dropdown-dates .dropdown-content ul:last-child {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-cruise .wrapper > label.dropdown-dates {
    position: relative;
  }
  .cruisesearch .nav li:first-child a {
    border-top-left-radius: 0;
  }
  .filter-cruise .dropdown-dates .dropdown-content,
  .filter-cruise .dropdown-content {
    /* min-width: calc(100vw - 30px); */
    /* margin-left: -2rem; */
    margin-top: 0.5rem;
  }

  .home-search-module.cruisesearch .tab-content .home-search-inputs {
    background-color: transparent;
    box-shadow: none;
    padding: 1.5rem 0;
  }
  .search-tabs
    .home-search-module.cruisesearch
    .home-search-inputs
    .inputs
    .d-input,
  .search-tabs
    .home-search-module.cruisesearch
    .home-search-inputs
    .inputs
    .input,
  .home-search-module.cruisesearch
    .tab-content
    .home-search-inputs
    .inputs
    .d-input,
  .home-search-module.cruisesearch
    .tab-content
    .home-search-inputs
    .inputs
    .input {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .search-tabs .sppb-nav-tabs-content {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/* filters - end */
#appBooking button.btn.btn-previous {
  background-color: #f0f0f0;
}
