html {
  font-size: 12px;
}
.com-cruise.view-reservation {
  margin-bottom: 3rem;
  font-size: 16px;
  font-family:
    "Helvetica Neue", "Libre Franklin", "Microsoft JhengHei", Arial, sans-serif !important;
}
.cruise-booking-app .price {
  font-size: unset;
  font-weight: unset;
}
.cruise-booking-app select,
.cruise-booking-app textarea,
.cruise-booking-app input[type="text"],
.cruise-booking-app input[type="password"],
.cruise-booking-app input[type="datetime"],
.cruise-booking-app input[type="datetime-local"],
.cruise-booking-app input[type="date"],
.cruise-booking-app input[type="month"],
.cruise-booking-app input[type="time"],
.cruise-booking-app input[type="week"],
.cruise-booking-app input[type="number"],
.cruise-booking-app input[type="email"],
.cruise-booking-app input[type="url"],
.cruise-booking-app input[type="search"],
.cruise-booking-app input[type="tel"],
.cruise-booking-app input[type="color"],
.cruise-booking-app .uneditable-input,
.cruise-booking-app input[type="text"]:not(.form-control),
.cruise-booking-app input[type="email"]:not(.form-control),
.cruise-booking-app input[type="url"]:not(.form-control),
.cruise-booking-app input[type="date"]:not(.form-control),
.cruise-booking-app input[type="password"]:not(.form-control),
.cruise-booking-app input[type="search"]:not(.form-control),
.cruise-booking-app input[type="tel"]:not(.form-control),
.cruise-booking-app input[type="number"]:not(.form-control),
.cruise-booking-app select:not(.form-select):not(.form-control) {
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.cruise-booking-app .h4,
.cruise-booking-app .h5,
.cruise-booking-app .h6,
.cruise-booking-app h1,
.cruise-booking-app h2,
.cruise-booking-app h3,
.cruise-booking-app h4,
.cruise-booking-app h5,
.cruise-booking-app h6 {
  margin-bottom: 10px;
  font-weight: 500;
}
.input-checkbox {
  cursor: pointer;
}
.input-checkbox::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0c8";
  margin-right: 1rem;
  color: var(--grayLight);
}
.input-checkbox.checked::before {
  content: "\f14a";
  color: var(--primary-color);
}
.cruise-booking-app .buttons {
  margin: 3rem auto;
}
.cursor-pointer,
.pointer {
  cursor: pointer;
}
.cursor-pointer[disabled],
.pointer[disabled] {
  pointer-events: none;
  opacity: 0.2;
}
.cruise-booking-app .number-of-guest.items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  width: 100%;
}
.cruise-booking-app .number-of-guest.items .item {
  width: 50%;
  max-width: 55rem;
}
.number-of-guest.items .item .wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 20rem;
  flex-direction: column;
  padding: 3rem;
}
.number-of-guest .room-quantity {
  display: flex;
  width: 100%;
}
.cruise-booking-app .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  /* max-width: 100rem; */
  width: 100%;
}
.cruise-booking-app .select-room-category .items,
.cruise-booking-app .select-room-type .items {
  align-items: unset;
}
.cruise-booking-app .items .item {
  width: 33.33%;
}
.cruise-booking-app .items .item .wrapper {
  margin: 1.5rem;
  border: solid 0.1rem var(--grayLighter);
  border-radius: 0.3rem;
  overflow: hidden;
}
.cruise-booking-app .select-room-category .item .wrapper,
.cruise-booking-app .select-room-type .item .wrapper {
  height: calc(100% - 3rem);
}
.cruise-booking-app .items .item.selected .wrapper {
  border-color: var(--primary-color);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
.cruise-booking-app .items .item .image {
  position: relative;
}
.cruise-booking-app .items .item .image::before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}

.cruise-booking-app .items .item .image > img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
.app-body .item.unavailable > .wrapper > .desc {
  opacity: 1;
}
.RoomCategory .item.unavailable .wrapper button.btn,
.RoomCategory .item.unavailable .wrapper:hover button.btn {
  /* opacity: 1; */
  background-color: #b9dab2;
}
.app-nav-top {
  background-size: cover;
  background-position: center;
}
.app-nav-top .wrapper {
  display: flex;
  color: #fff;
  padding: 1.5rem;
}
.app-nav-top .wrapper > div,
.app-nav-top .wrapper .ship-info-right > div,
.app-nav-top .wrapper .ship-date > div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
}
.app-nav-top .wrapper .ship-logo {
  flex-basis: min(30%, 250px);
  align-items: flex-start;
  padding: 0 1.5rem;
}
.app-nav-top .wrapper .ship-logo img {
  max-width: 20rem;
  max-height: 8rem;
  margin: auto;
}
.app-nav-top .wrapper .ship-info {
  flex-basis: calc(100% - min(30%, 250px) - min(30%, 250px));
  flex-grow: 1;
  margin-right: 1.5rem;
}
.app-nav-top .wrapper .ship-info h2 {
  text-align: center;
  font-size: 2.5rem;
}
.app-nav-top .wrapper .ship-info-right {
  flex-basis: min(30%, 250px);
  flex-direction: row;
  justify-content: space-between;
}
.app-nav-top .wrapper .ship-info-right .ship-date {
  flex-direction: row;
}
.app-nav-top .wrapper .ship-info-right .ship-date > div:nth-child(2) {
  padding: 2rem;
}
.app-nav-middle {
  background-color: #1d202a;
  color: #fff;
}
.app-nav-middle .wrapper {
  display: flex;
}
.app-nav-middle .wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.app-nav-middle .wrapper .app-prev a,
.app-nav-middle .wrapper .app-prev button {
  background-color: transparent;
  font-size: 1.3rem;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0.75rem;
  box-shadow: none;
}
.app-nav-middle .wrapper .app-prev button span {
  font-size: 3rem;
}
.app-nav-middle .wrapper .app-prev a:disabled,
.app-nav-middle .wrapper .app-prev button:disabled {
  opacity: 0.1;
}
.app-nav-middle .wrapper .app-prev a:hover,
.app-nav-middle .wrapper .app-prev button:hover {
  color: rgba(255, 255, 255, 0.5);
}
.app-nav-middle .wrapper .app-steps {
  flex-grow: 1;
  justify-content: flex-start;
}
.app-nav-middle .app-steps ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  min-height: 6.5rem;
}
.app-nav-middle .app-steps li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0 0 8rem;
  flex-grow: 1;
}
.ap .app-nav-middle .app-steps li.active {
  z-index: 1;
}
.app-nav-middle .app-steps li::after {
  content: "";
  display: block;
  position: absolute;
  width: 5rem;
  height: 12rem;
  background-color: #1d202a;
  right: 0;
  top: 0;
  rotate: -45deg;
  transform-origin: top right;
  border-right: solid 1px rgba(255, 255, 255, 0.3);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin-right: -1px;
}

