.error-screen-container {
  display: flex;
  flex: 1 1;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
  &.small {
    font-size: 18px;
  }
  &.medium {
    font-size: 24px;
  }
  &.large {
    font-size: 32px;
  }

  .imgWrapper {
    display: flex;
    justify-content: center;
    width: auto;
    height: 190px;
  }
  .error-screen-text {
    margin-top: 50px;
    font-weight: 900;
    text-align: center;
    font-size: 20px;
    color: var(--text-color-black);
  }
  .error-content-wrapper {
     margin-top: 100px ;
  }
  .error-screen-sub-text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--text-color-black);
  }

  @media screen and (max-width: 768px) {
    .error-content-wrapper {
      margin-top: 300px ;
   }
    .imgWrapper {
      width: auto;
      height: 112px;
    }
    .error-screen-text {
      font-weight: 400;
      font-size: 14px;
    }
  }
}

.popup.backDrop {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999999;
  left: 0;
  top: 0;
  overflow: scroll;
}

.popup .outer {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 5%;
}

.popup .close {
  position: fixed;
  top: 26px;
  right: 55px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.popup .close:before,
.popup .close:after {
  position: absolute;
  left: 8px;
  content: " ";
  height: 18px;
  width: 2px;
  background-color: #fff;
}
.popup .close:before {
  transform: rotate(45deg);
}
.popup .close:after {
  transform: rotate(-45deg);
}

.bodyFixed {
  overflow: hidden;
}

.managementContainer {
  width: 520px;
  background: #fff;
  padding: 25px 0px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  z-index: 9999;
  margin-bottom: 100px;
}

@charset "utf-8";

.myraChatBox {
  position: fixed;
  bottom: 0px;
  right: 10px;
  z-index: 9;
  border: 1px solid #ddd;
  box-shadow: 0px 0px 5px #aaa;
  background-color: #ddd;
}
.myraChatBox iframe {
  border: none;
  position: relative;
  z-index: 10;
}
.closeMyraIframe {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute;
  z-index: 11;
  right: 0px;
  top: 17px;
  right: 17px;
}
.myraChatHead {
  background: #008cff;
  height: 57px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}

.chatLoaderWrap {
  background: var(--background-color-main);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 9;
}
.chatLoaderOuter {
  width: 50px;
  height: 2px;
  background: #d1cece;
  overflow: hidden;
  position: relative;
}
.chatLoaderInner {
  -webkit-animation: loadingMover1 0.8s infinite linear; /* Safari 4+ */
  -moz-animation: loadingMover1 0.8s infinite linear; /* Fx 5+ */
  -o-animation: loadingMover1 0.8s infinite linear; /* Opera 12+ */
  animation: loadingMover1 0.8s infinite linear; /* IE 10+, Fx 29+ */
  background: #008cff;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f4f7', endColorstr='#e4e4e4',GradientType=0 );
  position: absolute;
  width: 60%;
  height: 2px;
}

/* Listing Loader starts Here */
@-webkit-keyframes loadingMover1 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-moz-keyframes loadingMover1 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@-o-keyframes loadingMover1 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes loadingMover1 {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

input,
textarea {
  font-family: Lato;
}

.inputField {
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
}

.inputField:focus,
.textAreaField:focus {
  border: 1px solid var(--color-primary, #008cff);
}

.namePopupContainer {
  display: none;
}

.traveller-form-v2 .inputTextToolTipContainer {
  background: var(--color-primary, #008cff);
  color: var(--color-btn-primary-text, #4a4a4a);
  padding: 14px 18px 22px 18px;
  border-radius: 4px;
  width: 347px;
  height: 171px;
  display: none;
  border-radius: 8px;
  box-shadow: 0px 3px 30px rgba(0, 0, 0, 0.3);
  position: absolute;
  /* font-family: Lato-Regular; */
  font-size: 12px;
  z-index: 500;
  top: -157px;
  left: 25px;
}

.traveller-form-v2 .inputTextToolTipContainer .toolTipText {
  color: var(--color-btn-primary-text, #fff);
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}

.traveller-form-v2 .inputTextToolTipContainer .passPortImage {
  width: 301px;
  height: 74px;
}

.traveller-form-v2 .inputTextToolTipContainer::before {
  content: " ";
  position: absolute;
  left: 35px;
  margin-left: -5px;
  border-width: 12px 20px 12px 20px;
  border-top-width: 12px;
  border-right-width: 20px;
  border-bottom-width: 12px;
  border-left-width: 20px;
  border-style: solid;
  border-color: transparent transparent var(--color-primary, "#008cff")
    transparent;
  bottom: -24px;
  transform: rotate(180deg);
}

.traveller-form-v2 .inputTextToolTip:focus ~ .inputTextToolTipContainer {
  display: block;
}

.nameInputWrapper.traveller-form-v2 {
  position: relative;
}

.nameInputWrapper .phone-input-text {
  display: flex;
  justify-content: space-between;
}

.nameInputWrapper .phone-input-text .phone-input-1 {
  width: 20%;
}

.nameInputWrapper .phone-input-text .phone-input-2 {
  width: 78%;
}

.nameInputWrapper .textAreaField {
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--background-color-shade2);
  border: 1px solid #e2e2e2;
  padding: 10px 15px;
  box-sizing: border-box;
  resize: none;
}

@media screen and (max-width: 767px) {
  .daypicker-container {
    width: inherit !important;
    /* top: -10px !important; */
  }
}

.detailsInput::after {
  content: "*";
  color: var(--msg-error-color-main);
}

.inputField {
  padding: 10px 15px;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
}

.inputField:focus {
  border: 1px solid rgba(0, 140, 255, 0.85);
}
.queryFormBgProperties {
  font-size: 34px;
}
.inputField {
  height: 39px;
  width: -webkit-fill-available;
}
.nameInputWrapper .countryName {
  margin-left: 21px;
}

.nameInputWrapper .inputField .countryCode {
  color: #000;
  font-weight: 900;
  margin-left: 10px;
}

.nameInputWrapper .countryCodeWrapper {
  width: 218px;
  height: 157px;
  padding: 10px 0 11px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.24);
  background-color: var(--background-color-shade2);
  position: absolute;
  z-index: 3;
  top: 66px;
  left: 0px;
  overflow-y: scroll;
}

.nameInputWrapper .countryList {
  height: 44px;
  padding: 10px 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.nameInputWrapper .countryName {
  color: #000;
}

.nameInputWrapper .countryList:hover,
.nameInputWrapper .countryList:focus {
  background-color: rgba(0, 140, 255, 0.64);
  font-weight: 700;
}

.nameInputWrapper .countryList:hover .countryDetailsWrapper,
.nameInputWrapper .countryList:hover .countryName,
.nameInputWrapper .countryList:focus .countryDetailsWrapper,
.nameInputWrapper .countryList:focus .countryName,
.nameInputWrapper .countryList:focus .countryShortName,
.nameInputWrapper .countryList:hover .countryShortName {
  color: #fff;
}

.nameInputWrapper .blueArrow {
  cursor: pointer;
  border: solid #008cff;
  border-width: 0px 2px 2px 0;
  display: inline-block;
  transform: rotate(45deg);
  width: 9px;
  height: 9px;
  top: -4px;
  position: relative;
  margin-left: 11px;
  z-index: 1;
}

.nameInputWrapper .blueArrow.active {
  transform: rotate(-135deg);
  top: 0px;
}
.nameInputWrapper .inputField .countryFlag {
  font-size: 31px;
  position: absolute;
  top: -2px;
  margin-right: 4px;
}
.inputField.isGroup {
  border: none;
  width: 169px;
  position: absolute;
  left: 85px;
  top: 1px;
  height: 33px;
}

.countryCodeWrapper .countryShortName {
  position: absolute;
  right: 21px;
  text-transform: uppercase;
  color: gray;
}

.searchCityWrapper {
  width: 300px;
  height: 282px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 2;
  background: #fff;
  top: 70px;
  overflow-y: scroll;
}

.listWrapper .name {
  padding: 10px 0px 10px 4px;
  font-weight: 700;
}

.listWrapper .name:hover,
.listWrapper .name:focus {
  background-color: rgba(0, 140, 255, 0.64);
  color: #fff;
  cursor: pointer;
}

.listWrapper .disabled {
  opacity: 0.5;
  cursor: none;
}

.searchCityWrapper .citySearchIcon {
  position: absolute;
  width: 30px;
  height: 30px;
  background-position: -158px 1px;
}

.searchCityWrapper .citySearchInput {
  width: 100%;
  height: 30px;
  padding-left: 30px;
  border: 1px solid var(--background-color-main);
  border-radius: 4px;
}

.searchIcon.querySprite {
  height: 20px;
  width: 20px;
  display: block;
  background-position: -162px -4px;
  position: absolute;
  background-size: 250px 250px;
  top: 10px;
  left: 12px;
}

.nameInputWrapper .toCityWrapper .inputField {
  width: 100%;
}

.nameInputWrapper .toCityWrapper {
  position: relative;
}
.optHeader {
  color: grey;
  padding: 0 10px;
  border-radius: 2px;
  margin-top: 10px;
}

@media screen and (max-width: 480px) {
  .searchCityWrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: auto;
    width: 100%;
    z-index: 2;
  }
  .searchCityWrapper .backArrowGrey.left {
    background-size: 200px 200px;
    top: 4px;
    background-position: -24px 2px;
    transform: rotate(-180deg);
  }
  .searchCityWrapper .clear {
    position: absolute;
    right: 20px;
    text-transform: capitalize;
    top: 9px;
  }
  .searchCityWrapper .citySearchInput {
    border: 0px;
  }
  .searchCityWrapper .name {
    padding: 10px 30px;
  }
  .nameInputWrapper .toCityWrapper .inputField {
    width: 100%;
  }
}

.radioInput.boxes .customRadioBtn {
  display: none;
}

.radioInput.boxes {
  display: flex;
}

.radioInput.boxes label {
  padding: 12px 20px;
  position: relative;
  cursor: pointer;
  width: 116px;
  height: 43px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  background-color: white;
  font-weight: 700;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}

.radioInput.boxes label.selected,
.radioInput.boxes label:hover {
  border: solid 2px #008cff;
  color: #008cff;
  background-color: #edf7ff;
}
.radioInput {
  margin-left: 14px;
}
.customRadioBtn {
  position: relative;
  display: inline-block;
}

.customRadioBtn input {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  opacity: 0;
}

.customRadioBtn input:checked + .outer {
  border-color: #008cff;
}

.customRadioBtn .outer {
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #9b9b9b;
  border-radius: 50%;
  background-color: #fff;
  margin-top: 1px;
  flex-direction: row;
}

.customRadioBtn .inner {
  transition: all 0.25s ease-in-out;
  height: 12px;
  width: 12px;
  transform: scale(0);
  display: block;
  margin: 1px;
  border-radius: 50%;
  background-color: #2e3092;
  opacity: 0;
}

.customRadioBtn input:checked + .outer .inner {
  transform: scale(1);
  opacity: 1;
  background-color: #008cff;
}

.radioInputWrapper .radioText.required::after {
  content: "*";
  color: var(--msg-error-color-main);
}
.userDetailsWrapper .radioInputWrapper.nameInputWrapper {
  flex-direction: row;
}
.userDetailsWrapper .radioInputWrapper.nameInputWrapper.boxesContainer {
  flex-direction: column;
}

.userDetailsWrapper .boxesContainer .radioText {
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .userDetailsWrapper .radioInputWrapper.nameInputWrapper {
    flex-direction: column;
  }

  .radioInput.boxes label {
    padding: 11px 1px;
  }
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper label.radioLabel {
  padding: 10px 0px 10px 0px;
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper .radioText {
  font-size: 14px;
  line-height: 18px;
  color: #9b9b9b;
  text-transform: capitalize;
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper {
  flex-direction: column;
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper .radioInput {
  display: grid;
  grid-template-columns: auto auto auto;
}

.nameInputWrapper.traveller-form-v2.radioInputWrapper
  .radioInput
  label
  .optionText {
  color: var(--text-color-shade1);
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper
  .radioInput
  .customRadioBtn
  input {
  opacity: 1;
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper
  .radioInput
  .customRadioBtn
  .outer {
  border-radius: unset;
  margin-top: unset;
  border: unset;
}
.nameInputWrapper.traveller-form-v2.radioInputWrapper
  .radioInput
  .customRadioBtn
  .outer
  .inner {
  transition: unset;
  transform: unset;
}

.customMonthCalendar {
  width: 308px;
  height: 230px;
  border-radius: 4px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: var(--background-color-shade2);
  position: absolute;
  z-index: 3;
  top: 180px;
}
.nameInputWrapper .dateBoxWrapper {
  position: relative;
}
.nameInputWrapper .dateBoxWrapper .selectedDate {
  position: absolute;
}
.customMonthCalendar .querySprite.prevArrow {
  height: 18px;
  width: 18px;
  display: block;
  background-position: -87px -3px;
  background-size: 200px 200px;
  cursor: pointer;
  left: 21px;
  top: 11px;
  transform: rotate(180deg);
  cursor: pointer;
}

.customMonthCalendar .show {
  visibility: visible;
}

.customMonthCalendar .hide {
  visibility: hidden;
}

.customMonthCalendar .querySprite.nextArrow {
  height: 18px;
  width: 18px;
  display: block;
  background-position: -87px -3px;
  background-size: 200px 200px;
  cursor: pointer;
  right: 21px;
  top: 11px;
}

.customMonthCalendar .monthName {
  margin: 10px;
}

.customMonthCalendar .monthName.disabled {
  pointer-events: none;
  color: #dce0e0;
}

.customMonthCalendar .monthName.active {
  background-color: #008cff;
  border-radius: 4px;
  color: #fff;
}

.customMonthCalendar .monthName:hover {
  cursor: pointer;
  background-color: #008cff;
  border-radius: 4px;
  color: #fff;
}

.daypicker-container.small {
  width: 350px;
}

.daypicker-container {
  width: 700px;
  border-radius: 4px;
  background-color: var(--background-color-shade2);
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 23px;
  z-index: 999999;
}

/* Date Picker library style reset */
.daypicker-container .DayPicker-Day--today {
  color: #000;
}

.daypicker-container .DayPicker-Day {
  height: 44px;
  color: #000;
  outline: 0;
  border: 0;
}

.daypicker-container .DayPicker-Month {
  flex: 1;
  width: 45%;
}

.daypicker-container.small .DayPicker-Month {
  flex: 1;
  width: 90%;
}

.daypicker-container .DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.daypicker-container
  .DayPicker-Day--start.DayPicker-Day--selected:not(
    .DayPicker-Day--disabled
  ):not(.DayPicker-Day--outside),
.daypicker-container
  .DayPicker-Day--end.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(
    .DayPicker-Day--outside
  ),
.daypicker-container
  .DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(
    .DayPicker-Day--outside
  ) {
  background-color: #008cff;
  color: #fff;
  border-radius: 4px;
}

.daypicker-container .DayPicker-NavBar .DayPicker-NavButton--prev,
.daypicker-container .DayPicker-NavBar .DayPicker-NavButton--next {
  top: 17px;
  cursor: pointer;
  z-index: 100;
  width: 16px;
  height: 13px;
  background-position: -5px -21px;
  background-image: url(//jsak.mmtcdn.com/cruise/node/static/media/spriteModifySearch1.508d1cde29b82b095eed.png);
  background-size: 50px 50px;
  outline: 0;
  border: 0;
}

.daypicker-container .DayPicker-NavBar .DayPicker-NavButton--prev {
  transform: rotate(-180deg);
  left: 30px;
}

.daypicker-container .DayPicker-NavBar .DayPicker-NavButton--next {
  right: 30px;
}

.daypicker-container .DayPicker-Weekday {
  font-weight: bold;
}

.daypicker-container .DayPicker-wrapper {
  outline: 0;
}

.daypicker-container .dateFiled.active .selectedDateField {
  border-radius: 2px;
  background-color: #eaf5ff;
  position: relative;
}

.daypicker-container .dateFiled.active .selectedDateField:after {
  width: 100%;
  height: 3px;
  background: #008cff;
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
}

.daypicker-container .DayPicker {
  width: 100%;
}

.daypicker-container .DayPicker-Caption {
  margin-bottom: 25px;
}

.daypicker-container .DayPicker-Caption > div {
  font-size: 18px;
  font-weight: bolder;
  color: #000;
  text-align: center;
}

.daypicker-container .DayPicker-Caption > div > span {
  font-weight: 300;
  font-size: 22px;
  line-height: 20px;
  margin-left: 5px;
}

.daypicker-container .DayPicker-Weekday {
  font-weight: bold;
}

.daypicker-container
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(
    .DayPicker-Day--selected
  ):not(.DayPicker-Day--outside):hover {
  background-color: #f0f8ff;
  border-radius: 4px;
}

.daypicker-container .DayPicker--interactionDisabled .DayPicker-Day {
  cursor: pointer;
}

.DayPicker-Day--disabled {
  color: #dce0e0 !important;
  pointer-events: none;
}

.priceLow {
  color: #26b5a9;
}

.priceHigh {
  color: #ec595d;
}

.todayPrice {
  font-size: 8px;
}

@media screen and (max-width: 767px) {
  .dayPickerWrap {
    z-index: 1;
    width: 100%;
  }
}

.message-strip {
  background-color: #ffc468;
  padding: 5px;
}

/* DayPicker styles */

.DayPicker {
  display: inline-block;
  font-size: 1rem;
}

.DayPicker-wrapper {
  position: relative;

  flex-direction: row;
  padding-bottom: 1em;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-Months {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.DayPicker-Month {
  display: table;
  margin: 0 1em;
  margin-top: 1em;
  border-spacing: 0;
  border-collapse: collapse;

  -webkit-user-select: none;

     -moz-user-select: none;

      -ms-user-select: none;

          user-select: none;
}

.DayPicker-NavBar {
}

.DayPicker-NavButton {
  position: absolute;
  top: 1em;
  right: 1.5em;
  left: auto;

  display: inline-block;
  margin-top: 2px;
  width: 1.25em;
  height: 1.25em;
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
  color: #8B9898;
  cursor: pointer;
}

.DayPicker-NavButton:hover {
  opacity: 0.8;
}

.DayPicker-NavButton--prev {
  margin-right: 1.5em;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAVVJREFUWAnN2G0KgjAYwPHpGfRkaZeqvgQaK+hY3SUHrk1YzNLay/OiEFp92I+/Mp2F2Mh2lLISWnflFjzH263RQjzMZ19wgs73ez0o1WmtW+dgA01VxrE3p6l2GLsnBy1VYQOtVSEH/atCCgqpQgKKqYIOiq2CBkqtggLKqQIKgqgCBjpJ2Y5CdJ+zrT9A7HHSTA1dxUdHgzCqJIEwq0SDsKsEg6iqBIEoq/wEcVRZBXFV+QJxV5mBtlDFB5VjYTaGZ2sf4R9PM7U9ZU+lLuaetPP/5Die3ToO1+u+MKtHs06qODB2zBnI/jBd4MPQm1VkY79Tb18gB+C62FdBFsZR6yeIo1YQiLJWMIiqVjQIu1YSCLNWFgijVjYIuhYYCKoWKAiiFgoopxYaKLUWOii2FgkophYp6F3r42W5A9s9OcgNvva8xQaysKXlFytoqdYmQH6tF3toSUo0INq9AAAAAElFTkSuQmCC);
}

.DayPicker-NavButton--next {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAwCAYAAAB5R9gVAAAABGdBTUEAALGPC/xhBQAAAXRJREFUWAnN119ugjAcwPHWzJ1gnmxzB/BBE0n24m4xfNkTaOL7wOtsl3AXMMb+Vjaa1BG00N8fSEibPpAP3xAKKs2yjzTPH9RAjhEo9WzPr/Vm8zgE0+gXATAxxuxtqeJ9t5tIwv5AtQAApsfT6TPdbp+kUBcgVwvO51KqVhMkXKsVJFXrOkigVhCIs1Y4iKlWZxB1rX4gwlpRIIpa8SDkWmggrFq4IIRaJKCYWnSgnrXIQV1r8YD+1Vrn+bReagysIFfLABRt31v8oBu1xEBttfRbltmfjgEcWh9snUS2kNdBK6WN1vrOWxObWsz+fjxevsxmB1GQDfINWiev83nhaoiB/CoOU438oPrhXS0WpQ9xc1ZQWxWHqUYe0I0qrKCQKjygDlXIQV2r0IF6ViEBxVTBBSFUQQNhVYkHIVeJAtkNsbQ7c1LtzP6FsObhb2rCKv7NBIGoq4SDmKoEgTirXAcJVGkFSVVpgoSrXICGUMUH/QBZNSUy5XWUhwAAAABJRU5ErkJggg==);
}

.DayPicker-NavButton--interactionDisabled {
  display: none;
}

.DayPicker-Caption {
  display: table-caption;
  margin-bottom: 0.5em;
  padding: 0 0.5em;
  text-align: left;
}

.DayPicker-Caption > div {
  font-weight: 500;
  font-size: 1.15em;
}

.DayPicker-Weekdays {
  display: table-header-group;
  margin-top: 1em;
}

.DayPicker-WeekdaysRow {
  display: table-row;
}

.DayPicker-Weekday {
  display: table-cell;
  padding: 0.5em;
  color: #8B9898;
  text-align: center;
  font-size: 0.875em;
}

.DayPicker-Weekday abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.DayPicker-Body {
  display: table-row-group;
}

.DayPicker-Week {
  display: table-row;
}

.DayPicker-Day {
  display: table-cell;
  padding: 0.5em;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
}

.DayPicker-WeekNumber {
  display: table-cell;
  padding: 0.5em;
  min-width: 1em;
  border-right: 1px solid #EAECEC;
  color: #8B9898;
  vertical-align: middle;
  text-align: right;
  font-size: 0.75em;
  cursor: pointer;
}

.DayPicker--interactionDisabled .DayPicker-Day {
  cursor: default;
}

.DayPicker-Footer {
  padding-top: 0.5em;
}

.DayPicker-TodayButton {
  border: none;
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  color: #4A90E2;
  font-size: 0.875em;
  cursor: pointer;
}

/* Default modifiers */

.DayPicker-Day--today {
  color: #D0021B;
  font-weight: 700;
}

.DayPicker-Day--outside {
  color: #8B9898;
  cursor: default;
}

.DayPicker-Day--disabled {
  color: #DCE0E0;
  cursor: default;
  /* background-color: #eff1f1; */
}

/* Example modifiers */

.DayPicker-Day--sunday {
  background-color: #F7F8F8;
}

.DayPicker-Day--sunday:not(.DayPicker-Day--today) {
  color: #DCE0E0;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside) {
  position: relative;

  background-color: #4A90E2;
  color: #F0F8FF;
}

.DayPicker-Day--selected:not(.DayPicker-Day--disabled):not(.DayPicker-Day--outside):hover {
  background-color: #51A0FA;
}

.DayPicker:not(.DayPicker--interactionDisabled)
  .DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover {
  background-color: #F0F8FF;
}

/* DayPickerInput */

.DayPickerInput {
  display: inline-block;
}

.DayPickerInput-OverlayWrapper {
  position: relative;
}

.DayPickerInput-Overlay {
  position: absolute;
  left: 0;
  z-index: 1;

  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.budgetSlider .rc-slider {
  margin: 10px 0px;
}

.nameInputWrapper .filtersOuter .rangeSlider,
.nameInputWrapper .filtersOuter .rc-slider,
.nameInputWrapper .filtersOuter {
  width: 308px;
}
.filtersOuter .rc-slider {
  cursor: pointer;
  position: relative;
  height: 14px;
  padding: 5px 0;

  border-radius: 6px;
  -ms-touch-action: none;
  touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.filtersOuter .rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.filtersOuter .rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 3px !important;
  border-radius: 6px;
  min-height: 3px !important;
}
.filtersOuter .rc-slider-track {
  position: absolute;
  left: 0;
  height: 3px !important;
  border-radius: 6px;
  background-color: #abe2fb;
}
.filtersOuter .rc-slider-handle {
  box-shadow: 0 1px 7px 0 rgba(140, 140, 140, 0.4);
  top: 8px !important;
  position: absolute;
  width: 14px !important;
  height: 14px !important;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.filtersOuter .rc-slider-handle:hover {
  border-color: #57c5f7;
}
.filtersOuter .rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.filtersOuter .rc-slider-handle:focus {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
  outline: none;
}
.filtersOuter .rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.filtersOuter .rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.filtersOuter .rc-slider-mark-text-active {
  color: #666;
}
.filtersOuter .rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.filtersOuter .rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.filtersOuter .rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  -webkit-animation-name: rcSliderTooltipZoomDownIn;
  animation-name: rcSliderTooltipZoomDownIn;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  -webkit-animation-name: rcSliderTooltipZoomDownOut;
  animation-name: rcSliderTooltipZoomDownOut;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
.amountWrapper {
  margin-top: 15px;
}

@media screen and (max-width: 480px) {
  .budgetSlider {
    width: inherit;
  }
  .filtersOuter .rangeSlider,
  .filtersOuter .rc-slider,
  .filtersOuter {
    width: 100%;
  }
  .amountWrapper.makeFlex {
    flex-direction: column;
  }
}

.dateDropdown .tvlrFormField {
  width: 33.33%;
  float: left;
}
.dateDropdown .tvlrFormField:first-child .dropdown-traveller > div {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.dateDropdown .tvlrFormField:nth-child(2) .dropdown-traveller > div {
  border-radius: 0;
  border-left: none;
  border-right: 0;
}
.dateDropdown .tvlrFormField:nth-child(3) .dropdown-traveller > div {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dateDropdown .date-err-border > div {
  border-color: #e53442;
}
.dateDropdown .tvlrFormField:first-child .date-err-border > div {
  border-right-color: #a5a5a5;
}
.dateDropdown .tvlrFormField:nth-child(3) .date-err-border > div {
  border-left-color: #a5a5a5;
}

.searchCityWrapper {
  width: 300px;
  height: 282px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 2;
  background: #fff;
  top: 70px;
  overflow-y: scroll;
}

.listWrapper .name {
  padding: 10px 0px 10px 4px;
  font-weight: 700;
}

.listWrapper .name:hover,
.listWrapper .name:focus {
  background-color: rgba(0, 140, 255, 0.64);
  color: #fff;
  cursor: pointer;
}

.listWrapper .disabled {
  opacity: 0.5;
  cursor: none;
}

.searchCityWrapper .citySearchIcon {
  position: absolute;
  width: 30px;
  height: 30px;
  background-position: -158px 1px;
}

.searchCityWrapper .citySearchInput {
  width: 100%;
  height: 30px;
  padding-left: 30px;
  border: 1px solid var(--background-color-main);
  border-radius: 4px;
}

.searchIcon.querySprite {
  height: 20px;
  width: 20px;
  display: block;
  background-position: -162px -4px;
  position: absolute;
  background-size: 250px 250px;
  top: 5px;
  left: 8px;
}

.nameInputWrapper .toCityWrapper .inputField {
  width: 100%;
}

.nameInputWrapper .toCityWrapper {
  position: relative;
}
.optHeader {
  color: grey;
  margin: 0px 4px;
}

@media screen and (max-width: 580px) {
  .searchCityWrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: auto;
    width: 100%;
    z-index: 999999;
  }
  .searchCityWrapper .backArrowGrey.left {
    transform: rotate(-180deg);
  }
  .searchCityWrapper .clear {
    position: absolute;
    right: 20px;
    text-transform: capitalize;
    top: 9px;
  }
  .searchCityWrapper .citySearchInput {
    border: 0px;
  }
  .searchCityWrapper .name {
    padding: 10px 30px;
  }
  .nameInputWrapper .toCityWrapper .inputField {
    width: 100%;
  }
}

.queryFormWrapper {
  padding: 20px;
}

.buttonList {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.buttonList.hide {
  display: none;
}

.queryFormWrapper .success {
  border: 1px solid rgba(51, 209, 143, 0.5);
}

.closeIcon {
  width: 24px;
  height: 24px;
  position: absolute;
  cursor: pointer;
  right: 24px;
  background-position: -3px -31px;
}

.backArrowGrey {
  width: 24px;
  height: 24px;
  position: absolute;
  background-position: -31px -2px;
}

.backArrowBlue {
  width: 24px;
  height: 24px;
  position: absolute;
  background-position: -106px -2px;
}

.backArrowBlack {
  width: 24px;
  height: 24px;
  position: absolute;
  background-position: -31px -24px;
}

.checkMarkIcon {
  background-position: 10px -3px;
  width: 45px;
  height: 29px;
  transform: scale(1.7);
}

.calendarIcon {
  background-position: -136px -7px;
  width: 24px;
  height: 24px;
}

.nextArrowWhite {
  background-position: -66px -36px;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 125px;
  transform: scale(1.7);
}

.redBorder .inputField,
.redBorder.mobileInputWrapper {
  border: 1px solid var(--msg-error-color-main);
}

.greenBorder .inputField {
  border: 1px solid #33d18f;
}

.dropdownOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.userDetailsWrapper {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.userDetailsWrapper .nameInputWrapper,
.userDetailsWrapper .emailInputWrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  margin-right: 10px;
  width: 47%;
}

.userDetailsWrapper .nameInputWrapper.expectedTravelMonth {
  position: relative;
}

.userDetailsWrapper .nameInputWrapper.expectedTravelMonth .customMonthCalendar {
  top: 71px;
}

.modalContent .userDetailsWrapper.three .daypicker-container.small {
  top: 0px;
}

.standaloneQueryForm .userDetailsWrapper.three .daypicker-container.small {
  top: 67px;
}

.inlineQueryForm .userDetailsWrapper.three .daypicker-container.small {
  top: 20px;
}

.userDetailsWrapper .nameInput {
  width: 294px;
}

.userDetailsWrapper .nameInput .inputField {
  font-weight: 700;
}

.userDetailsWrapper .emailInput .inputField {
  font-weight: 700;
}

.userDetailsWrapper .emailInput {
  width: 216px;
}

.userDetailsWrapper .mobileNumberWrapper {
  position: relative;
}

.userDetailsWrapper .mobileInputWrapper {
  width: 294px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 10px 15px;
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
}

.userDetailsWrapper .mobileNumber {
  border: 0px;
  width: inherit;
  -moz-appearance: textfield;
  font-weight: 900;
  padding-left: 90px;
}

.userDetailsWrapper input[type="number"]::-webkit-outer-spin-button,
.userDetailsWrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.userDetailsWrapper .nameInputWrapper.address {
  width: 65.5% !important;
}

.userDetailsWrapper .nameInputWrapper.pin {
  width: 30% !important;
}

.userDetailsWrapper .nameInputWrapper.checkin,
.userDetailsWrapper .nameInputWrapper.checkout {
  width: 47.75% !important;
}

@media screen and (max-width: 480px) {
  .queryFormWrapper .queryHeading {
    margin-bottom: 10px;
  }
}

.nameInputWrapper.traveller-form-v2 label {
  font-size: 14px;
  line-height: 18px;
  color: #9b9b9b;
  text-transform: capitalize;
}

.nameInputWrapper.traveller-form-v2 .inputField {
  border: 1px solid hsl(0, 0%, 80%);
  height: 40px;
}

.react-select-formV2__control {
  height: 40px;
}

.detailsInput::after {
  content: "*";
  color: var(--msg-error-color-main);
}

.buttonWrapper {
  font-size: 16px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-family: lato;
  border-radius: 25px;
  background-image: linear-gradient(72deg, #f0772c -8%, #f95776 105%);
  color: #fff;
  border: 0px;
  font-weight: 900;
  min-width: 145px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.blueGradientStyle {
  background-image: linear-gradient(to right, #53b2fe, #065af3);
  width: -webkit-fill-available;
}

.disabledStyle {
  background-image: unset;
  background-color: #000;
  opacity: 0.3;
  pointer-events: none;
}

.disabledStyle .btnText,
.disabledStyle .nextArrowWhite {
  opacity: 0.5;
}

.blueStyle {
  background-image: unset;
  background-color: #008cff;
}

.adtechSlider {
  height: 135px;
}

.adtechSlider .slick-slider,
.adtechSlider .slick-list,
.adtechSlider .slick-track,
.adtechSlider .slideItem {
  height: 100%;
}

.adtechSlider .slick-slider .slick-prev,
.adtechSlider .slick-slider .slick-next {
  width: 40px;
  height: 40px;
  box-shadow: none;
  font-size: 0;
  outline: none;
  border: none;
  cursor: pointer;
  background: var(--background-color-shade2);
  border-radius: 50%;
  position: absolute;
  top: 34%;
  z-index: 1;
  box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.2);
}

.adtechSlider .slick-slider .slick-next {
  right: -23px;
}

.adtechSlider .slick-slider .slick-prev {
  right: 98%;
}

.adtechSlider .slick-next:before,
.adtechSlider .slick-prev:before {
  border: solid #008cff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(-45deg);
  position: relative;
  right: 0;
  top: 0px;
  content: "";
}

.adtechSlider .slick-prev:before {
  transform: rotate(135deg);
  position: relative;
  right: 0;
  top: 0px;
  content: "";
}

.holAdtech > div img:first-child,
.holAdtechFallback img {
  height: 90px !important;
  width: 100% !important;
  border-radius: 10px !important;
}

.holAdtech > div,
.holAdtechFallback {
  width: 970px;
  margin: auto;
}

.holAdtech div > img {
  border-radius: 0px !important;
}

.planningHolidayModalWrapperV2 .holAdtech > div,
.planningHolidayModalWrapperV2 .holAdtechFallback > img {
  width: 580px !important;
  height: 103px !important;
}

.planningHolidayModalWrapperV2 .holAdtech > div {
  margin: auto;
}

.planningHolidayModalWrapperV2 .holAdtechFallback {
  margin-top: 50px;
}

.planningHolidayModalWrapperV2 .holAdtech {
  margin-top: 55px;
  margin-bottom: -25px;
}

.planningHolidayModalWrapperV2 .holAdtech div > img:first-child {
  height: 103px !important;
}

@media screen and (max-width: 480px) {
  .holAdtech,
  .holAdtechFallback {
    margin: auto;
  }

  .holAdtech > div,
  .holAdtechFallback {
    width: 90% !important;
    aspect-ratio: 328/120;
  }

  .holAdtechFallback img {
    height: 120px !important;
  }

  .holAdtech > div img:first-child {
    height: unset !important;
  }

  .planningHolidayModalWrapperV2 .holAdtech {
    margin-top: 0px;
  }

  .planningHolidayModalWrapperV2 .holAdtech > div {
    width: 100% !important;
    aspect-ratio: 320/50;
    height: unset !important;
  }

  .planningHolidayModalWrapperV2 .holAdtech div > img:first-child {
    height: unset !important;
  }
}

.contact-management-header-wrapper {
  border-radius: 16px;
  border: solid 1px #d8d8d8;
  background: linear-gradient(236deg, #e9d4ff -8.27%, #fff 53.01%);
  position: relative;
  padding: 32px 16px 16px;
  margin-bottom: 24px;
  margin-top: 28px;
  & .contact-management-header-icon-wrapper {
    width: 48px;
    height: 48px;
    background-image: linear-gradient(188deg, #3023ae 5%, #c86dd7 100%),
      linear-gradient(188deg, #3023ae 5%, #c86dd7 100%);
    position: absolute;
    left: 24px;
    top: -27px;
    border-radius: 50%;
    & .contact-management-header-icon {
      padding: 8px;
      width: 45px;
    }
  }
  & .headerText {
    font-size: 20px;
    font-weight: 900;
    color: #000;
  }
  & .subHeaderText {
    font-size: 14px;
    font-style: normal;
    color: var(--text-color-shade1);
    margin-top: 8px;
  }
  & .editTextBtn {
    margin-top: 8px;
    width: fit-content;
  }
}

.planningHolidayModalWrapperV2 .accordianSubHeading {
  margin-bottom: 16px;
}

.planningHolidayModalWrapperV2 .detailsBoxWrapper {
  padding: 17px 15px 24px 15px;
  margin-bottom: 24px;
  & .radioInputWrapper {
    flex-direction: column;
    & .radioInput {
      margin-top: 10px;
    }
  }
}

.planningHolidayModalWrapperV2 .travelDetailsTxt {
  color: rgba(0, 15, 33, 0.6);
}

.planningHolidayModalWrapperV2 .namasteIcon {
  width: 160px;
  height: 110px;
}

.planningHolidayModalWrapperV2 .completedStep {
  font-size: 20px;
  color: #4b4b4b;
}

.planningHolidayModalWrapperV2 .blueText {
  font-weight: bold;
  color: #008cff;
}

.planningHolidayModalWrapperV2 .underlineText {
  text-decoration: underline;
  cursor: pointer;
}
.headerQry:nth-child(1) {
  margin-top: 30px;
}

.planningHolidayModalWrapperV2 .queryFormBgProperties.calendarIcon {
  width: 24px;
  height: 24px;
  right: 5px;
  position: absolute;
  background: url(//jsak.mmtcdn.com/cruise/node/static/media/querySprite1.be6ee216112359155157.png)
    no-repeat;
  background-position: -137px -6px;
  background-size: 250px 250px;
  display: inline-block;
  font-size: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.content .checkbox-auth {
  input[type="checkbox"] {
    display: none;
  }
}
.content .checkbox-auth .box {
  background: #fff;
  border: 1px solid #979797;
  border-radius: 4px;
  display: inline-block;
  height: 18px;
  margin: 0 10px 0 0;
  position: relative;
  width: 18px;
  padding: 0px;
}

.content .checkbox-auth label {
  width: 100%;
  margin: 0px;
  cursor: pointer;
  display: inline-flex;
  justify-content: left;
  align-items: center;
}

.checkbox-auth {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.checkbox-auth input[type="checkbox"] {
  display: none;
}

.checkbox-auth label {
  width: 100%;
  margin: 0px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.checkbox-auth label span {
  transition-duration: 0.1s;
}

.checkbox-auth .box {
  background: #fff;
  border: 1px solid #979797;
  border-radius: 4px;
  display: inline-block;
  height: 18px;
  margin: 0 10px 0 0;
  position: relative;
  width: 18px;
  padding: 0px;
}

.checkbox-auth label .check {
  border-color: var(--background-color-shade2);
  border-image: none;
  border-style: none solid solid none;
  border-width: medium 2px 2px medium;
  height: 10px;
  left: 6px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: scale(1) rotate(45deg);
  transition-delay: 0.1s;
  width: 5px;
  z-index: 1;
}

.checkbox-auth .checkbox-label-checked .box {
  background: #008cff !important;
}

.checkbox-auth .checkbox-label-checked .check {
  opacity: 1 !important;
  transform: scale(1) rotate(45deg) !important;
}

@media screen and (max-width: 480px) {
  .planningHolidayModalWrapperV2 .completedStep {
    font-size: 18px;
  }
}
.planningHolidayModalWrapperV2 .modalContent {
  padding: 25px 25px;
}
.detailsBoxWrapper {
  padding: 15px;
  border-radius: 4px;
  border: 1px solid #e2e2e2;
  margin-bottom: 20px;
}

.borderBottom2 {
  border-bottom: 1px solid #e2e2e2;
  margin-bottom: 20px;
}

.planningHolidayModelWrapper .heading {
  font-size: 30px;
  color: #000;
  font-weight: 900;
  margin-bottom: 15px;
  margin-top: -25px;
}

.planningHolidayModelWrapper .namasteWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 44px -25px -25px 0px;
  position: relative;
}

.planningHolidayModelWrapper .contactDetailsMessage {
  font-size: 16px;
}

.planningHolidayModelWrapper .namasteText {
  color: #445978;
  font-weight: 900;
  font-size: 16px;
  margin-bottom: 10px;
}

.planningHolidayModelWrapper .namasteImg {
  height: 110px;
  position: absolute;
  right: 0px;
  bottom: -25px;
}

.planningHolidayModelWrapper .counts {
  color: #000f21;
  opacity: 0.6;
  font-size: 12px;
}

.planningHolidayModelWrapper .buttonWrapper.disabled {
  background-color: #9b9b9b;
}

.planningHolidayModelWrapper .buttonWrapper.disabled .btnText {
  opacity: 0.8;
  pointer-events: none;
}

.planningHolidayModelWrapper .accordianSubHeading {
  font-size: 20px;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  &.fabCtaHeader {
    font-size: 18px;
  }
}

.planningHolidayModelWrapper .infoMessageDetails {
  font-size: 18px;
  color: #249995;
}

.planningHolidayModelWrapper .disclaimer {
  color: #9b9b9b;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .planningHolidayModelWrapper ._Modal.modalCont {
    width: 100% !important;
    height: 100%;
    border-radius: 0px;
    top: 0px;
  }
  .planningHolidayModelWrapper .content {
    overflow-y: scroll;
    height: calc(100vh - 190px);
    padding-bottom: 60px;
  }

  .iframe-query .content {
    overflow-y: unset;
    height: unset;
  }
  .planningHolidayModelWrapper .heading {
    font-size: 24px;
    margin-top: 0px;
  }
  .planningHolidayModalWrapperV2 .travelDetailsTxt {
    display: none;
  }
  .planningHolidayModalWrapperV2 .buttonWrapperQuery {
    width: 100%;
  }
  .planningHolidayModelWrapper .accordianSubHeading {
    font-size: 16px;
    color: #000;
  }
  .planningHolidayModelWrapper .contactDetailsMessage {
    font-size: 12px;
    width: 91%;
  }
  .planningHolidayModelWrapper .infoMessageDetails {
    font-size: 12px;
  }
  .planningHolidayModelWrapper .blueArrow.active {
    top: 14px;
  }
  .userDetailsWrapper .nameInput {
    margin-right: 0px;
    width: -webkit-fill-available;
    width: -moz-available;
  }
  .userDetailsWrapper .mobileNumberWrapper,
  .userDetailsWrapper .emailInput,
  .userDetailsWrapper .nameInputWrapper,
  .userDetailsWrapper .emailInputWrapper,
  .userDetailsWrapper .mobileInputWrapper {
    width: -webkit-fill-available;
    width: -moz-available;
  }

  .planningHolidayModelWrapper .disclaimer,
  .planningHolidayModelWrapper .namasteWrapper {
    margin: 17px -25px 25px 0px;
  }

  .planningHolidayModelWrapper .buttonWrapper {
    border-radius: 6px;
    width: 100%;
  }
  .planningHolidayModelWrapper footer {
    bottom: 25px;
    position: absolute;
    width: 93%;
    padding-top: 10px;
    background-color: #fff;
    z-index: 1;
  }
  .iframe-query footer {
    position: unset;
  }
  .additionalDetailsWrapper .ratingWrapper {
    width: 88px;
    height: 34px;
    padding: 8px 20px;
  }
  .additionalDetailsWrapper .ratingWrapper::before {
    width: 88px;
    height: 34px;
  }
}

.querySprite.nextIcon {
  height: 18px;
  width: 18px;
  display: block;
  background-position: -107px -61px;
}

.toCityWrapper .listWrapper .name {
  padding-left: 15px;
}

@media screen and (max-width: 480px) {
  .planningHolidayModalWrapperV2 {
    .modalContent {
      padding: 25px 25px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      height: 100%;
      overflow: hidden;
      overflow-y: auto;
      .formContentWrapper {
        display: flex;
        flex: 1;
        flex-direction: column;
        overflow: hidden;
        width: 100%;
        .content {
          flex: 1;
          overflow-y: scroll;
          height: auto;
          padding-bottom: 0;
        }
      }
      footer {
        bottom: 25px;
        width: 93%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        height: 142px;
        padding-top: 8px;
        position: static;
      }
    }
  }
}

.modalContainer.popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
}
._Modal.modalCont {
  width: 750px;
  background: #fff;
  padding: 25px 0px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  z-index: 9999;
  margin-bottom: 100px;
}
._Modal.modalCont.small {
  margin-bottom: 0;
  top: 50%;
  transform: translate(-50%, -60%);
}
._Modal .close,
.modalContainer.popup .close {
  position: fixed;
  right: 13px;
  top: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
._Modal .close:before,
.modalContainer.popup .close:before {
  transform: rotate(45deg);
}
._Modal .close:after,
.modalContainer.popup .close:after {
  transform: rotate(-45deg);
}
._Modal .close:before,
.modalContainer.popup .close:before,
.modalContainer.popup .close:after,
._Modal .close:after {
  position: absolute;
  left: 8px;
  content: " ";
  height: 24px;
  width: 2px;
  background-color: #9b9b9b;
}
.bodyFixed {
  overflow: hidden;
}

.sendQuery-smallLoader {
  width: 25%;
  height: 17px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to right, #f3f4f7 10%, #e4e4e4 52%, #f3f4f7 100%) repeat
    scroll 0 0;
  filter: "progid: DXImageTransform.Microsoft.gradient( startColorstr='#f3f4f7', endColorstr='#e4e4e4', GradientType=0)";
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
}

.sendQuery-bigLoader {
  height: 40px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to right, #f3f4f7 10%, #e4e4e4 52%, #f3f4f7 100%) repeat
    scroll 0 0;
  filter: "progid: DXImageTransform.Microsoft.gradient( startColorstr='#f3f4f7', endColorstr='#e4e4e4', GradientType=0)";
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
}

.sendQuery-btnLoader {
  width: 200px;
  height: 33px;
  margin-bottom: 10px;
  background: rgba(0, 0, 0, 0)
    linear-gradient(to right, #f3f4f7 10%, #e4e4e4 52%, #f3f4f7 100%) repeat
    scroll 0 0;
  filter: "progid: DXImageTransform.Microsoft.gradient( startColorstr='#f3f4f7', endColorstr='#e4e4e4', GradientType=0)";
  background-size: 400% 400%;
  -webkit-animation: Gradient 3s ease infinite;
  -moz-animation: Gradient 3s ease infinite;
  animation: Gradient 3s ease infinite;
  border-radius: 15px;
  margin: 0 auto;
}

.inputNumberWrapper input[type="number"]::-webkit-outer-spin-button,
.inputNumberWrapper input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.otpHeader {
  margin-top: 25px;
}

.otpHeader .heading {
  margin-bottom: 8px;
}
.otpHeader .subHeading {
  margin-top: 8px;
}

.inputNumberWrapper input[type="number"] {
  -moz-appearance: textfield;
  width: inherit;
}

.otpInputWrapper {
  display: flex;
  margin-bottom: 97px;
  width: 410px;
  position: relative;
}

.inputNumberWrapper {
  width: inherit;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.inputNumberWrapper .inputField {
  padding-right: 100px;
  margin-bottom: 8px;
}

.resendCounter {
  position: absolute;
  right: 16px;
  border-bottom: 1px solid #979797;
  margin: 10px 0px;
  font-weight: 700;
  cursor: pointer;
}
.resendCounter.disabledOtp {
  color: #979797;
  cursor: default;
}

.resendEnabled {
  color: #008cff;
}

.resendCounter.linkText {
  border-bottom: 1px solid #008cff;
}

@media screen and (max-width: 480px) {
  .otpHeader.contentWrapper {
    width: 100%;
    height: 100%;
    padding: 25px 15px;
    border-radius: 0px;
  }
  .otpHeader .heading {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
  }
  .otpHeader .subHeading {
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.8);
  }
}

.thankyouHeader {
  font-size: 30px;
  font-weight: 900;
  color: #000;
  margin-bottom: 15px;
  margin-left: 8px;
  margin-top: 10px;
}

.thankyouHeader .closeIcon {
  top: 24px;
}

.thankYouModalWrapper .info {
  margin-bottom: 25;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 25px;
  margin-left: 8px;
}

@media screen and (max-width: 480px) {
  .thankYouModalWrapper.contentWrapper {
    width: 100% !important;
    height: 100%;
    padding: 25px 15px;
    border-radius: 0px;
    overflow-y: scroll;
  }
}
.requestReceivedWrapper {
  border: 1px solid #d4d4d4;
  width: max-content;
  position: relative;
  padding: 20px;
  border-radius: 4px;
  margin-top: 20px;
  margin-left: 8px;
}

.requestReceivedWrapper::before {
  width: 30px;
  content: "";
  border-radius: 50%;
  height: 28px;
  left: 45%;
  position: absolute;
  top: -24px;
  z-index: 3;
  background-color: #fff;
  border: 1px solid transparent;
  border-bottom: 1px solid #d4d4d4;
}

.requestReceivedWrapper::after {
  width: 30px;
  content: "";
  border-radius: 50%;
  height: 28px;
  left: 45%;
  bottom: -24px;
  position: absolute;
  background-color: #fff;
  border: 1px solid transparent;
  border-top: 1px solid #d4d4d4;
}

.requestReceivedWrapper .requestLocation {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
}

.requestHeading {
  font-size: 16px;
  font-weight: 900;
  color: #000;
  margin-bottom: 5px;
  padding-bottom: 12px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.16);
}

.requestReceivedWrapper .checkMarkIcon {
  margin-left: 17px;
  background-position: 4px 3px;
  width: 38px;
  height: 38px;
  transform: scale(1.5);
  margin-top: 10px;
  position: relative;
}

.completeIcon.querySprite {
  height: 50px;
  width: 50px;
  display: block;
  background-position: -2px -4px;
  background-size: 400px 400px;
  margin-left: 17px;
  margin-top: 8px;
}

.thankyouHeaderInfo {
  margin-bottom: 25;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 25px;
  margin-left: 8px;
}

@media screen and (max-width: 480px) {
  .requestReceivedWrapper {
    margin-top: 30px;
    width: -webkit-fill-available;
    width: -moz-fill-available;
    margin-left: 0px;
    padding: 34px 33px;
  }
}

.contentWrapper {
  position: relative;
  background: var(--background-color-shade2);
  z-index: 2;
  border-radius: 4px;
  padding: 25px;
}

.querySprite {
  background: url(//jsak.mmtcdn.com/cruise/node/static/media/querySprite1.be6ee216112359155157.png)
    no-repeat;
  display: inline-block;
  background-size: 400px 400px;
  font-size: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

._Modal.modalCont {
  width: 632px;
}
.planningHolidayModelWrapper .closeIcon.close:after,
.planningHolidayModelWrapper .closeIcon.close:before {
  background-color: black;
}
.planningHolidayModelWrapper .closeIcon.close {
  display: block;
}
.planningHolidayModelWrapper .close {
  display: none;
}

.dayPickerWrap {
  z-index: 1;
}

@media screen and (max-width: 480px) {
  ._Modal.modalCont {
    width: 100%;
    position: fixed;
    top: 0px;
    height: 100vh;
  }
  .modalContainer .close {
    z-index: 9999;
  }
}

.inlineQueryForm {
  position: relative;
  left: 0px;
  background: #fff;
  border-radius: 8px;
  margin-top: 30px;
}

.inlineQueryForm .heading {
  font-weight: 900;
  font-size: 30px;
}

.inlineQueryForm .toCityWrapper {
  width: 216px;
}

.inlineQueryForm .formContentWrapper {
  display: flex;
}

.inlineQueryForm header,
.inlineQueryForm .headerQry {
  padding: 16px;
  margin-top: 20px;
  min-width: 315px;
  width: 315px;
  border-right: 2px solid #e7e7e7;
}

.inlineQueryForm .heading.hide {
  display: none;
}

.inlineQueryForm .completedStep {
  font-size: 16px;
}

.inlineQueryForm .blueText {
  font-weight: 700;
}

.inlineQueryForm .underlineText {
  cursor: pointer;
}

.inlineQueryForm .detailsBoxWrapper {
  border: 0px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.inlineQueryForm .content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px;
  padding-bottom: 0px;
  width: 100%;
}

.inlineQueryForm footer {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.inlineQueryForm .namasteWrapper {
  display: flex;
  align-items: center;
  flex-flow: row-reverse;
}

.inlineQueryForm .namasteText {
  margin-bottom: 8px;
  color: #445978;
  font-weight: 900;
  font-size: 16px;
}

.inlineQueryForm .counts {
  color: #000f21;
  opacity: 0.6;
  font-size: 12px;
}

.inlineQueryForm .textWrapper {
  margin-top: 30px;
  margin-left: 30px;
}

.inlineQueryForm .buttonWrapperQuery {
  padding-right: 56px;
  margin-top: 50px;
  position: relative;
}

.inlineQueryForm .namasteImg {
  height: 101px;
}

.inlineQueryForm .hotelStar2 .toCityWrapper {
  width: unset !important;
}

.inlineQueryForm .expectedTravelDate .dayPickerWrap,
.inlineQueryForm .date .dayPickerWrap {
  z-index: 2;
  top: -20px;
  position: relative;
}

.inlineQueryForm .checkbox-auth {
  position: absolute;
  width: auto;
  left: 345px;
}
.inlineQueryForm .checkbox-auth input[type="checkbox"] {
  display: none;
}
.inlineQueryForm .checkbox-auth label {
  width: 100%;
  margin: 0px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.inlineQueryForm .checkbox-auth label span {
  transition-duration: 0.1s;
}

.inlineQueryForm .checkbox-auth .box {
  background: #fff;
  border: 1px solid #979797;
  border-radius: 4px;
  display: inline-block;
  height: 18px;
  margin: 0 10px 0 0;
  position: relative;
  width: 18px;
  padding: 0px;
}

.inlineQueryForm .checkbox-auth label .check {
  border-color: var(--background-color-shade2);
  border-image: none;
  border-style: none solid solid none;
  border-width: medium 2px 2px medium;
  height: 10px;
  left: 6px;
  opacity: 0;
  position: absolute;
  top: 2px;
  transform: scale(1) rotate(45deg);
  transition-delay: 0.1s;
  width: 5px;
  z-index: 1;
}

.inlineQueryForm .checkbox-auth .checkbox-label-checked .box {
  background: #008cff !important;
  z-index: 0;
}

.inlineQueryForm .checkbox-auth .checkbox-label-checked .check {
  opacity: 1 !important;
  transform: scale(1) rotate(45deg) !important;
}

.inlineThankyouWrapper {
  display: flex;
  padding: 42px 52px;
  justify-content: space-between;
}

.inlineQueryForm header.otpHeader {
  padding: 0px;
  margin-bottom: 20px;
}

.inlineQueryForm header.thankyouHeader {
  border: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-left: 8px;
  width: inherit;
}

.inlineOtpWrapper {
  display: flex;
  padding: 16px;
}

.inlineOtpWrapper .otpInputWrapper {
  margin-bottom: 0px;
}

.inlineQueryForm .inlineOtpFooter {
  padding: 0 16px 16px 0px;
}

.inlineQueryForm .queryFormBgProperties {
  width: 24px;
  height: 24px;
  right: 5px;
  position: absolute;
  background: url(//jsak.mmtcdn.com/cruise/node/static/media/querySprite1.be6ee216112359155157.png)
    no-repeat;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto;
  background-position: -137px -6px;
  background-size: 250px 250px;
  display: inline-block;
  font-size: 0px;
}

.inlineQueryForm .searchIcon.querySprite {
  top: 6px;
  left: 6px;
}

.standaloneQueryForm .searchIcon.querySprite {
  top: 10px;
}

.inlineQueryForm .requestReceivedWrapper {
  margin-right: 70px;
  margin-bottom: 20px;
  align-items: center;
  display: flex;
}

.inlineQueryForm .nameInputWrapper .toCityWrapper {
  width: unset !important;
}

.inlineQueryForm .radioInput {
  margin-left: 0px;
}

.inlineQueryForm .three .radioInputWrapper.nameInputWrapper,
.inlineQueryForm .two .radioInputWrapper.nameInputWrapper {
  width: 97% !important;
}

.inlineQueryForm .three .nameInputWrapper {
  width: unset !important;
  min-width: 32%;
}

.inlineQueryForm .two .nameInputWrapper,
.inlineQueryForm .one .nameInputWrapper {
  width: unset !important;
  min-width: 48%;
}

.actionButtonsContainer {
  background: #fff2d1;
  width: 75px;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0px 6px;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 8px 0 rgba(68, 68, 68, 0.28);
}

.actionButtonsContainer li {
  padding: 15px 0px;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.actionButtonsContainer li::after {
  opacity: 0.43;
  position: absolute;
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 1px;
  bottom: 0;
  content: "";
}

.actionButtonsContainer li:last-child::after {
  background: none;
}

.icon34 {
  width: 34px;
  height: 34px;
}

.holidaySpritePackageCard {
  background-image: url(//jsak.mmtcdn.com/cruise/node/static/media/holSpriteListingV10.583ed19ee65a00ceec64.png);
  display: inline-block;
  background-size: 200px 200px !important;
  font-size: 0px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.holidaySpritePackageCard.needHelpIcon {
  background-position: -141px -57px;
  width: 24px;
  height: 24px;
}

.holidaySpritePackageCard.chatIcon {
  background-position: -173px -4px;
  width: 24px;
  height: 24px;
}

.holidaySpritePackageCard.queryIcon {
  background-position: -113px -56px;
  width: 24px;
  height: 24px;
}

.holidaySpritePackageCard.fabCloseIcon {
  background-position: -167px -58px;
  width: 18px;
  height: 18px;
}

.holidaySpritePackageCard.branchLocatorIcon {
  background-position: -162px -29px;
  width: 24px;
  height: 24px;
}

.contactManagementWrapper {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 6;
}

.contactManagementWrapper ul,
.contactManagementWrapper .closeBtnWrapper {
  padding: 0 32px 24px 0;
  max-width: 300px;
}

.contactManagementWrapper .fabIcon,
.contactManagementWrapper .iconWrapper {
  text-align: center;
  position: relative;
  background: linear-gradient(242deg, #EBD7FE 0%, #FEFEFE 51.91%);
  box-shadow: 0px 9px 14.8px 0px rgba(100, 100, 100, 0.25);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactManagementWrapper .iconWrapper.options {
  width: 56px;
  height: 56px;
  z-index: 2;
}

.glow-button-wrapper {
  position: relative;
  display: inline-block;
  padding: 2px;
  border-radius: 16px;
  background: transparent;
  overflow: hidden;
}

.glow-button::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -20px;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, #f00, #f00, transparent, transparent, transparent);
  animation: animateBorder 4s linear infinite;
  z-index: 0;
  border-radius: 16px;
  filter: blur(8px);
}

.glow-button {
  position: relative;
    background: transparent;
    border-radius: 16px;
    z-index: 1;
    display: flex
;
    align-items: center;
    gap: 5px;
}

@keyframes animateBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.ctaCardIcon {
  width: 48px;
    height: 48px;
    padding: 10.2px;
    border-radius: 38.4px;
    background: var(--Darker-Gradients-Dark-Purple, linear-gradient(225deg, #3023AE 0%, #C86DD7 100%));
    box-shadow: 0px 1.219px 8.53px 0px rgba(0, 0, 0, 0.20);
    position: absolute;
    top: -22px;
    z-index: 2;
    left: 18px;
}

.ctaCard {
  padding: 32px 16px 16px 16px;
}

.ctaCardText {
  color: black;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 20px;
}

.ctaCardSubText {
  color: #757575;
    font-family: Lato;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;
}

.ctaCardCtaBtn {
  margin-top: 16px;
}

.ctaCardBtn {
  width: 100%;
  border-radius: 8px !important;
  cursor: pointer;
}

.ctaCardBtnText {
  color: var(--Content-White, #FFF);
text-align: center;
/* Labels/Small(W3) */
font-family: Lato;
font-size: 12px;
font-style: normal;
font-weight: 900;
line-height: normal;
}

.ctaCardBtnIcon {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 0px;
  position: relative;
  top: 1px;
}

.contactManagementWrapper .needHelpButtonWrapper {
  display: flex;
  align-items: center;
  padding: 16px;
}

.contactManagementWrapper .needHelpText {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.contactManagementWrapper .fabIcon:hover {
  width: auto;
  border-radius: 50px;
  padding: 20px;
}

.contactManagementWrapper .fabIcon:hover .btnText {
  display: block;
  margin-left: 15px;
  color: #fff;
}

.contactManagementWrapper .fabIcon:not(:last-child) {
  margin-bottom: 10px;
}

.contactManagementWrapper .btnText {
  display: none;
}

.contactManagementWrapper .closeBtnWrapper .btnText {
  display: block;
  margin-left: 15px;
  color: #000;
}

.contactManagementWrapper .optionsWrapper {
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  width: max-content;
  position: absolute;
  right: 0px;
  bottom: 70px;
  padding: 0px;
  /* transform: scale(1.25); */
}

.contactManagementWrapper .optionsWrapper .option {
  display: flex;
  width: auto;
  align-items: center;
  /* height: 40px; */
  padding: 17px 16px 16px 15px;
}

.contactManagementWrapper .optionsWrapper .option svg {
  margin-left: 10px;
  transform: rotate(90deg);
}

.contactManagementWrapper .optionsWrapper .option .ctaBtnWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 12;
}

.contactManagementWrapper .optionsWrapper .option .ctaImageWrapper {
  width: 37px;
  height: 37px;
  background-image: linear-gradient(188deg, #3023ae 5%, #c86dd7 100%),
    linear-gradient(188deg, #3023ae 5%, #c86dd7 100%);
  margin-right: 10px;
  border-radius: 50%;
}

.contactManagementWrapper .optionsWrapper .option .ctaImageWrapper img {
  width: 100%;
  height: 100%;
  padding: 8px;
}

.contactManagementWrapper .optionsWrapper .option:first-child {
  border-radius: 4px 4px 0px 0px;
  padding-top: 34px;
}

.contactManagementWrapper .optionsWrapper .option:hover {
  background: #eaf5ff;
}

.contactManagementWrapper .optionsWrapper .option:hover:first-child {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.contactManagementWrapper .optionsWrapper .option .ctaBtnText {
  font-size: 14px;
  font-weight: 900;
  color: #000;
}

.contactManagementWrapper .optionsWrapper .option .ctaBtnSubText {
  font-size: 12px;
  font-weight: normal;
  color: var(--text-color-shade1);
}

.contactManagementWrapper .optionsWrapper .horizontalLine {
  width: 90%;
  position: relative;
  display: block;
  border-top: 1px solid #d4d4d4;
  height: 1px;
  margin: auto;
}

.contactManagementWrapper .optionsWrapper .horizontalLine:last-child {
  padding-bottom: 20px;
  border: 0px;
}

.contactManagementWrapper .backgroundOverlay {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1;
  cursor: auto;
  opacity: 0.7;
  background-color: #000;
}

@media all and (min-width: 320px) and (max-width: 767px) {
  /* Need Help */
  .needHelpPopupWrapper {
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .single-cta-button {
    z-index: 1;
    position: fixed;
    bottom: 20px;
    right: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #ff5155;
    border-radius: 30px;
    padding: 6px 14px;
    cursor: pointer;
    box-shadow: 5px 5px 15px -7px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 5px 5px 15px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 5px 5px 15px -7px rgba(0, 0, 0, 0.75);
  }

  .cta-icon {
    position: relative;
    right: 5px;
  }

  .cta-label {
    position: relative;
    right: 10px;
    font-weight: 900;
  }

  .popupFadein {
    animation: fadein 0.5s;
    display: flex;
  }

  .popupFadeOut {
    animation: fadeout 0.5s;
    display: none;
  }

  @keyframes fadein {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  @keyframes fadeout {
    from {
      opacity: 1;
    }

    to {
      opacity: 0;
    }
  }

  .needHelpWrapperInner {
    position: absolute;
    margin-bottom: 20px;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    flex-direction: column;
    padding-right: 15px;
  }

  .needHelpPopupWrapper .iconWrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    box-shadow:
      0 2px 4px -1px rgba(0, 0, 0, 0.2),
      0 1px 10px 0 rgba(0, 0, 0, 0.12),
      0 4px 5px 0 rgba(0, 0, 0, 0.14);
  }

  .iconNeedHelpHolder {
    background-image: linear-gradient(rgb(255, 62, 94), rgb(255, 127, 63));
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
      0 2px 4px -1px rgba(0, 0, 0, 0.2),
      0 1px 10px 0 rgba(0, 0, 0, 0.12),
      0 4px 5px 0 rgba(0, 0, 0, 0.14);
  }

  .iconHelpList li {
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: flex-end;
  }

  .iconHelp {
    background-image: url(https://jsak.mmtcdn.com/holidays/rn/images/ea91f180_ic_contact.png);
    width: 23px;
    height: 20px;
  }

  .needHelpSprite {
    background-image: url(//jsak.mmtcdn.com/cruise/node/static/media/sprite_needHelp.83b7692b8cadb6652431.png);
    background-repeat: no-repeat;
    background-size: 100%;
    display: flex;
    width: 120px;
    height: 480px;
  }

  .needHelpSprite.queryIcon {
    width: 60px;
    height: 60px;
    background-position: 0 0;
  }

  .needHelpSprite.chatIcon {
    width: 60px;
    height: 60px;
    background-position: 0 -60px;
  }

  .needHelpSprite.contactIcon {
    width: 60px;
    height: 60px;
    background-position: 0 -120px;
  }

  .needHelpSprite.branchIcon {
    width: 60px;
    height: 60px;
    background-position: 0 -180px;
  }

  .needHelpHeadPhoneIcon {
    position: fixed;
    right: 5px;
    bottom: 9px;
    background: url(//jsak.mmtcdn.com/cruise/node/static/media/ic_headphones.4dd9b9f7ed39f5666d1e.png);
    width: 76px;
    height: 76px;
    z-index: 8;
    background-size: 100%;
    display: block;
  }
}

.padding7 {
  padding: 7px;
}

.appendRight7 {
  margin-right: 7px;
}

.padding3 {
  padding: 3px;
}

.needHelpWrapperInner #CallUs #callIcon {
  margin: 12px;
}

.errorActionButton .fabIcon {
  background: linear-gradient(to right, #53B2FE, #065AF3);
  padding: 12px 24px;
  border-radius: 8px;
  margin: 80px 25px;
  cursor: pointer;
  align-items: center;
  display: flex;
}

.errorActionButton ul {
  justify-content: center;
}

.errorActionButton .fabIcon .btnText {
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  margin-left: 10px;
  text-transform: uppercase;
}

/*-- Header --*/
.pageContainer {
  width: 1200px;
  margin: 0 auto;
}
.topHeader {
  padding: 24px 0;
  width: 100%;
  z-index: 3;
  background-image: linear-gradient(to bottom, #051320, #174476);
  height: 124px;
}
.reviewHead {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) { 
  .pageContainer {    
    width: 100%;
    padding: 16px;
    background-color: #f2f2f2;
  }
  .topHeader {
    position: fixed;
    z-index: 9;
    top: 0;
    background-color: white;
    background-image: none;
    height: 70px;
    padding: 25px 16px 10px 16px;
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  }
  .reviewHead {
    height: auto;
    padding: 0;
    color: black;
    font-size: 16px;
    margin-bottom: 4px;
  }
}
.reviewPageV3LoadingBody {
  background-color: #fff;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.reviewPageV3LoadingBody .topSection {
  background-color: #ffff;
}

.loadingShimmer {
  background: linear-gradient(
    120deg,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
  animation: dynamicv3Shimmer 2.5s infinite linear;
  position: relative;
  background-size: 400% 400%;
}

@-webkit-keyframes dynamicv3Shimmer {
  0% {
    background-position: -200% 200%;
  }
  100% {
    background-position: 200% -200%;
  }
}

@-moz-keyframes dynamicv3Shimmer {
  0% {
    background-position: -200% 200%;
  }
  100% {
    background-position: 200% -200%;
  }
}
@-o-keyframes dynamicv3Shimmer {
  0% {
    background-position: -200% 200%;
  }
  100% {
    background-position: 200% -200%;
  }
}

@keyframes dynamicv3Shimmer {
  0% {
    background-position: -200% 200%;
  }
  100% {
    background-position: 200% -200%;
  }
}

.loaderBoxH7 {
  height: 7px;
}

.loaderBoxH8 {
  height: 8px;
}

.loaderBoxH9 {
  height: 9px;
}

.loaderBoxH11 {
  height: 11px;
}

.loaderBoxH13 {
  height: 13px;
}

.loaderBoxH15 {
  height: 15px;
}

.loaderBoxH16 {
  height: 16px;
}

.loaderBoxH17 {
  height: 17px;
}

.loaderBoxH19 {
  height: 19px;
}

.loaderBoxH21 {
  height: 21px;
}

.loaderBoxH23 {
  height: 23px;
}

.loaderBoxH24 {
  height: 24px;
}

.loaderBoxH29 {
  height: 29px;
}

.loaderBoxH30 {
  height: 30px;
}

.loaderBoxH32 {
  height: 32px;
}

.loaderBoxH34 {
  height: 34px;
}

.loaderBoxH35 {
  height: 35px;
}

.loaderBoxH36 {
  height: 36px;
}

.loaderBoxH39 {
  height: 39px;
}

.loaderBoxH40 {
  height: 40px;
}

.loaderBoxH49 {
  height: 49px;
}

.loaderBoxH60 {
  height: 60px;
}

.loaderBoxH82 {
  height: 82px;
}

.loaderBoxH84 {
  height: 84px;
}

.loaderBoxH91 {
  height: 91px;
}

.loaderBoxH130 {
  height: 130px;
}

.loaderBoxH134 {
  height: 134px;
}

.loaderBoxH160 {
  height: 160px;
}
.loaderBoxH200 {
  height: 200px;
}
.loaderBoxH380 {
  height: 380px;
}
.loaderBoxW131 {
  width: 131px;
}
.loaderBoxW156 {
  width: 156px;
}
.loaderBoxW302 {
  width: 302px;
}
.loaderBoxW361 {
  width: 361px;
}
.loaderBoxW518 {
  width: 518px;
}
.loaderBoxW592 {
  width: 592px;
}
.width20 {
  width: 20%;
}
.width30 {
  width: 30%;
}
.width40 {
  width: 40%;
}
.width50 {
  width: 50%;
}
.width60 {
  width: 60%;
}
.width70 {
  width: 70%;
}
.width80 {
  width: 80%;
}
.width90 {
  width: 90%;
}
.width100 {
  width: 100%;
}
.width48 {
  width: 48px;
}
.width126 {
  width: 126px;
}
.width143 {
  width: 143px;
}
.width250 {
  width: 250px;
}

.circleLoader {
  width: 32px;
  height: 32px;
  z-index: 1;
  border: 2px solid white;
  border-radius: 50%;
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
}

.circleLoader1 {
  width: 18px;
  height: 18px;
  z-index: 1;
  border: 2px solid white;
  border-radius: 50%;
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
}
.circleLoader2 {
  width: 23px;
  height: 23px;
  z-index: 1;
  border: 2px solid white;
  border-radius: 50%;
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
}
.squareLoading {
  width: 32px;
  height: 32px;
  z-index: 1;
  border: 2px solid white;
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
}
.squareLoading1 {
  width: 18px;
  height: 18px;
  z-index: 1;
  border: 2px solid white;
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
}
.squareLoading2 {
  width: 23px;
  height: 23px;
  z-index: 1;
  border: 2px solid white;
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
}

.reviewPageV3LoadingBody .holidayDtlWrapper {
  background: #fff;
  position: relative;
  top: inherit;
  border: 1px solid #e3e7eb;
  padding: 0px;
}
.loadingOuter {
  border-bottom: 1px solid #eee;
  padding: 20px;
}
.paddingLR30 {
  padding-left: 30px;
  padding-right: 30px;
}
.paddingLR25 {
  padding-left: 25px;
  padding-right: 25px;
}
.paddingLR15 {
  padding-left: 15px;
  padding-right: 15px;
}
.reviewPageV3LoadingBody .offersSection {
  background: #ffffff;
  border: 1px solid #e3e7eb;
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.11);
  border-radius: 4px 4px 0px 0px;
}
.reviewPageV3LoadingBody .bgTop {
  background: var(--color-top-nav, #0a223d);
}
.reviewPageV3LoadingBody .rightSection {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
}

.reviewPageV3LoadingBody .fareSummary {
  padding: 0;
  background-color: #fff;
  border-color: #d8d8d8;
}

.reviewPageV3LoadingBody .couponSepText {
  top: -34px;
}

.primaryBtn.changeColor {
  background: linear-gradient(
    to left,
    rgba(249, 250, 251, 1) 0%,
    rgba(235, 239, 242, 1) 70%
  );
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
}

.reviewPageV3LoadingBody .holidayDtlWrapper {
  height: unset;
}

.paddingBottom39 {
  padding-bottom: 39px;
}

.paddingBottom8 {
  padding-bottom: 8px;
}

.imageLoaderContainer {
  background-size: cover;
}

.imageLoaderContainer > img {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.object-cover > img {
  object-fit: cover;
}

.imageLoaderContainer > img.active {
  opacity: 1;
}

.rounded-md {
  border-radius: 0.375rem;
}

.bookingDetailsWrapper {
  border-radius: 16px;
  background-color: white;
  box-shadow: 0px 1px 8px 0px #0000002e;
}

.bookingDetailsWrapper.up {
  position: sticky;
  top: 63px;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.25);
  border-radius: 4px 4px 0px 0px;
  overflow: hidden;
  z-index: 3;
}

.bookingHead {
  color: #000;
  align-items: center;
  padding: 16px;
}

.bookingDates {
  border-bottom: 1px dashed #d8d8d8;;
  border-top: 1px dashed #d8d8d8;
  background: #f2f2f2;
  margin: 4px 0;
}

.bookingDatesLeft {
  border-right: 1px solid #ffffff;
  flex: 1;
  padding: 10px 20px;
}

.nightsDtl {
  background: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paxCountHeader {
  padding: 10px 35px;
  min-width: 200px;
  display: flex;
  align-items: center;
  font-size:16px;
  line-height:20px;
  color:#000000;
}

.reviewSprite.iconPosition {
  margin-right: 5px;
}
.height22 {
  height:22px;
}

.bookingHeadingReview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #000;
  padding: 16px 22px;
}

.bookingHeadingReview .bookingTitle {
  font-size:22px;
  color:#000000;
  line-height:26px;
  font-weight:900;
  margin-bottom:10px;
}

.bookingHeadingReview .bookingBreadCrumbs {
  font-size: 16px;
  line-height:20px;
  color: #000000;
  font-weight: 400;
}
.bookingDatesLeft span.dateHeadlineText {
  font-size:22px;
  line-height:26px;
  font-weight:900;
  color:#000000;
  margin-bottom:3px;
  white-space: nowrap;
}
.location + .location::before {
  display: inline-block;
  white-space: pre;
  width: 15px;
  height: 9px;
  background-image: url(//jsak.mmtcdn.com/cruise/node/static/media/arrow-icon.a1b6370b10910044b50c.png);
  background-size: contain;
  background-repeat: no-repeat;
  rotate: 180deg;
  content: "";
  margin-right:5px;
}
.secondaryColor {
  color: #757575;
}

.listingContainer :last-child {
  margin-bottom: 0;
}
.listingContainer li {
  margin-bottom: 12px;
  font-size:14px;
  color:#4a4a4a;
  font-weight:400;
  list-style: disc;
  margin-left:16px;
}
.listingContainer li:last-child {
  margin-bottom: 0;
}
.bookingIDText {
  font-size: 14px;
  text-align: left;
  color: #9b9b9b;
}
.bookingID {
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  color: #000;
  margin-right: 10px;
}
.cabinDetailsWrapper {
  padding:20px 20px 4px 20px;
}
.bgLineContainer {
  position: relative;
  width: 100%;
  text-align: center;
}
.dotted-line {
  border-top: 1px dotted #000000;
  width: 100%;
  position: relative;
  top: 50%;
}
.nightsDtl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.marginLR10 {
  margin:0 10px;
}

.paxTitleWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size:18px;
  line-height:22px;
  color:#000000;
  font-weight:900;
  margin-bottom:4px;
}

@media screen and (max-width: 768px) { 
  .bookingBreadCrumbs {
    color: #4a4a4a;
    padding: 0px 16px 12px 16px;
    font-size: 13px;
    line-height: 16px;
  }
  .bookingDates {
    flex-direction: column;
    background: #fff;
    border-bottom: none;
    border-top: none;
    padding: 0px 16px;
    margin:0;
  }
  .bookingDatesLeft {
    border-right: none;
    flex: 1;
    padding:8px 0;
    border-top:1px solid #d8d8d8;
    border-bottom:1px solid #d8d8d8;
  }
  .paxCountHeader {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    font-size:13px;
    line-height:17px;
    border-bottom:1px solid #d8d8d8;
  }
  .marginLR10 {
    margin:0 6px;
  }
  .noShow{
    display: none;
  }
  .bookingHeadingReview {
    flex-direction: row-reverse;
    padding:16px 16px 0px 16px;
    align-items: normal;
  }
  .bookingHeadingReview .bookingTitle {
    font-size:19px;
    line-height:22px;
  }
  .bookingHeadingReview .bookingBreadCrumbs {
    color: #4a4a4a;
    padding: 0px 16px;
    font-size: 13px;
    line-height:16px;
  }
  .mRightText {
    text-align: right;
  }
  .bookingDatesLeft span.dateHeadlineText {
    font-size:15px;
    line-height:19px;
  }
  .paxTitleWrapper {
    font-size:15px;
    line-height:19px;
  }
  .cabinDetailsWrapper{
    padding:12px 16px 1px 16px;
  }
}
.viewMoreLessCta {
  padding: 12px;
  background: transparent;
  font-size:14px;
  font-weight:700;
  color: var(--primary-color-blue);
  cursor: pointer;
}

.rightTopSection {
  position: relative;
  padding-bottom: 16px;
}
.paxCount {
  color: #6d7278;
  font-weight: 500;
}
.priceBreakUpSection {
  background-color: #ffffff;
  border-radius: 16px 16px 0 0;
  padding: 16px 12px 8px 12px;
}
.fareSummary {
  border: 1px solid #d8d8d8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 16px;
}
.fareBreakupTitle {
  font-size:14px;
  color: var(--primary-color-blue);
  font-weight:700;
  margin-bottom:16px;
}
.btnContainer {
  position: relative;
}
.btnContainer .primaryBtn {
  font-size:16px;
}
.tncContainer {
  display: flex;
  background-color: var(--background-color-shade2);
}
.tncContainer .checkboxLabel {
  & .customCheckbox {
    & input {
  width:18px;
  height:18px;
}
}
}
.termsText {
  font-size:12px;
  line-height:18px;
  font-weight:400;
  color:#757575;
}
.termsText a {
  color: var(--primary-color-blue);
  cursor: pointer;
  font-weight:700;
}
.proceedToPayContainer {
  background-color: var(--background-color-shade2);
  padding: 16px 0 0 0;
}
.fareBreakup {
  border-bottom: 1px solid #ddd;
}
.rightSecWrap .fareBreakup:last-child {
  border: none;
}
.fareBreakupContainer {
  position: absolute;
  margin-top: -61px;
}

@media screen and (max-width: 768px) {
  .proceedToPayContainer {
    padding: 0;
    min-width: 124px;
    border-radius: 8px;
  }
}

.modalContainer.popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
}
._Modal.modalCont {
  width: 750px;
  background: #fff;
  padding: 25px 0px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  z-index: 9999;
  margin-bottom: 100px;
}
._Modal.modalCont.small {
  margin-bottom: 0;
  top: 50%;
  transform: translate(-50%, -60%);
}
._Modal .close,
.modalContainer.popup .close {
  position: fixed;
  right: 13px;
  top: 12px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
._Modal .close:before,
.modalContainer.popup .close:before {
  transform: rotate(45deg);
}
._Modal .close:after,
.modalContainer.popup .close:after {
  transform: rotate(-45deg);
}
._Modal .close:before,
.modalContainer.popup .close:before,
.modalContainer.popup .close:after,
._Modal .close:after {
  position: absolute;
  left: 8px;
  content: " ";
  height: 24px;
  width: 2px;
  background-color: #9b9b9b;
}
.bodyFixed {
  overflow: hidden;
}

.tncModal {
  padding: 0 20px;
  /* min-height: 485px; */
}

.tncModal p {
  margin-left: 7.5px;
}

.tncModal ul {
  margin-left: 7.5px;
}

.tncModal li span:first-child {
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid #979797;
  margin: 7px 10px 0 0;
}

.borderRadius8 {
  border-radius: 8px !important;
}

.padding13 {
  padding: 14px 24px !important;
}

.prepayment-error-popup {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 200px;
}

.checkboxLabel {
  position: relative;
  left: 0;
  opacity: 100%;
  display: inline-block;
  color: blue;
  line-height: 1.5;
  min-height: 25px;

  .customCheckbox {
    input {
      position: relative;
      left: 0;
      opacity: 100%;
      margin-top: 2px;
    }
  }
}

.tncContainer {
    display: flex;
    background-color: var(--background-color-shade2);
  }
  span.hyperLinkText {
    color: var(--primary-color-blue);
    cursor: pointer;
  }
  
  @media screen and (max-width: 768px) { 
    .tncContainer {
      padding: 0;
      background-color: inherit;
      margin-bottom: 120px;
    }
  }
.rightSecWrap {
  padding: 10px 20px;
}
.right-sticky-container {
  position: fixed;
  top: 62px;
  background: #eaf5ff;
  box-sizing: border-box;
  width: 288px;
  z-index: 2;
  border-radius: 4px 4px 0px 0px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.3);
  margin-bottom: 20px;
}
.rightTopSection {
  position: relative;
  padding-bottom: 16px;
  background: #eaf5ff;
  border: 1px solid #d8d8d8;
  border-radius: 8px 8px 0 0;
  padding: 16px;
  height: 127px;
}
.right-sticky-payment {
  padding: 15px 15px 20px 15px;
}
.stickyPaymentButton {
  height: 40px;
  background: #eaf5ff;
  width: 288px;
  padding: 15px 15px 50px 15px;
  right: 15px;
  top: -6px;
  border-bottom: 1px solid rgba(155, 155, 155, 0.3);
}
.rightSectionFareContainer{
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 25px;
}
.dotWrapper {
  width:4px;
  height:4px;
  border-radius: 50%;
  background-color: #757575;
  display: inline-block;
  margin:0 5px;
}
.whiteCardWrapper {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.18);
  flex-grow: 0;
  margin: 0;
}

.whiteCardWrapper .cardTitle {
  font-size: 18px;
  line-height:22px;
  font-weight: 900;
  color: #000000;
}
.whiteCardWrapper .cardSubTitle {
  font-size: 16px;
  line-height:20px;
  color:#4a4a4a;
  font-weight:400;
  padding-left:8px;
}
.cardHeaderWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding:20px;
  cursor: pointer;
}
.paddingBottom16 {
  padding-bottom:16px;
}
.paddingBottom6 {
  padding-bottom:6px;
}


@media screen and (max-width: 768px) {
  .cardHeaderWrapper {
    padding:16px;
  }
  .whiteCardWrapper .cardTitle {
    font-size: 16px;
    line-height:20px;
  }
  .whiteCardWrapper .cardSubTitle {
    font-size: 14px;
    line-height:18px;
    font-weight:700;
  }
}


.primaryTag {
  background: #d8d8d8;
  font-size:12px;
  font-weight: 900;
  color: #757575;
  border-radius: 16px;
  padding: 3px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left:12px;
}

.dashedSeparator {
  border-top: 1px dashed #d8d8d8;
  background: #f2f2f2;
  margin: 0px 20px;
}
.cabinSpacer {
  padding-left:20px;
  padding-bottom: 4px;
}
.cabinRowSpacer {
  padding-left:20px;
  margin:12px 0;
}

@media screen and (max-width: 768px) { 
  .hidePrimaryNodeMweb {
    display: none;
  }
  .cabinSpacer {
    padding-left:16px;
  }
  .cabinRowSpacer {
    padding-left:16px;
    margin:12px 0;
  }
  .makeFlex.gap8 {
    gap: 8px;
  }
}
.cardSeparator {
  position: relative;
  border-bottom: 0px;
  display: flex;
  flex-direction: column;
  &::after {
    content: "";
    border-bottom: 1px solid #d8d8d8;
  }
}

.dayTag {
  width: 65px;
  height: 28px;
  border-radius: 30px;
  border: 1px solid #007e7d;
  background-color: #e6fff9;
  font-size:14px;
  color: #007e7d;
  font-weight:700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itineraryRow::before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #4a4a4a; 
}
.itineraryRow {padding:0 16px 10px 0;}

.itineraryRow .activityText {
  font-size: 14px;
  line-height:18px;
  font-weight:400;
  flex:1;
  padding:0 10px;
}

.itineraryPadding {
  padding-top:16px;
  padding-bottom:12px;
}


.itineraryPadding .imageLoaderContainer > img {
margin-top:3px;
}
.cancellationPolicyHeaders {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 8px;
}

.policyCard {
  border-radius: 12px;
  background-color: var(--background-color-main);
  margin: 0 20px 20px 20px;
}


.policyIcon {
  border: solid 3px #fff;
  border-radius: 50%;
  width:22px;
  height:22px;
}

.policyContentWrapper {
  padding:0 16px 12px 14px;
}

.policyContentWrapper:last-child {
  padding-bottom:0;
}

.policyStatusLine {
  width: 4px;
  height: 50px; /* Adjust based on spacing */
  position: absolute;
  left: 44px; /* calculated based on margin & padding in card */
  transform: translateX(-50%);
  z-index: 0;
}

.policyStatusMarker {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-right: 15px;
}
.policyStatusmarker .imageLoaderContainer {
  position: relative;
  z-index: 1;
}
.policyStatusmarker .imageLoaderContainer > img { 
  margin-top:1px;
}

.policyCard .dashedSeparator {
  margin:0 30px 12px;
}

@media screen and (max-width: 768px) { 
  .policyStatusLine { 
    left: 60px; /* calculated based on margin & padding in card */
  }
}

.stickyPriceFooterSection {
    position: fixed;
    width: 100%;
    bottom: 0;
    bottom: 0;
    background-color:  #282828;
    padding: 8px 16px;
    z-index: 10;

}
.fareDetailsCollapseHead {
  border: 1px solid white;
  border-radius: 6px;
  gap: 2px;
  padding: 2px 6px;
}
.fareBreakupModal {
  position: fixed;
  bottom: 40px;
  padding: 20px;
  border-radius: 16px 16px 0 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.priceLineItem{
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 12px;
}
.priceLineItem:last-child {
  border-bottom: none;
}
.modalOverlayWrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  z-index: 9; /* Ensure it's above other elements */
  bottom: 0px;
}
.closeButton {
  cursor: pointer;
  width:21px;
  height:21px;
  background-color: #9b9b9b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closeButtonText {
  font-size: 24px;
  line-height:24px;
  color:#ffffff;
  font-weight:700;
  margin-top:-2px;
}
@media screen and (max-width: 768px) { 
  .reviewV3Submit {
      min-width: 124px;
  }
}
.bgTop {
  position: absolute;
  height: 55px;
  width: 100%;
  background: var(--review-bg-color, #0a223d);
  transition: transform 0.3s ease-in-out;
}

.hidden {
  display: none;
}

.leftPane {
  flex: 3;
  margin-right: 12px;
}

.rightPane {
  flex: 1;
  margin-left: 12px;
}

.reviewContainer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -45px;
}

.xjCupgEesJmsqKwwPrlN.whiteCardWrapper {
  border-radius:16px;
}

.displayContents div {
  align-items: flex-start;
}
.pay-font18 {
  color:#000000;
  margin-bottom:14px;
}

@media screen and (max-width: 768px) {
  .leftPane {
    width: 100%;
    margin-top: 116px;
    margin-right: 0;
    margin-bottom: 26px;
  }
  .review-container {
    margin-top:-27px;
  }
}
.error-screen-container {
  display: flex;
  flex: 1 1;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
  &.small {
    font-size: 18px;
  }
  &.medium {
    font-size: 24px;
  }
  &.large {
    font-size: 32px;
  }

  .imgWrapper {
    display: flex;
    justify-content: center;
    width: auto;
    height: 190px;
  }
  .error-screen-text {
    margin-top: 50px;
    font-weight: 900;
    text-align: center;
    font-size: 20px;
    color: var(--text-color-black);
  }
  .error-content-wrapper {
     margin-top: 100px ;
  }
  .error-screen-sub-text {
    margin-top: 20px;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: var(--text-color-black);
  }

  @media screen and (max-width: 768px) {
    .error-content-wrapper {
      margin-top: 300px ;
   }
    .imgWrapper {
      width: auto;
      height: 112px;
    }
    .error-screen-text {
      font-weight: 400;
      font-size: 14px;
    }
  }
}

.thankyouContainer {
  width: 100%;
  overflow-x: hidden;
  .thankyouBackground {
    height: 195px;
    padding-top:42px;
  }
  .thankyouHeader {
    display: flex;
    flex-direction: column;
    width:1200px;
    margin: 0 auto;
  }
}
.thankyouContent {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 1200px;
  margin: -50px auto 0 auto;
  @media screen and (max-width: 768px) {
    width: 100%;
    padding: 0px 16px;
    margin: -67px auto 0 auto;
  }
}
.thankyouLhs {
  flex:3;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
  .thankyou-lhs-topbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 16px;
    .cruise-info {
      font-size: 14px;
      font-weight: 900;
      color: #000;
      width: 100%;
      flex: 3;
    }
    .cruise-booking {
      display: flex;
      flex-direction: row;
      flex: 1;
      justify-content: space-around;
      align-items: center;
      .cruise-bookingID {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        .bookingIDText {
          font-size: 14px;
          text-align: left;
          color: #9b9b9b;
        }
        .bookingID {
          font-size: 14px;
          font-weight: 900;
          text-align: left;
          color: #000;
          margin-left: 10px;
        }
      }
    }
  }
  .thankyouPrice {
    background-color: white;
    margin-bottom: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    box-shadow: 0px 1px 8px 0px #0000002e;
    .thankyouPriceHeading {
      font-size:14px;
      font-weight:700;
      color:#000000;
    }
    .thankyouPriceBreakup {
      font-size:22px;
      font-weight:900;
      color:#000000;
    }
  }
  .thankyouPax{
    margin-bottom: 24px;
  }
}
.thankyouRhs {
  flex: 1;
  @media screen and (max-width: 768px) {
    display: none;
  }
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  background-color: #f2f2f2;
  width: 300px;
  height: fit-content;
  .thankyouRhsHeading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    .thankyouRhsHeadingText {
      padding: 16px;
      font-size:16px;
      font-weight:700;
      line-height:20px;
      color:#000000;
    }
  }
  .thankyouRhsMytrips {
    cursor: pointer;
    padding: 16px;
  }
}
.thankyouMwebTripsbtn{
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 12px 4px;
  border-radius: 8px;
  border: solid 1px #008cff;
  background-color: #fff;
}

@media screen and (max-width: 768px) { 
  .thankyouContainer {
    & .thankyouBackground {
      padding: 45px 16px 90px 16px;
      height: fit-content;
    }
  }
  .thankyouContainer {
    & .thankyouHeader {
      width: 100%;
    } 
  }
  .thankyouSubheader {
    font-size:12px;
    font-weight:400;
  }
  .thankyouHeaderText {
    margin-bottom:5px;
  }
  .thankyouLhs {
    & .thankyouPrice {
    padding: 16px;
    }
  }
  .thankyouLhs {
    & .thankyouPrice {
      & .thankyouPriceHeading {
        font-size: 14px;
        font-weight: 900;
      }
    }
  }
  .thankyouLhs {
    & .thankyouPrice {
      & .thankyouPriceBreakup {
        font-size: 18px;
        font-weight:900;
        color:#000000;
      }
    }
  }
}
@charset "utf-8";

:root {
  --text-color-black: #000000;
  --text-color-main: #0f0f0f;
  --text-color-shade1: #4a4a4a;
  --text-color-shade2: #8b8b8b;
  --text-color-main-grey2: #2d3135;
  --text-color-main-on-dark: #ffffff;
  --text-color-shade-on-dark1: #e8e8e8;
  --background-color-main: #f2f2f2;
  --background-color-inactive: #f3f1f4;
  --background-color-shade1: #e3e0e5;
  --background-color-shade2: #ffffff;
  --background-color-shade3: #12141d;
  --background-color-shade4: #14031e;
  --background-color-shade5: #fbf4ff;
  --background-color-shade6: #eeecef;
  --background-color-shade7: #f8f8f8;
  --border-color-inactive: #ebebeb;
  --border-color-active: #dedede;
  --msg-error-color-main: #eb2026;
  --msg-error-color-shade1: #ff9b9d;
  --msg-error-color-shade2: #ffe9e9;
  --msg-success-color-main: #37bc8e;
  --msg-success-color-shade1: #7ce3c0;
  --msg-success-color-shade2: #e8fff0;
  --msg-alert-color-main: #f2a526;
  --msg-alert-color-shade1: #fadcac;
  --msg-alert-color-shade2: #fff8ee;
  --icon-color-main: #6f7376;
  --icon-color-black: #000000;
  --icon-color-pending: #f2a526;
  --icon-color-approved: #ffffff;
  --icon-color-shade1: #a3a3a3;
  --icon-color-shade2: #ffffff;
  --primary-color-blue: #008cff;
  --primary-color-hover: #54257d;
  --primary-color-active: #672d9a;
  --primary-color-default: #7132a8;
  --primary-color-disable: #cfb8e0;
  --secondary-color-hover: #fbf4ff;
  --secondary-color-active: #bfb5c4;
  --white-color-hover: #f0f0f2;
  --white-color-active: #e6e7eb;
  --text-color-dark-green: #006400;
  --text-color-plum: #540264;
  --background-color-light-blue: #add8e6;
  --background-color-light-green: #c3e2c1;
  --background-color-light-grey: #d3d3d3;
  --background-color-light-purple: #e7d3ff;
  --font-size-btn-large: 14px;
  --font-size-btn-medium: 13px;
  --font-size-btn-small: 12px;
  --font-size-body-text: 14px;
  --font-size-sub-text: 12px;
  --font-size-more-info-regular: 12px;
  --font-size-more-info-small: 10px;
  --font-weight-bold: 700;
  --font-weight-regular: 500;
  --border-main: 1px solid var(--border-color-active);
}

.mt-16 {
  margin-top: 16px;
}
.mt-20 {
  margin-top: 20px;
}

* {
  font-family: Lato;
}

html,
body {
  background-color: var(--background-color-main);
  padding: 0;
  color: var(--text-color-main);
  font-size: 14px !important;
  font-family: lato;
  font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

html,
* {
  box-sizing: border-box;
  margin: 0;
  list-style: none;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100vh;
  #root {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    margin-top: 0;
    scrollbar-width: none;
  }
}

::-webkit-scrollbar {
  display: none;
  width: 0px;
}

::-webkit-scrollbar-thumb {
  display: none;
  width: 0px;
}

* {
  &:hover::-webkit-scrollbar {
    display: none;
  }
}

/* width */
::-webkit-scrollbar {
  display: none;
  width: 0px;
}
/* button */
::-webkit-scrollbar-button {
  display: none;
  width: 0px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  display: none;
  width: 0px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  display: none;
  width: 0px;
}

/* Corner */
::-webkit-scrollbar-corner {
  display: none;
  width: 0px;
}
/* Resizer */
::-webkit-resizer {
  background-color: #111;
}

::-webkit-scrollbar:disabled {
  display: none;
  width: 0px;
}
.makeFlex {
  display: flex;
}
.makeFlex .flexOne {
  flex: 1;
}
.makeFlex.flexWrap {
  flex-wrap: wrap;
}
.makeFlex.column {
  flex-direction: column;
}
.makeFlex.row {
  flex-direction: row;
}
.makeFlex.perfectCenter {
  align-items: center;
  justify-content: center;
}
.makeFlex.hrtlCenter {
  align-items: center;
}
.makeFlex.vrtlCenter {
  justify-content: center;
}
.makeFlex.spaceBetween {
  justify-content: space-between;
}
.makeFlex.spaceAround {
  justify-content: space-around;
}
.makeFlex.end {
  align-items: flex-end;
}
.makeFlex.top {
  align-items: flex-start;
}
.makeFlex.right {
  justify-content: flex-end;
}
.makeFlex.left {
  justify-content: flex-start;
}
.pushBottom {
  margin-top: auto;
}
.noShrink {
  flex-shrink: 0;
}
.flexOne {
  flex: 1;
}
.inlineFlex {
  display: inline-flex;
}
.makeRelative {
  position: relative;
}
.latoIlalic {
  font-style: italic;
}
.appendBottom80 {
  margin-bottom: 80px;
}

@charset "utf-8";

/*-------
// general
//-----*/
html,
body {
  background: #ffffff !important;
  padding: 0;
  margin: 0;
  color: #4a4a4a;
  font-size: 14px !important;
  font-family: lato;
  font-weight: 400;
}
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/*-------
// Globals
//-----*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-left: 20px;
}
a {
  color: #0084ff;
  text-decoration: none;
  cursor: pointer;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}
.hide {
  display: none;
}
.show {
  display: block;
}
img {
  max-width: 100%;
}

.lineThrough {
  text-decoration: line-through;
}
.capText {
  text-transform: uppercase;
}
.capitalizeText {
  text-transform: capitalize;
}
.opacity50 {
  opacity: 0.5;
}
.alignBottom {
  vertical-align: bottom;
}
.underline {
  text-decoration: underline;
}
.pointer {
  cursor: pointer;
}
.truncate {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.vrtTop {
  vertical-align: top;
}
.zIndex2 {
  z-index: 2;
}

/* -- Font Colors -- */
.blackText {
  color: #000000;
}
.darkText {
  color: #4a4a4a;
}
.darkGreyText {
  color: #4a4a4a;
}
.greyText {
  color: #9b9b9b;
}
.lightGreyText {
  color: #cbcbcb;
}
.whiteText {
  color: #ffffff;
}
.blueText {
  color: #0084ff;
}
.liteBlueText {
  color: #a9d4f6;
}
.greenText {
  color: #1a7971;
}
.redText {
  color: #eb2026;
}
.orangeText {
  color: #cf8100;
}
.yellowText {
  color: #f5a623;
}
.darkOrangeText {
  color: #f27239;
}
.pinkText {
  color: #db6281;
}
.darkGreenText {
  color: #249995;
}
.linkText {
  color: #008cff;
}

/* -- In case you need to add a size -- */
.font9 {
  font-size: 9px;
  line-height: 9px;
}
.font10 {
  font-size: 10px;
  line-height: 10px;
}
.font11 {
  font-size: 11px;
  line-height: 11px;
}
.font12 {
  font-size: 12px;
  line-height: 12px;
}
.font13 {
  font-size: 13px;
  line-height: 13px;
}
.font14 {
  font-size: 14px;
  line-height: 14px;
}
.font15 {
  font-size: 15px;
  line-height: 15px;
}
.font16 {
  font-size: 16px !important;
  line-height: 16px;
}
.font18 {
  font-size: 18px;
  line-height: 18px;
}
.font20 {
  font-size: 20px;
  line-height: 20px;
}
.font22 {
  font-size: 22px;
  line-height: 22px;
}
.font24 {
  font-size: 24px;
  line-height: 24px;
}
.font26 {
  font-size: 26px;
  line-height: 26px;
}
.font32 {
  font-size: 32px;
  line-height: 32px;
}
.font36 {
  font-size: 36px;
  line-height: 36px;
}

/* -- In case you need to add a Font Family -- */
.latoLight {
  font-weight: 300;
}
.latoRegular {
  font-weight: 400;
}
.latoBold {
  font-weight: 700;
}
.latoBlack {
  font-weight: 900;
}
.latoIlalic {
  font-style: italic;
}

/* -- In case you need to add LineHight -- */
.lineHeight14 {
  line-height: 14px !important;
}
.lineHeight16 {
  line-height: 16px !important;
}
.lineHeight18 {
  line-height: 18px !important;
}
.lineHeight20 {
  line-height: 20px !important;
}
.lineHeight22 {
  line-height: 22px !important;
}
.lineHeight24 {
  line-height: 24px !important;
}
.lineHeight25 {
  line-height: 25px !important;
}
.lineHeight30 {
  line-height: 30px !important;
}

/* -- In case you need to add a gradient -- */
.orangeGrad {
  background-image: linear-gradient(247deg, #ff3e5e, #ff6d3f);
}

/*-- Background Colors --*/
.whiteBg {
  background: #ffffff;
}

/* -- In case you need to add an alignment -- */
.textLeft {
  text-align: left;
}
.textRight {
  text-align: right;
}
.textCenter {
  text-align: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.absolute.right {
  right: 0;
}
.absolute.top {
  top: 0;
}

/* -- In case you need to add a border radius -- */
.borderRadius2 {
  border-radius: 2px;
}
.borderRadius4 {
  border-radius: 4px;
  overflow: hidden;
}
.borderRadius12 {
  border-radius: 12px;
  overflow: hidden;
}
.borderRadiusTopLR4 {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.borderRadiusBotLR4 {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.borderRadiusTL4 {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
}
.borderRadiusRB4 {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  overflow: hidden;
}

/* -- In case you need to add a border -- */
.noBrdr {
  border: 0px;
}
.brdr1 {
  border: 1px solid #c8c8c8;
}
.brdrBtm1 {
  border-bottom: 1px solid #c8c8c8;
}
.brdrBtm3 {
  border-bottom: 3px solid #c8c8c8;
}
.brdrTop1 {
  border-top: 1px solid #c8c8c8;
}

/* -- In case you need to add a width -- */
.wdth16 {
  width: 16px;
}
.wdth24 {
  width: 24px;
}
.wdth30 {
  width: 30px;
}
.wdth40 {
  width: 40px;
}
.wdth70 {
  width: 70px;
}
.wdth80 {
  width: 80px;
}
.wdth90 {
  width: 90px;
}
.wdth100 {
  width: 100px;
}
.wdth120 {
  width: 120px;
}
.wdth140 {
  width: 140px;
}
.wdth150 {
  width: 150px;
}
.wdth193 {
  width: 193px;
}
.wdth200 {
  width: 200px;
}
.wdth210 {
  width: 210px;
}
.wdth225 {
  width: 225px;
}
.wdth232 {
  width: 232px;
}
.wdth250 {
  width: 250px;
}
.wdth300 {
  width: 300px;
}
.wdth310 {
  width: 310px;
}
.wdth60perc {
  width: 60%;
}
.wdth65perc {
  width: 65%;
}
.wdth100perc {
  width: 100%;
}

/* -- In case you need to add a height -- */
.height41 {
  height: 41px;
}
.height16 {
  height: 16px;
}
.height24 {
  height: 24px;
}
.height100vh {
  height: 100vh;
}

/* -- In case you need to add a Flex -- */
.makeFlex {
  display: flex;
}
.makeFlex .flexOne {
  flex: 1;
}
.makeFlex .flexTwo {
  flex: 2;
}
.makeFlex.flexWrap {
  flex-wrap: wrap;
}
.makeFlex.column {
  flex-direction: column;
}
.makeFlex.row {
  flex-direction: row;
}
.makeFlex.perfectCenter {
  align-items: center;
  justify-content: center;
}
.makeFlex.hrtlCenter {
  align-items: center;
}
.makeFlex.vrtlCenter {
  justify-content: center;
}
.makeFlex.spaceBetween {
  justify-content: space-between;
}
.makeFlex.gap12 {
  gap: 12px;
}
.makeFlex.gap4 {
  gap: 4px;
}
.makeFlex.gap16 {
  gap: 16px;
}
.makeFlex.gap14 {
  gap: 14px;
}
.makeFlex.spaceAround {
  justify-content: space-around;
}
.makeFlex.end {
  align-items: baseline;
}
.makeFlex.top {
  align-items: flex-start;
}
.makeFlex.right {
  justify-content: flex-end;
}
.makeFlex.bottom {
  align-items: flex-end;
}
.makeFlex.left {
  justify-content: flex-start;
}
.makeFlex.inlineFlex {
  display: inline-flex;
}

.pushRight {
  margin-left: auto;
}
.pushLeft {
  margin-right: auto;
}
.noShrink {
  flex-shrink: 0;
}
.flexOne {
  flex: 1;
}
.bottomAlign {
  align-items: flex-end !important;
}
.topAlign {
  align-items: flex-start !important;
}

.inlineB {
  display: inline-block;
}
.inlineFlex {
  display: inline-flex;
}

/* -- In case you need to add margin -- */

/*Top*/
.appendTop2 {
  margin-top: 2px;
}
.appendTop3 {
  margin-top: 3px;
}
.appendTop5 {
  margin-top: 5px;
}
.appendTop8 {
  margin-top: 8px;
}
.appendTop10 {
  margin-top: 10px;
}
.appendTop12 {
  margin-top: 10px;
}
.appendTop15 {
  margin-top: 15px;
}
.appendTop16 {
  margin-top: 16px;
}
.appendTop18 {
  margin-top: 18px;
}
.appendTop20 {
  margin-top: 20px;
}
.appendTop23 {
  margin-top: 23px;
}
.appendTop25 {
  margin-top: 25px;
}
.appendTop28 {
  margin-top: 28px;
}
.appendTop30 {
  margin-top: 30px;
}
.appendTop40 {
  margin-top: 40px;
}
.appendTop52 {
  margin-top: 52px;
}
.appendTop120 {
  margin-top: 120px;
}
.appendTop210 {
  margin-top: 210px;
}

/*Right*/
.appendRight3 {
  margin-right: 3px;
}
.appendRight5 {
  margin-right: 5px;
}
.appendRight10 {
  margin-right: 10px;
}
.appendRight12 {
  margin-right: 12px;
}
.appendRight15 {
  margin-right: 15px;
}
.appendRight16 {
  margin-right: 16px;
}
.appendRight17 {
  margin-right: 17px;
}
.appendRight20 {
  margin-right: 20px;
}
.appendRight26 {
  margin-right: 26px;
}
.appendRight30 {
  margin-right: 30px;
}
.appendRight80 {
  margin-right: 80px;
}

/*Bottom*/
.appendBottom2 {
  margin-bottom: 2px;
}
.appendBottom3 {
  margin-bottom: 3px;
}
.appendBottom4 {
  margin-bottom: 4px;
}
.appendBottom5 {
  margin-bottom: 5px;
}
.appendBottom6 {
  margin-bottom: 6px;
}
.appendBottom7 {
  margin-bottom: 7px;
}
.appendBottom8 {
  margin-bottom: 8px;
}
.appendBottom10 {
  margin-bottom: 10px;
}
.appendBottom12 {
  margin-bottom: 12px;
}
.appendBottom15 {
  margin-bottom: 15px;
}
.appendBottom16 {
  margin-bottom: 16px;
}
.appendBottom18 {
  margin-bottom: 18px;
}
.appendBottom20 {
  margin-bottom: 20px;
}
.appendBottom22 {
  margin-bottom: 22px;
}
.appendBottom24 {
  margin-bottom: 24px;
}
.appendBottom25 {
  margin-bottom: 25px;
}
.appendBottom30 {
  margin-bottom: 30px;
}
.appendBottom35 {
  margin-bottom: 35px;
}
.appendBottom40 {
  margin-bottom: 40px;
}
.appendBottom56 {
  margin-bottom: 56px;
}

/*Left*/
.appendLeft3 {
  margin-left: 3px;
}
.appendLeft5 {
  margin-left: 5px;
}
.appendLeft7 {
  margin-left: 7px;
}
.appendLeft8 {
  margin-left: 8px;
}
.appendLeft10 {
  margin-left: 10px;
}
.appendLeft12 {
  margin-left: 12px;
}
.appendLeft15 {
  margin-left: 15px;
}
.appendLeft18 {
  margin-left: 18px;
}
.appendLeft20 {
  margin-left: 20px;
}
.appendLeft24 {
  margin-left: 24px;
}
.appendLeft30 {
  margin-left: 30px;
}
.appendLeft35 {
  margin-left: 35px;
}
.appendLeft40 {
  margin-left: 40px;
}

/* Top Right Bottom Left */
.append10 {
  margin: 10px;
}

/* -- In case you need to add padding -- */
.padding0 {
  padding: 0;
}
.padding4 {
  padding: 4px;
}
.padding5 {
  padding: 5px;
}
.padding10 {
  padding: 10px;
}
.padding15 {
  padding: 15px;
}
.padding16 {
  padding: 16px;
}
.padding20 {
  padding: 20px;
}
.paddingLR30 {
  padding-right: 30px;
  padding-left: 30px;
}
.paddingLR20 {
  padding-right: 20px;
  padding-left: 20px;
}
.paddingLR15 {
  padding-right: 15px;
  padding-left: 15px;
}
.paddingLR10 {
  padding-right: 10px;
  padding-left: 10px;
}
.paddingTB10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.paddingTB14 {
  padding-top: 14px;
  padding-bottom: 14px;
}
.paddingTB15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.paddingTB20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.paddingTB25 {
  padding-top: 25px;
  padding-bottom: 25px;
}
.paddingT11 {
  padding-top: 11px;
}
.paddingT15 {
  padding-top: 15px;
}
.paddingT22 {
  padding-top: 22px;
}
.paddingB4 {
  padding-bottom: 4px;
}
.paddingB8 {
  padding-bottom: 8px;
}
.paddingB10 {
  padding-bottom: 10px;
}
.paddingB13 {
  padding-bottom: 13px;
}
.paddingB15 {
  padding-bottom: 15px;
}
.paddingB18 {
  padding-bottom: 18px;
}
.paddingB20 {
  padding-bottom: 20px;
}
.paddingB22 {
  padding-bottom: 22px;
}
.paddingB25 {
  padding-bottom: 25px;
}
.paddingB28 {
  padding-bottom: 28px;
}
.paddingL15 {
  padding-left: 15px;
}
.paddingL25 {
  padding-left: 25px;
}
.paddingL30 {
  padding-left: 30px;
}

/*Top*/
.prependTop5 {
  padding-top: 5px;
}
.prependTop20 {
  padding-top: 20px;
}

/*Right*/
.prependRight5 {
  padding-right: 5px;
}
.prependRight8 {
  padding-right: 8px;
}

/*Bottom*/
.prependBottom5 {
  padding-bottom: 5px;
}

.upArrow {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  position: relative;
  top: 5px;
  left: 10px;
}
.downArrow {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: relative;
  top: 2px;
  left: 10px;
}

/*-- Checkbox --*/
.checkmarkOuter {
  display: inline-flex;
  position: relative;
  min-height: 18px;
  flex-shrink: 0;
}
.checkmarkOuter [type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.checkmarkOuter [type="checkbox"]:checked + label,
.checkmarkOuter [type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-flex;
}
.checkmarkOuter [type="checkbox"]:checked + label:before,
.checkmarkOuter [type="checkbox"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #9b9b9b;
  border-radius: 2px;
  background: #fff;
}
.checkmarkOuter [type="checkbox"]:checked + label:before {
  border: 1px solid #008cff;
  content: "";
  width: 18px;
  height: 18px;
  background: #008cff;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.checkmarkOuter [type="checkbox"]:checked + label:after {
  position: absolute;
  left: 6px;
  top: 3px;
  content: "";
  display: block;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.checkmarkOuter [type="checkbox"]:disabled + label {
  color: #cccccc;
  pointer-events: none;
}
.checkmarkOuter [type="checkbox"]:disabled + label:before {
  border: 1px solid #f6f6f6;
  pointer-events: none;
}

/*-- Radio Box --*/
.radioOuter {
  display: inline-flex;
}
.radioOuter [type="radio"]:checked,
[type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.radioOuter [type="radio"]:checked + label,
.radioOuter [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  line-height: 20px;
  display: inline-flex;
}
.radioOuter.lableBlock [type="radio"]:checked + label,
.radioOuter.lableBlock [type="radio"]:not(:checked) + label {
  display: initial !important;
}
.radioOuter [type="radio"]:checked + label:before,
.radioOuter [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #9b9b9b;
  border-radius: 100%;
  background: #fff;
}
.radioOuter.lableBlock [type="radio"]:checked + label:before,
.radioOuter.lableBlock [type="radio"]:not(:checked) + label:before {
  top: 50%;
  transform: translateY(-50%);
}
.radioOuter [type="radio"]:checked + label:before {
  border: 1px solid #008cff;
}
.radioOuter [type="radio"]:checked + label:after,
.radioOuter [type="radio"]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #008cff;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.radioOuter.lableBlock [type="radio"]:checked + label:after,
.radioOuter.lableBlock [type="radio"]:not(:checked) + label:after {
  top: 50%;
  margin-top: -6px;
}
.radioOuter [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.radioOuter [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.radioOuter [type="radio"]:disabled + label,
.radioOuter [type="radio"]:disabled + label:before {
  opacity: 0.3;
  pointer-events: none;
}

/*--- Buttons --*/
.primaryBtn {
  border-radius: 34px;
  background-color: #ffffff;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
  flex-shrink: 0;
  color: #008cff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  outline: 0;
  border: 0;
  text-align: center;
}
.primaryBtn.disabled {
  background-image: unset;
  background-color: #000;
  opacity: 0.3;
  pointer-events: none;
}

.primaryBtn.disabled .btnText{
  opacity: 0.5;
}
.primaryBtnWhite {
  border-radius: 34px;
  background-color: #ffffff;
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  display: inline-block;
  flex-shrink: 0;
  color: #008cff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  cursor: pointer;
  outline: 0;
  border: 0;
  text-align: center;
  min-width: 90px;
}
.primaryBtn.fill {
  background-image: linear-gradient(93deg, #53b2fe, #065af3);
  box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.2);
  color: #fff;
}

.btnBlack {
  background: rgba(0, 0, 0, 0.8);
}

.lightBlackText {
  color: #242424;
}
.topSection {
  display: flex;
  flex-direction: column;
  position: relative;
}