.app-nav-middle .app-steps li::before {
  content: "";
  display: block;
  position: absolute;
  width: 12rem;
  height: 12rem;
  background-color: #1d202a;
  left: 0;
  top: 0;
  rotate: -45deg;
  transform-origin: top left;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}
.app-nav-middle .app-steps li:first-child {
  padding-left: 2.5rem;
}
.app-nav-middle .app-steps li:last-child {
  padding-right: 2.5rem;
}
.app-nav-middle .app-steps li:first-child::before,
.app-nav-middle .app-steps li:last-child::after {
  rotate: unset;
  margin: auto;
  border-top: none;
}
.app-nav-middle .app-steps li.active .step-inner,
.app-nav-middle .app-steps li.active::before,
.app-nav-middle .app-steps li.active::after {
  background-color: var(--primary-color);
}
.app-nav-middle .app-steps .step-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  width: 100%;
}
.app-nav-middle .app-steps .step-inner > :first-child {
  display: inline-block;
  margin-right: 1rem;
}
.app-nav-middle .trip-subtotals {
  padding-left: 1rem;
  font-size: 1.2rem;
}
.app-nav-middle .trip-subtotals .dropdown-menu {
  width: 300px;
  color: #333;
  padding: 1.5rem;
  right: 0;
  left: auto;
}
.app-nav-middle .trip-subtotals .dropdown-menu > h4 {
  margin: 1.5rem -1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #e7e7e7;
}
.app-nav-middle .trip-subtotals .dropdown-menu > h4:first-child {
  margin-top: -1.5rem;
}
.app-nav-middle .trip-subtotals .dropdown-menu > div {
  display: flex;
  justify-content: space-between;
}
.app-nav-middle .trip-subtotals .dropdown-menu > div > :first-child {
  font-weight: 600;
  font-size: 0.8em;
}
.app-nav-middle .trip-subtotals .dropdown-menu .subtotal {
  border-top: dotted 0.1rem var(--grayLight);
  margin-top: 0.75rem;
}
.app-nav-middle .trip-subtotals .dropdown-menu .trip-subtotal {
  border-top: dotted 0.1rem var(--grayLight);
  font-size: 1.6rem;
  padding: 0.5rem 1.5rem;
  margin: 1.5rem -1.5rem 0;
}
.app-nav-middle .dropdown .app-nav-middle .price {
  display: flex;
  padding-left: 1rem;
}
.app-nav-middle .price > div {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  line-height: 140%;
  padding: 0.75rem 2rem;
}
.app-nav-middle .price > div:first-child > span:last-child {
  font-size: 0.9rem;
}
.app-nav-bottom .wrapper {
  display: flex;
  justify-content: space-between;
}
.app-nav-bottom ul.sub-steps {
  display: flex;
  list-style: none;
  border-bottom: solid 0.1rem var(--grayLight);
  padding: 0;
  margin: 0;
  position: relative;
  flex: 1;
}
.app-nav-bottom ul.sub-steps > li:first-child:before {
  content: "#";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  margin-top: -1px;
}
.app-nav-bottom .sub-steps .step-inner > :first-child {
  display: none;
  margin-right: 1rem;
}
.app-nav-bottom .sub-steps li {
  padding: 1rem 3rem;
  position: reative;
  color: #999;
  position: relative;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.app-nav-bottom .sub-steps li.active {
  color: #000;
}
.app-nav-bottom .sub-steps li:first-child {
  padding-left: 1.5rem;
}
.app-nav-bottom .sub-steps li:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.app-nav-bottom .user-rooms {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1rem;
  border-bottom: solid 0.1rem var(--grayLight);
}
.app-nav-bottom .user-rooms li {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 12rem;
  padding: 0 0.75rem;
  justify-content: center;
}
.app-nav-bottom .user-rooms li.active {
  border-bottom: solid 0.3rem var(--primary-color);
}
.app-nav-bottom .user-rooms li > :first-child {
  font-weight: 500;
}
.app-nav-bottom .user-rooms:not(.room-numbers) li > :last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 1rem;
  line-height: 1.2rem;
  margin-bottom: 0.7rem;
}
.app-nav-bottom .user-rooms.room-numbers {
  font-size: 1rem;
  line-height: 1.4rem;
}
.app-body {
  padding-top: 3rem;
}
.app-body > .container > .wrapper {
  position: relative;
}
.app-body > .container > .wrapper > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  min-height: 40rem;
  /* text-align: center; */
}
.app-body .RoomQuantity .room-warning {
  display: none;
}

.input-increase {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 3rem auto;
}
.number-of-children.input-increase > label {
  text-align: center;
}
.number-of-children.input-increase > label > span {
  display: block;
  font-size: 1rem;
  line-height: 100%;
}
.input-increase input {
  text-align: center;
}
.input-increase .input-group {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 18rem;
  margin: 0 auto;
  font-weight: 500;
}
.input-increase .input-group-addon {
  background-color: transparent;
  border: none;
  font-size: 4rem;
  padding: 0 2rem;
}
.input-increase .input-group > * {
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-increase input {
  border: none;
  box-shadow: none;
  font-size: 5rem !important;
  line-height: 5rem !important;
  height: 6rem;
  padding: 0;
}
.app-body .btn {
  padding: 1rem 2rem;
}
.app-body .item > .wrapper > .desc {
  padding: 1.5rem;
}
.app-body .item .desc {
  margin-bottom: 1.5rem;
}
.app-body .item .desc.unavailable-message {
  color: var(--danger);
}
.app-body .item.unavailable .desc h3 {
  text-align: center;
}
.app-body .item .desc.sold-out-message {
  text-align: center;
  font-size: 2rem;
  padding-top: 2rem;
}
.app-body .item .desc h3 {
  margin: 0 0 1.5rem 0;
  font-size: 2rem;
  font-weight: bold;
}
.app-body .item .desc h3 .guarantee-alert {
  color: var(--primary-color);
  display: inline-block;
  border-bottom: solid 0.1rem var(--primary-color);
}
.app-body .item .desc h3 .guarantee-alert::after {
  content: "\f05a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.app-body .item .desc ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.app-body .item .desc .price {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: 0;
  align-items: flex-start;
}
.app-body .item .desc .price {
  font-size: unset;
  font-weight: unset;
}
.app-body .item .desc .price span:nth-child(2) {
  font-size: 2rem;
  font-weight: 500;
}
.app-body .item .desc ul li {
  position: relative;
  padding-left: 2rem;
}
.app-body .item .desc ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: block;
  position: absolute;
  left: 0;
  font-size: 1rem;
}
.app-body h2.title {
  margin: 2rem 0 3rem;
}
.app-body h2.title + .subtitle {
  margin: -1.5rem auto 1.5rem;
}
.view-booking #sp-main-body {
  padding-top: 0;
  background-color: #fff;
}
.page-booking {
  min-height: 20rem;
}
.page-booking.loading::before {
  background-color: transparent;
}
.wheelchair .fa {
  margin-right: 0.75rem;
}
.room-offer {
  margin-top: 1rem;
  color: var(--primary-color);
  display: none;
}
.room-offer .fa {
  margin-left: 1rem;
}
.image .view-gallery,
.room-info .view-gallery {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  background-color: #fff;
  text-shadow: none;
  color: #333;
  border-radius: 0.4rem;
  padding: 0rem 1rem;
  box-shadow: 0 0.2rem 0.3rem 0 rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
}
.image .view-gallery:hover,
.room-info .view-gallery:hover {
  background-color: var(--primary-color);
  color: #fff;
}
.image .view-gallery .fa,
.room-info .view-gallery .fa {
  margin-right: 0.75rem;
}
.image .view-gallery span:last-child,
.room-info .view-gallery span:last-child {
  font-size: 1rem;
  line-height: 200%;
}
.RoomCategory .item .wrapper {
  position: relative;
}
.RoomCategory .buttons {
  position: absolute;
  bottom: 0.75rem;
  right: 0;
  margin: 0;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity 0.5s;
}
.RoomCategory .item .wrapper:hover .buttons {
  opacity: 1;
}

.RoomChoose .room-body {
  display: flex;
  width: 100%;
}
.RoomChoose .room-body > .room-left {
  flex-basis: calc(45% - 3rem);
  padding-right: 3rem;
}
.RoomChoose .room-body > .room-right {
  flex-basis: 55%;
}
.RoomChoose .room-body > .room-right .room-list {
  max-height: 75rem;
  overflow-y: auto;
}

.RoomChoose .deck-locations {
  display: flex;
}
.RoomChoose .deck-locations > div {
  flex-grow: 1;
  text-align: center;
  background-color: #fff;
  border: solid 0.1rem var(--grayDark);
  padding: 0.75rem 1.5rem;
}
.RoomChoose .deck-locations > div:not(:last-child) {
  border-right: none;
}
.RoomChoose .deck-locations > div.active {
  background-color: var(--primary-color);
  color: #fff;
}
.RoomChoose .all-rooms .view-location {
  color: #fff;
  text-decoration: underline;
  margin: -1.5rem auto 1.5rem;
  font-size: 1rem;
}
.RoomChoose .room-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 35rem;
  color: #fff;
  text-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.4);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}
.RoomChoose .room-info::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.RoomChoose .room-info > * {
  z-index: 1;
}
.RoomChoose .room-info > h3 {
  margin: 4rem auto 1.5rem;
  padding: 0 1.5rem;
  font-size: 2rem;
  text-align: center;
}
.RoomChoose .room-info .change-room-category {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  display: none;
}
.RoomChoose .room-number {
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  text-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.RoomChoose .room-number > :nth-child(1) {
  color: var(--gray);
}
.RoomChoose .room-number > :nth-child(2) {
  font-size: 2rem;
  font-weight: 500;
}
.RoomChoose .room-area {
  margin: 0.5em auto;
}
.RoomChoose .deck-location {
  margin: 0.75em auto;
}
.RoomChoose .room-price {
  margin: 0.75em auto;
}
.RoomChoose .all-rooms .room-price {
  font-size: 3rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.RoomChoose .buttons {
  margin-top: 1.5rem;
}
.RoomChoose .room-list .room-item {
  border-bottom: solid 0.1rem var(--grayLight);
  padding: 1.5rem 1.5rem 1.5rem 4rem;
  position: relative;
}
.RoomChoose .room-list .room-item::before {
  content: "";
  display: block;
  height: 2rem;
  width: 2rem;
  border: solid 0.1rem var(--grayLight);
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1rem;
  border-radius: 0.3rem;
}

.RoomChoose .room-list .room-item:first-child {
  border-top: solid 0.1rem var(--grayLight);
}
.RoomChoose .room-list .room-item h4 {
  margin-top: 0;
}
.RoomChoose .room-list .room-item .room-desc {
  display: flex;
  justify-content: space-between;
}
.RoomChoose .room-list .room-item .room-desc .left > div {
  display: flex;
}
.RoomChoose .room-list .room-item .room-desc .left > div:last-child {
  display: none;
}
.RoomChoose .room-list .room-item .room-desc .left > :first-child::before,
.RoomChoose .room-list .room-item .room-desc .left > :last-child::before {
  content: "";
  background-image: url(../../../../../../images/icons/map-marker-alt.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 0.75rem;
  width: 1.5rem;
}

.RoomChoose .room-list .room-item .room-desc .left > :last-child::before {
  background-image: url(../../../../../../images/icons/floorPlan.svg);
}
.RoomChoose .room-list .room-item .room-desc .price {
  text-align: right;
}
.RoomChoose .room-list .room-item .room-desc .price > :first-child {
  font-weight: 500;
  font-size: 1.6rem;
}
.RoomChoose .room-nav {
  display: flex;
  justify-content: space-between;
}
.RoomChoose .room-nav .sort-rooms {
  display: none;
}
.RoomChoose .room-nav div:first-child {
  margin-left: 0;
  margin-right: auto;
  min-width: 15rem;
}
.RoomChoose .user-room-items {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}
.RoomChoose .user-room-items .user-room-item {
  width: 30%;
  max-width: 40rem;
  padding: 1.5rem;
}
.RoomChoose .user-room-items .room-guests-detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.RoomChoose .user-room-item .room-info {
  min-height: auto;
}
.RoomChoose .all-rooms .user-room-item .room-info {
  height: calc(100% - 3rem);
}
.RoomChoose .user-room-items .buttons {
  margin-bottom: 1rem;
  margin-top: auto;
}
.RoomChoose .user-room-items .buttons button {
  padding: 0.75rem 1.5rem;
  color: #fff;
  font-size: 1rem;
}
.none-search-select .vs__selected {
  position: relative !important;
}
.none-search-select .vs__search {
  position: absolute;
  height: 0;
  width: 0;
  padding: 0;
}
.deck-plan-key {
  margin-top: 1.5rem;
  margin-left: 1.5rem;
}
.deck-plan-key .deck-plan-items {
  list-style: none;
  padding: 0;
}
.deck-plan-key .deck-plan-items li {
  display: flex;
  margin: 0.75rem 0;
}
.deck-plan-key .deck-plan-items li img {
  display: block;
  width: 1.5rem;
  height: 2rem;
  margin-right: 1rem;
  object-fit: contain;
  object-position: center;
}
.tab-nav {
  display: flex;
  justify-content: center;
}
.tab-nav > div {
  background-color: var(--grayLighter);
  display: flex;
  border-radius: 4rem;
  padding: 0.5rem 0.6rem;
}
.tab-nav > div > div {
  border-radius: 4rem;
  border: solid 0.1rem transparent;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
.tab-nav > div > .active {
  border-color: var(--primary-color);
  background-color: #fff;
  color: var(--primary-color);
}
.tab-nav > div > div:hover {
  color: var(--primary-color);
}
.status-notes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  /* margin-top: 3rem; */
}
.status-notes > div {
  margin: 0.75em 1.5rem;
  display: flex;
}
.status-notes > div::before {
  display: block;
  content: "";
  width: 2rem;
  height: 2rem;
  border-radius: 0.3rem;
  margin-right: 0.75rem;
  border: solid 0.15rem var(--gray);
}
.status-notes > div.status-available::before {
  background-color: #fff;
}
.cabinShape.available {
  fill: #fff;
  cursor: pointer;
}

.cabinShape.available.hover {
  fill: var(--primary-color);
}
.cabinNumber.available.hover {
  fill: #fff;
}

.status-notes > div.status-unavailable::before {
  background-color: var(--grayLight);
}
.cabinShape.unavailable {
  fill: var(--grayLight);
}
.RoomChoose .room-list .room-item.previously::before,
.status-notes > div.status-previously::before {
  background-image: linear-gradient(
    -45deg,
    hsla(0, 2%, 9%, 0.4) 25%,
    transparent 0,
    transparent 50%,
    hsla(0, 2%, 9%, 0.4) 0,
    hsla(0, 2%, 9%, 0.4) 75%,
    transparent 0,
    transparent
  );
  background-size: 5px 5px;
}
.RoomChoose .room-list .room-item.selected::before,
.status-notes > div.status-selected::before {
  background-color: var(--primary-color);
}

.cabinShape.selected {
  fill: var(--primary-color);
}
.cabinNumber.selected {
  fill: #fff;
}

.RoomChoose .room-list .room-item.selected-other::before,
.status-notes > div.status-selected-other::before {
  background-color: var(--primary-color);
}
.cabinShape.selected-other {
  fill: var(--primary-color);
}
.cabinNumber.selected-other {
  fill: #fff;
}

.deck-plan-container {
  display: flex;
  position: relative;
}
.deck-plan-container .deck-plan {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  height: 60rem;
  overflow-y: auto;
  border: solid 0.1rem var(--gray);
}
.deck-plan-container .deck-tab > div:first-child {
  position: absolute;
  top: -2.5rem;
  font-size: 1rem;
  width: 3rem;
}
.deck-plan-container .deck-tab > div:not(:first-child) {
  text-align: center;
  border: solid 0.1rem var(--primary-color);
  width: 3rem;
  height: 3rem;
  margin-bottom: -0.1rem;
}
.deck-plan-container .deck-tab > div.active {
  background-color: var(--primary-color);
  color: #fff;
}
.deck-plan-container .user-rooms {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  display: none;
}
.deck-plan-container .user-rooms .current-user-room {
  border: solid 0.1rem var(--grayLight);
  border-radius: 0.4rem;
  margin-bottom: 0.75rem;
  padding: 0.3rem 1rem;
  background-color: #fff;
}
.deck-plan-container .user-rooms .current-user-room:hover,
.deck-plan-container .user-rooms .current-user-room.active {
  background-color: var(--primary-color);
  color: #fff;
}
.deck-plan-container .user-rooms .current-user-room.complete::before {
  display: inline-block;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.75rem;
}
.deck-plan-container .user-rooms .current-user-room > :last-child {
  display: none;
}
.CustomizeOffer .offer-items .offer-item {
  text-align: center;
}
.CustomizeOffer .offer-items .offer-item .image::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 1;
}
.CustomizeOffer .offer-items .offer-item .title {
  position: absolute;
  color: #fff;
  padding: 0.75rem 1.5rem;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.CustomizeOffer .offer-items .offer-item .desc .price {
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
}
.CustomizeOffer .offer-items .offer-item .desc .price-note {
  font-size: 1.2rem;
}
.CustomizeOffer .offer-items .offer-item button {
  padding: 1rem 2rem;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.CustomizePreference .preference-items .item {
  margin-bottom: 3rem;
}
.CustomizePreference .preference-items .item .box {
  display: flex;
  border: solid 0.1rem var(--grayLighter);
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.CustomizePreference .preference-items .item .image {
  flex-basis: 30rem;
}
.CustomizePreference .preference-items .item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.CustomizePreference .preference-items .item .desc {
  flex-basis: calc(100% - 30rem);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}
.CustomizePreference .preference-items .item .options {
  display: flex;
  flex-wrap: wrap;
  margin: 1.5rem auto 0;
  width: 100%;
  justify-content: center;
}
.CustomizePreference .preference-items .item .option {
  background-color: var(--grayLighter);
  border-radius: 0.4rem;
  padding: 1rem 3rem;
  margin: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: auto;
  flex-grow: 1;
  max-width: 40rem;
  position: relative;
  transition: background-color 0.3s;
}
.CustomizePreference .preference-items .item .option.selected {
  background-color: var(--primary-color);
  color: #fff;
}
.CustomizePreference .preference-items .item .option[disabled] {
  opacity: 0.5;
}

.CustomizePreference .preference-items .item .option::after {
  display: block;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.75rem;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.CustomizePreference .preference-items .item .option:hover::after,
.CustomizePreference .preference-items .item .option.selected::after {
  opacity: 1;
}
.CustomizePreference .preference-items .item .option .title {
  font-size: 1.8rem;
}
.CustomizePreference .preference-items .item .option .subtitle {
  font-size: 1rem;
  line-height: 1.3rem;
}
.CustomizePreference .preference-items .item .maybe-later {
  margin: auto auto 0 0;
}
.CustomizePreference .preference-items .item .maybe-later input {
  margin-right: 0.75rem;
  margin-top: 0.5rem;
}
.CustomizePreference .preference-items .item .maybe-later label {
  margin-bottom: 0;
}

.cruise-booking-app .promotion-code {
  width: 100%;
}
.cruise-booking-app .promotion-code > h4 {
  padding: 1.5rem 0;
  margin: 1.5rem 0;
  border-bottom: solid 0.1rem var(--grayLight);
}
.cruise-booking-app .promotion-code > div > div {
  padding-top: 5rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cruise-booking-app .promotion-code label {
  margin: 0;
}
.cruise-booking-app .promotion-code input {
  background-color: transparent !important;
  border: none !important;
  border-bottom: solid 0.1rem var(--grayLight) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin: 0 1rem;
  width: unset !important;
}
.cruise-booking-app .room-right .tab-nav {
  position: relative;
}
.cruise-booking-app .room-right .tab-nav .download-deck-pdf-btn {
  position: absolute;
  right: 0;
  top: 8px;
  border: #333 solid 1px;
  border-radius: 4px;
  padding: 3px 10px;
}
.cruise-booking-app .room-right .tab-nav .download-deck-pdf-btn:hover {
  border-color: #fd7f23;
  color: #fd7f23;
}
.cruise-booking-app .promotion-code input:read-only {
  border: none;
  background-color: var(--grayLighter);
  border-radius: 0.4rem;
}
.cruise-booking-app .promotion-code button {
  padding: 0.75rem 2rem;
  font-size: 1.3rem;
  min-width: 10rem;
}
.ReviewRoom .review-rooms {
  width: 100%;
}
.ReviewRoom .review-rooms .image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.ReviewRoom .review-rooms .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.ReviewRoom .review-rooms .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ReviewRoom .review-room {
  margin-bottom: 4rem;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
.ReviewRoom .review-room > .wrapper > div:last-child {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2;
}
.ReviewRoom .review-room .desc {
  flex-basis: 50%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  color: #fff;
  padding: 1.5rem;
  background-size: 0 0;
}
.ReviewRoom .review-room .total-detail {
  background-color: #fff;
  flex-basis: 50%;
  border-radius: 0.4rem;
  padding: 1.5rem;
}
.description ul,
ul.check-list {
  list-style: none;
  padding: 0;
}
.description ul li::before,
ul.check-list li:before {
  content: "";
  display: inline-block;
  background-image: url("../../../../../../images/icons/check-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 1rem;
}
.ReviewRoom .total-detail > div > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.ReviewRoom .total-detail > div > div :first-child:not(:only-child) {
  flex-basis: calc(100% - 15rem);
  line-height: 130%;
}
.ReviewRoom .total-detail > div > div :last-child:not(:only-child) {
  flex-basis: 15rem;
  text-align: right;
}
.ReviewRoom .trip-total {
  font-weight: 600;
  font-size: 1.6rem;
}
.ReviewRoom .minimum-deposit {
  font-weight: 600;
  font-size: 2.1rem;
}
.ReviewRoom .buttons {
  text-align: center;
}
.ReviewRoom .review-footer {
  width: 100%;
}
.ReviewRoom .review-footer .total-detail > div {
  max-width: 500px;
  margin-left: auto;
  padding: 0 1.5rem;
}
.ReviewRoom .review-footer .buttons {
  text-align: right;
}
.ReviewRoom
  .total-detail
  > div
  > div.minimum-deposit
  :last-child:not(:only-child) {
  flex-basis: 22rem;
}
.cancellation-fees {
  text-align: center;
}
.cancellation-fees h2 {
  margin: 1rem 0;
}
.cancellation-fees h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0 2rem;
}
.cancellation-fees .fee-list {
  margin-top: 3rem;
}
.cancellation-fees .fee-list > div {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 0.1rem var(--grayLight);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
}
.cancellation-fees .fee-list > div:first-child {
  border-bottom: none;
}
.cancellation-fees .fee-list > div > :first-child {
  text-align: left;
}
.cancellation-fees .fee-list > div > :last-child {
  text-align: right;
}
.cancellation-fees .fee-list > div:first-child {
  font-weight: bold;
}
.guest-info {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.guest-info > .guests {
  flex-basis: min(60rem, calc(100% - min(50%, 42rem)));
}
.guest-info > .guests > .guest {
  margin-bottom: 3rem;
}
.guest-info > .guests .guest-room {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.guest-info > .guests .guest-room h4 {
  margin: 0;
  color: var(--primary-color);
}
.guest-info > .guests .guest-room h4::before {
  /* content: "\f52b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.75rem; */
}
.guest-info > .guests .guest-room > div:last-child::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.75rem;
}
.guest-info > .guests .guest-form {
  border: solid 0.1rem var(--grayLighter);
  padding: 0 3rem;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.guest-info > .guests .guest-form > .wrapper {
  transition: max-height 0.5s;
  overflow: hidden;
}
.guest-info > .guests .guest-form > .wrapper > div {
  margin-bottom: 2rem;
  max-width: 100%;
}
.guest-info > .guests .guest:not(.active) .guest-form > .wrapper {
  max-height: 0;
}
.guest-info > .guests .guest.active .guest-form > .wrapper {
  max-height: 100em;
}
.guest-info > .guests .guest-form > h3 {
  font-size: 2.5rem;
  margin: 0 -3rem;
  padding: 1.5rem 3rem;
  border-bottom: solid 0.1rem transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: border-bottom-color 1s;
}
.guest-info > .guests .guest.active .guest-form > h3 {
  border-bottom-color: var(--grayLight);
}
.guest-info > .guests .item.disabled .guest-form > h3::after {
  display: none;
}
.guest-info > .guests .guest-form > h3::before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  margin-right: 0.75rem;
}
.guest-info > .guests .complete .guest-form > h3::before {
  content: "\f4fc";
  font-weight: 900;
}
.guest-info > .rooms .room .buttons a::after,
.guest-info > .guests .guest-form > h3::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: auto;
  transition: rotate 0.5s;
  rotate: 0deg;
  display: inline-block;
}
.guest-info > .rooms .room .buttons a::after {
  margin-left: 0.75rem;
}
.guest-info > .rooms .room.hideSummary .buttons a::after,
.guest-info > .guests .active .guest-form > h3::after {
  rotate: 180deg;
}
.guest-info > .guests .guest-form h4 {
  font-size: 1.6rem;
  margin: 4rem 0 0;
}
.guest-info > .rooms {
  flex-basis: min(50%, 42rem);
  padding-left: 2rem;
  max-width: min(50%, 42rem);
}
.guest-info > .rooms .room {
  margin: auto;
}
.guest-info > .rooms .pay-amount {
  margin-top: 1.5rem;
  padding: 1.5rem;
}
.guest-info > .rooms .pay-amount .pay-options {
  display: flex;
}
.guest-info > .rooms .pay-amount .pay-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 0.1rem var(--grayLight);
  border-radius: 0.4rem;
  margin-right: 1rem;
  margin-top: 1rem;
  padding: 2rem 3rem;
  position: relative;
  cursor: pointer;
}
.guest-info > .rooms .pay-amount .pay-option > :first-child {
  font-size: 1rem;
  line-height: 140%;
}
.guest-info > .rooms .pay-amount .pay-option > :last-child {
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 140%;
}
.guest-info > .rooms .pay-amount .pay-option::before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: normal;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  font-size: 1rem;
}
.guest-info > .rooms .pay-amount .pay-option.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.guest-info > .rooms .pay-amount .pay-option.active::before {
  content: "\f058";
  font-weight: 900;
}
.floating-label {
  margin: 3rem 0 1.5rem;
}
.floating-label .field-group {
  display: flex;
  border-bottom: solid 0.1rem var(--grayLight);
}
.floating-label .field-group > div {
  flex-grow: 1;
  flex-shrink: 0;
  margin-right: 0.5rem;
  min-width: 6.5rem;
}
.floating-label .field-group .vs__dropdown-toggle {
  border-bottom: none;
}
body > [role="listbox"] {
  max-height: 20rem;
}
.vs__dropdown-menu,
.floating-label .field-group .vs__dropdown-menu {
  max-height: 18rem;
}
.floating-label .field-group > input,
.floating-label > input:focus,
.floating-label > input {
  border: none;
  border-radius: 0;
  border-bottom: solid 0.1rem var(--grayLight);
  box-shadow: none;
  padding: 0.75rem 0;
  background-color: transparent !important;
  min-height: 3.5rem;
}
.floating-label .field-group > input {
  flex-grow: 1;
  flex-shrink: 1;
  border-bottom: none;
}
.floating-label .vs--disabled .vs__dropdown-toggle {
  background-color: transparent !important;
  cursor: not-allowed;
}
.floating-label > input:focus {
  border-color: var(--grayDark);
}
.floating-label > input::placeholder {
  opacity: 0;
}
.floating-label .field-group > input::placeholder {
  opacity: 0.3;
  color: #333;
}
.floating-label {
  position: relative;
}
.floating-label > input + label {
  margin: 0;
  position: absolute;
  top: 0;
  opacity: 0.3;
  transition: all 0.5s;
  translate: 0 25%;
}
.error {
  font-size: 1rem;
  color: var(--danger);
}
.floating-label > .note,
.floating-label > .error {
  margin-top: 0.6rem;
  margin-bottom: -2rem;
  font-size: 1rem;
  color: var(--danger);
  display: block;
  line-height: 140%;
}
.GuestInfo .guest-form .floating-label > .note,
.floating-label > .note {
  color: var(--grayDark);
  text-align: left;
}
.floating-label > input:focus + label,
.floating-label > input:not(:placeholder-shown) + label {
  opacity: 1;
  translate: 0 -80%;
  font-size: 1rem;
}
.floating-label > label:first-child {
  opacity: 1;
  font-size: 1rem;
  margin: 0;
  position: absolute;
  translate: 0 -80%;
}
.floating-label > label.options-label {
  translate: 0 -100%;
}
.v-select input:focus,
.v-select input[type="search"]:not(.form-control):focus {
  outline: none;
  border: none;
  background-color: transparent;
  opacity: 0 !important;
}
.v-select.vs--single:not(.vs--open) .vs__search {
  box-shadow: none;
}
.v-select.vs--single:not(.vs--open) .vs__selected + .vs__search {
  opacity: 0;
  padding: 0;
  width: 0px;
  position: absolute;
}

.floating-label .v-select.vs--single .vs__search {
  border: none;
}
.vs__dropdown-toggle {
  border: none;
  border-radius: 0;
  border-bottom: solid 0.1rem var(--grayLight);
}
.vs__actions {
  padding-right: 0;
}
.vs__actions svg {
  scale: 0.6;
  width: 1.8rem;
}
.floating-label .vs__selected-options {
  min-height: 2.9rem;
  padding-left: 0;
}
.floating-label .vs__selected-options .vs__selected {
  height: 2.8rem;
  line-height: 2.8rem;
  margin: 0;
  padding-left: 0;
  white-space: nowrap;
}
.floating-label .vs__selected-options .vs__search {
  height: 2.8rem;
  margin: 0;
  padding-left: 0;
}
.floating-label .vs__dropdown-toggle {
  padding-bottom: 0;
  padding-top: 0.4rem;
}
.form-group .birthday {
  display: flex;
}
.form-group .birthday > div {
  flex: auto;
  padding-right: 1rem;
  flex-basis: 33.333%;
}
.form-group .birthday > div:last-child {
  padding-right: 0;
}
.floating-label .options {
  display: flex;
  margin: 0 -0.75rem;
}
.floating-label .options input {
  display: none;
}
.floating-label .options > label {
  border: solid 0.1rem var(--grayLight);
  border-radius: 0.4rem;
  padding: 0.75rem 2rem;
  margin: 0 0.75rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.4s;
  cursor: pointer;
}
.floating-label .options > label::after {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0.2rem;
  right: 0.2rem;
  font-size: 1rem;
  line-height: 1rem;
  color: var(--grayLight);
}
.floating-label .options > input:checked + label {
  background-color: var(--primary-color);
  color: #ffffff;
}
.floating-label .options > input:checked + label::after {
  color: #ffffff;
}
.floating-label .options > label:hover::after,
.floating-label .options > input:checked + label::after {
  content: "\f058";
}
.GuestInfo {
  max-width: 110rem;
  margin: auto;
}
.GuestInfo .title + .subtitle {
  margin: -1.5rem auto 2rem;
}
.GuestInfo .form-check {
  margin: 1.5rem 0;
}
.form-check input {
  margin: 0 0.75rem 0 0;
  translate: 0 0.1rem;
}
input {
  accent-color: var(--primary-color);
}
.GuestInfo .guest .buttons {
  text-align: center;
}
.GuestInfo .guest .note {
  text-align: center;
}
.GuestInfo .rooms .image {
  padding-top: 56.25%;
  position: relative;
  color: #ffffff;
}
.GuestInfo .rooms .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.GuestInfo .rooms .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  z-index: 1;
  padding: 0 !important;
}
.GuestInfo .rooms .image .info {
  padding: 1.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.GuestInfo .rooms .image .booking-id {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
  font-size: 2rem;
  font-weight: bold;
}
.GuestInfo .rooms .image .title {
  margin: 0 0 0.5rem;
}
.GuestInfo .rooms .desc h4 {
  margin: 1.5rem 0 0.75rem;
}
.GuestInfo .rooms .desc > div {
  display: flex;
  justify-content: space-between;
}
.GuestInfo .rooms .desc .trip-total {
  font-size: 1.8rem;
  font-weight: 500;
}
.GuestInfo .rooms .desc .minimum-deposit {
  font-weight: 500;
}
.GuestInfo .rooms .buttons {
  text-align: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}
.GuestInfo .rooms .desc {
  max-height: 500px;
  transition: max-height 0.5s;
  overflow: hidden;
}
.GuestInfo .rooms .hideSummary .desc {
  max-height: 0px;
}

.guest-info > .rooms .trip-totals {
  border-top: solid 0.1rem var(--grayLighter);
  border-bottom: solid 0.1rem var(--grayLighter);
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
}
.guest-info > .rooms .trip-totals > div {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}
.guest-info > .rooms .trip-totals .trip-total {
  font-size: 1.9rem;
  font-weight: 600;
}
.guest-info > .rooms .trip-totals .minimum-deposit {
  font-size: 1.6rem;
  font-weight: 400;
}
.guest-info > .rooms .trip-totals .remaining-balance {
  font-size: 1.2rem;
}
.guest-info input.form-control {
  font-size: unset;
}
.page-booking-result {
  text-align: center;
  margin: 7rem auto 5rem;
}
.page-booking-result h2 {
  font-size: 3rem;
}
.failure-icon {
  font-size: 12rem;
  color: red;
  margin: 2rem auto;
}
.success-icon {
  font-size: 12rem;
  color: #5cb85c;
  margin: 2rem auto;
}
.page-booking-result .buttons .btn {
  margin: 1rem;
}
.page-booking-result .reference-id {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.payment-methods {
  padding: 1.5rem;
}
div.checkbox-field,
.payment-methods .payment-method {
  cursor: pointer;
  font-size: 1.4rem;
}
div.checkbox-field::before,
.payment-methods .payment-method::before {
  content: "\f0c8";
  font-weight: 400;
  font-family: "Font Awesome 5 Free";
  margin-right: 0.75rem;
}
div.checkbox-field.selected::before,
.payment-methods .payment-method.selected::before {
  content: "\f14a";
}
div.checkbox-field a {
  color: var(--primary-color);
}
div.checkbox-field.error a {
  color: var(--danger);
  font-weight: bold;
}
.rooms .terms,
.support-payment-methods {
  padding: 1.5rem;
}
.support-payment-methods h4 {
  margin-bottom: 1.5rem;
}
.support-payment-methods > div > span {
  display: inline-flex;
  flex-wrap: nowrap;
  border: solid 1px rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 0.4rem;
  vertical-align: middle;
  align-items: center;
  margin-bottom: 0.5rem;
}
.support-payment-methods img {
  max-height: 2.5rem;
  width: auto;
  margin-right: 0.5rem;
}
.support-payment-methods > div > span:first-child > img:first-child {
  max-height: 2rem;
}
.row-fcc {
  display: none !important;
}
.survey-box {
  background-color: #fff3cd;
  padding: 0.5rem;
  margin-bottom: 3rem;
}
.survey-box.vaccination-yes .survey-header::before {
  content: "\f058";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  margin-right: 0.5rem;
  color: #5cb85c;
}
.survey-box .survey-header {
  padding: 1rem 1.5rem;
  font-size: 1.8rem;
  font-weight: bold;
}
.survey-box .survey-body {
  background-color: #ffffff;
  padding: 1.5rem;
}
.survey-box .survey-bottom {
  background-color: #ffffff;
  padding: 0 1.5rem 2rem;
  text-align: right;
}
.survey-box .survey-bottom .btn {
  padding: 0.75rem 1.5rem;
}
.survey-box .survey-bottom .btn:not(:last-child) {
  margin-right: 1.5rem;
}
.GuestInfo .guest-form .row > div::before {
  content: "";
  display: table;
}
.GuestInfo .guest-form .row > div::after {
  content: "";
  display: table;
}
.cabin-detail h2 {
  font-size: 2rem;
}
.cabin-detail h3 {
  font-size: 1.8rem;
}
.cabin-detail .image {
  position: relative;
}
.cabin-detail .image::before {
  display: block;
  content: "";
  padding-top: 56.25%;
  width: 100%;
}
.cabin-detail .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.category-feautres-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin-bottom: 1rem;
}
.category-feautres-list li {
  list-style: none;
}
.category-feautres-list li > * {
  vertical-align: middle;
}
.category-feautres-list li > :first-child {
  margin-right: 0.5rem;
}
.category-feautres-list li {
  display: flex;
}
.category-feautres-list li :first-child {
  flex-basis: 2.5rem;
  flex-shrink: 0;
  flex-grow: 0;
  margin: 0.5rem 0 0;
}
.category-feautres-list .icon-close {
  color: #bbb;
}
.category-feautres-list .icon-check {
  color: var(--primary-color);
}
.select-room-type .item > .wrapper {
  display: flex;
  flex-direction: column;
}
.select-room-type .item > .wrapper > .desc {
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
[data-toggle="tooltip"] {
  pointer-events: auto !important;
}
.tooltip.in {
  opacity: 1;
  filter: alpha(opacity=100);
}

.tooltip > .tooltip-inner {
  background-color: #fff;
  color: #333;
  border: solid 0.1rem var(--grayLighter);
  font-size: 1.2rem;
  padding: 1rem;
  text-align: left;
}
.tooltip.top .tooltip-arrow {
  border-top-color: var(--grayLighter);
}
.tooltip.bottom .tooltip-arrow {
  border-bottom-color: var(--grayLighter);
}
.cruise-booking-app .btn-success:not(:disabled):not(.disabled).active,
.cruise-booking-app .btn-success:not(:disabled):not(.disabled):active,
.cruise-booking-app .show > .btn-success.dropdown-toggle,
.cruise-booking-app .btn-success {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.cruise-booking-app .btn-success:not(:disabled):not(.disabled).active:focus,
.cruise-booking-app .btn-success:not(:disabled):not(.disabled):active:focus,
.cruise-booking-app .show > .btn-success.dropdown-toggle:focus,
.cruise-booking-app .btn-success:focus {
  box-shadow: none;
}
.toggle-slide > h4 {
  position: relative;
  cursor: pointer;
}
.toggle-slide > h4::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  transition: rotate 0.5s;
  width: 2rem;
  text-align: center;
}
.toggle-slide.active > h4::after {
  rotate: 90deg;
}
.toggle-slide > h4 + div {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

.toggle-slide.active > h4 + div {
  max-height: 500px;
  overflow: hidden;
}
.modal-open .modal {
  z-index: 10002 !important;
}
.modal-backdrop.show {
  z-index: 10001 !important;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}
.btn-previous {
  --bs-btn-hover-color: #000000;
  --bs-btn-active-color: #000000;
}
@media (max-width: 820px) {
  .app-nav-top .wrapper .ship-logo {
    flex-basis: unset;
  }
  .app-nav-top .wrapper .ship-logo img {
    max-width: 10rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .RoomChoose .user-room-items .user-room-item {
    width: 45%;
  }
  .CustomizePreference .preference-items .item .image {
    flex-basis: 25rem;
  }
  .CustomizePreference .preference-items .item .desc {
    flex-basis: calc(100% - 25rem);
  }
  .RoomChoose .user-room-item .room-info {
    height: calc(100% - 2rem);
  }
  .cruise-booking-app .RoomCategory.select-room-type .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .cruise-booking-app .RoomCategory.select-room-type .items .item {
    width: 100%;
    height: 100%;
  }
  .cruise-booking-app .RoomCategory.select-room-type .items .item .wrapper {
    height: calc(100% - 3rem);
  }
}

@media (min-width: 768px) {
  .cruise-booking-app .select-room-category .items[number-of-items] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
  }
  .cruise-booking-app .select-room-category .items[number-of-items] > .item {
    width: 100%;
    height: 100%;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item
    > .wrapper {
    height: calc(100% - 3rem);
  }
  .cruise-booking-app .select-room-category .items[number-of-items] > .item {
    grid-column: span 4;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(1) {
    grid-column: span 4;
  }

  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(2) {
    grid-column: span 4;
  }

  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(3) {
    grid-column: span 4;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(4) {
    grid-column: span 6;
  }

  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(5) {
    grid-column: span 6;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items="4"]
    > .item:nth-child(4),
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(6) {
    grid-column: span 12;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items="4"]
    > .item:nth-child(64)
    > .wrapper,
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(6)
    > .wrapper {
    display: flex;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items="4"]
    > .item:nth-child(4)
    > .wrapper
    > .image,
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(6)
    > .wrapper
    > .image {
    flex-basis: 65%;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items="4"]
    > .item:nth-child(4)
    > .wrapper
    > .desc,
  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(6)
    > .wrapper
    > .desc {
    flex-basis: 35%;
  }

  .cruise-booking-app
    .select-room-category
    .items[number-of-items]
    > .item:nth-child(6):not(.unavailable)
    > .wrapper
    > .desc
    h3.title {
    display: none;
  }
  .cruise-booking-app
    .select-room-category
    .items[number-of-items="2"]
    > .item {
    grid-column: span 6;
  }
}
@media (max-width: 1000px) {
  .app-nav-top .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .app-nav-top .wrapper .ship-info {
    text-align: center;
    margin: 1.5rem 0;
  }
  .app-nav-top .wrapper .ship-info h2 {
    font-size: 2rem;
  }
  .app-nav-top .wrapper .ship-logo {
    display: none;
  }
  .app-nav-top .wrapper .ship-logo,
  .app-nav-top .wrapper .ship-info-right {
    flex-basis: 100%;
    width: 40%;
    text-align: center;
    justify-content: space-around;
    align-items: center;
  }
  .input-increase .input-group-addon {
    font-size: 2rem;
    padding: 0 1.5rem;
  }
  .input-increase input {
    font-size: 3rem;
  }
}
@media (min-width: 991px) {
  .com-cruise.view-reservation .modal-lg {
    width: 900px;
  }
}
@media (max-width: 767px) {
  .app-nav-top .wrapper .ship-info-right {
    width: 100%;
  }
  .app-body h2.title {
    font-size: 2rem;
  }
  .cruise-booking-app {
    overflow: hidden;
  }
  .cruise-booking-app .number-of-guest.items .item {
    width: 100%;
  }
  .app-nav-middle .app-steps ul {
    font-size: 0.9rem;
    line-height: 130%;
    min-height: auto;
  }
  .app-nav-middle .wrapper .app-prev button {
    padding: 0.5rem;
  }
  .app-nav-middle .app-steps li {
    padding-left: 2rem;
  }
  .app-nav-middle .app-steps li:first-child {
    padding-left: 0.75rem;
  }
  .app-nav-middle .app-steps li::before {
    width: 2rem;
  }
  .app-nav-middle .app-steps li::before,
  .app-nav-middle .app-steps li::after {
    rotate: -20deg;
  }
  .app-nav-middle .app-steps .step-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .app-nav-middle .app-steps .step-inner > :first-child {
    display: none;
  }
  .app-nav-middle .wrapper > .price {
    display: none;
  }
  .cruise-booking-app .items {
    flex-direction: column;
  }
  .cruise-booking-app .items .item .wrapper {
    margin: 0 0 3rem 0;
  }
  .cruise-booking-app .items .item {
    width: 100%;
  }
  .app-nav-bottom li {
    font-size: 1rem;
    line-height: 130%;
    padding: 1rem 1.5rem;
  }
  #sp-footer .booking-footer {
    margin-left: -15px !important;
    margin-right: -15px !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .app-nav-bottom ul.sub-steps {
    flex-wrap: wrap;
  }
  .RoomChoose .room-body {
    flex-wrap: wrap;
  }
  .RoomChoose .room-body > .room-left {
    flex-basis: 100%;
    padding-right: 0;
  }
  .RoomChoose .room-body > .room-right {
    flex-basis: 100%;
  }
  .RoomChoose .room-list .room-item h4 {
    font-size: 1.6rem;
  }
  .app-nav-middle .wrapper > .trip-subtotals {
    display: none;
  }
  .CustomizePreference .preference-items .item .box {
    flex-wrap: wrap;
  }
  .CustomizePreference .preference-items .item .image {
    flex-basis: 100%;
  }
  .CustomizePreference .preference-items .item .desc {
    flex-basis: 100%;
  }
  .ReviewRoom .review-room {
    padding: 0;
  }
  .ReviewRoom .review-room > .wrapper > div:last-child {
    flex-wrap: wrap;
  }
  .ReviewRoom .review-room .desc {
    flex-basis: 100%;
    position: relative;
  }
  .ReviewRoom .review-room .desc::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }
  .ReviewRoom .review-room .desc > * {
    position: relative;
    z-index: 1;
  }
  .ReviewRoom .review-room .total-detail {
    flex-basis: 100%;
  }
  .ReviewRoom .review-rooms .image {
    display: none;
  }
  .ReviewRoom .review-room .desc {
    background-size: cover;
  }
  .guest-info {
    flex-wrap: wrap;
  }
  .guest-info > .guests {
    flex-basis: 100%;
  }
  .guest-info > .rooms {
    flex-basis: 100%;
  }
  .RoomChoose .user-room-items .user-room-item {
    width: 100%;
  }
  .guest-info > .rooms {
    padding-left: 0;
  }
  .guest-info > .guests .guest-form {
    padding: 0 1.5rem;
  }
  .guest-info > .guests .guest-form > h3 {
    margin: 0 -1.5rem;
  }
}
@media (max-width: 400px) {
  .cruise-booking-app .promotion-code > div > div {
    flex-wrap: wrap;
  }
  .cruise-booking-app .promotion-code label {
    width: 100%;
  }
  .cruise-booking-app .promotion-code input {
    margin-left: 0;
    width: calc(100% - 12rem);
  }
  .cruise-booking-app .promotion-code button {
    margin-right: 0;
    width: 10rem;
  }

  .guest-info > .guests .guest-form > .wrapper > div.row,
  .guest-info
    > .guests
    .guest-form
    > .wrapper
    > div.row
    > div:not(:last-child) {
    margin-bottom: 1rem;
  }
}
