@charset "UTF-8";
#booking_wrap {
  padding-top: 87px;
  padding-bottom: 30px;
}

/* TABS START */
.tab {
  overflow: hidden;
  border-top: 1px solid #0F213F;
  border-left: 1px solid #0F213F;
  border-right: 1px solid #0F213F;
  background-color: #3B486A;
}
.tab button {
  background-color: transparent;
  float: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 9px 30px;
  transition: 0.3s;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 700px) {
  .tab button {
    width: 100%;
  }
}
.tab button:hover {
  background-color: #0F213F;
}
.tab button.active {
  background-color: #0F213F;
  font-weight: 600;
}

.tab-icon-color {
  color: #b8cae3;
}

.tabcontent-booking {
  display: none;
  /*padding: 6px 12px;*/
  border: 1px solid #0F213F;
  border-top: none;
  background-color: #0F213F;
  color: #fff;
}

.tab-title {
  margin-left: 5px;
}

/* TABS END */
/* SUBTABS START */
.subtabs {
  width: 100%;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 390px) {
  .subtabs {
    padding: 3px;
  }
}

.subtab-links {
  padding: 5px;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  border: 0;
  border-bottom: 2px solid transparent;
}

.subtab-links:hover {
  border-bottom: 2px solid #c2002d;
}

.active-subtab {
  border: 0;
  border-bottom: 2px solid #c2002d;
}

.move-right20 {
  margin-left: 20px;
}

.subtab-buttons-wrapper {
  display: flex;
}

/* SUBTABS END */
/* ROUND TRIP FORM START */
.form-wrapper {
  padding: 20px 0 20px 0;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .form-wrapper {
    display: block;
  }
}

.multi-dest-form-wrapper {
  padding: 5px 0 5px 0;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .multi-dest-form-wrapper {
    display: block;
  }
}

#multi-destinations {
  margin-top: 15px;
}

/* ROUND TRIP FORM END */
/* SELECT DROPDOWN AND DATE RANGE START */
.select-button {
  background-color: #3B486A;
  color: white;
  display: flex;
  align-items: center;
  width: 50%;
  cursor: pointer;
}
.select-button .origin-select-box {
  color: black;
  position: absolute;
  background-color: #ffffff;
  overflow-y: scroll;
  border: 1px solid #eceff1;
  max-height: 200px;
  top: 52px;
  width: 100%;
  z-index: 5;
  left: 0;
}
.select-button .destination-select-box {
  color: black;
  position: absolute;
  background-color: #ffffff;
  overflow-y: scroll;
  border: 1px solid #eceff1;
  max-height: 200px;
  top: 52px;
  width: 100%;
  z-index: 5;
}

.select-button-active {
  background-color: #FFF;
}

.select-icon-wrapper {
  padding: 14px;
  color: #b8cae3;
}

.select-icon-wrapper-right {
  padding: 16px;
  margin-left: 10px;
  color: #b8cae3;
}

.origin-destination-switcher {
  width: 40px;
  height: 40px;
  background-color: #3B486A;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #0F213F;
  margin-left: -18px;
  margin-top: 6px;
  z-index: 4;
  cursor: pointer;
}

.origin-destination-switcher:hover {
  background-color: #414f75;
}

.origin-destination-switcher-icon {
  font-size: 22px;
  margin-top: -2px;
  color: #b8cae3;
}

.select-button-title {
  font-size: 1.1rem;
}

.date-range-select {
  background-color: #3B486A;
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 50%;
}

.date-range-select-wrapper {
  display: flex;
  width: calc(100% * (1/3));
}
@media screen and (max-width: 1100px) {
  .date-range-select-wrapper {
    margin-top: 10px;
    width: calc(100% * (1/2));
    min-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .date-range-select-wrapper {
    margin-top: 10px;
    width: calc(100%);
    min-width: 100%;
  }
}

.date-range-single {
  width: calc(100% * (1/6));
}
@media screen and (max-width: 1100px) {
  .date-range-single {
    width: calc(100% * (1/2));
  }
}

.date-range-select-from {
  margin-left: 10px;
}
@media screen and (max-width: 1100px) {
  .date-range-select-from {
    margin-left: 0;
  }
}

.select-passenger-number {
  position: relative;
  background-color: #3B486A;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 150px;
  margin-left: 10px;
  height: 54px;
}
@media screen and (max-width: 1100px) {
  .select-passenger-number {
    margin-left: 0;
    width: 50%;
  }
}

.search-flight-button {
  background-color: #c2002d;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 120px;
  margin-left: 10px;
}
@media screen and (max-width: 1100px) {
  .search-flight-button {
    width: 50%;
  }
}

.search-flight-button-active {
  background-color: #990023 !important;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 120px;
  margin-left: 10px;
}
@media screen and (max-width: 1100px) {
  .search-flight-button-active {
    width: 50%;
  }
}

.select-button-title-active {
  font-size: 1.2rem;
}

.passenger-and-search-wrapp {
  display: flex;
}
@media screen and (max-width: 1100px) {
  .passenger-and-search-wrapp {
    width: calc(100% * (1/2));
    margin-top: 10px;
    min-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .passenger-and-search-wrapp {
    min-width: 100%;
    width: calc(100%);
  }
}

.select-button-title-active {
  font-size: 1.2rem;
}

.origin-destination-wrapper {
  display: flex;
  width: calc(100% * (0.4) - 10px - 1px);
}
@media screen and (max-width: 1100px) {
  .origin-destination-wrapper {
    width: calc(100% * (1/2));
    min-width: 400px;
  }
}
@media screen and (max-width: 500px) {
  .origin-destination-wrapper {
    width: calc(100%);
    min-width: 100%;
  }
}

.selected-label {
  color: inherit;
  font-weight: 600;
}

.select-text-input {
  color: inherit;
  border: 0;
  font-size: 1.2rem;
  width: 100%;
  outline: none;
  background-color: inherit;
}
.select-text-input::-ms-clear {
  display: none;
}

.select-text-input:focus {
  outline-width: 0;
}

.origin-select-list-item {
  display: flex;
}

.origin-select-list-item-icon {
  padding: 16px;
}

.origin-select-list-item {
  border-bottom: 1px solid #eceff1;
  padding-top: 10px;
}

.origin-select-list-item:hover {
  background-color: #3b6caf;
  color: #FFF;
}

.origin-select-list-item:hover .origin-select-list-item-data-city {
  color: #FFF;
}

.origin-select-list-item-data-city {
  color: #717171;
  font-size: 0.9rem;
}

/* destination select */
.destination-select-list-item {
  display: flex;
}

.destination-select-list-item-icon {
  padding: 16px;
}

.destination-select-list-item {
  border-bottom: 1px solid #eceff1;
  padding-top: 10px;
}

.destination-select-list-item:hover {
  background-color: #3b6caf;
  color: #FFF;
}

.destination-select-list-item:hover .destination-select-list-item-data-city {
  color: #FFF;
}

.destination-select-list-item-data-city {
  color: #717171;
  font-size: 0.9rem;
}

.datepicker-calendar-picker {
  position: absolute;
  margin-top: 30px;
  margin-left: -8px;
}

/* SELECT DROPDOWN AND DATE RANGE END */
.passenger-number-picker-wrap {
  position: absolute;
  background-color: white;
  color: black;
  right: 0;
  top: 54px;
  width: 300px;
  border: 1px solid #eceff1;
  z-index: 2;
  padding: 10px;
  cursor: default;
}
@media screen and (max-width: 1100px) {
  .passenger-number-picker-wrap {
    left: 0;
  }
}

.passenger-picker-container {
  display: flex;
}

.passenger-description {
  width: 50%;
  padding-top: 10px;
  padding-bottom: 10px;
}

.passenger-picker-part {
  padding-top: 10px;
  padding-bottom: 10px;
}

.passenger-picker {
  border: 1px solid #eceff1;
  width: 100%;
  height: 100%;
}

.passenger-picker {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.passenger-action {
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #386aaf;
  font-size: 2rem;
  cursor: pointer;
}

.passenger-action:hover {
  color: rgba(56, 106, 175, 0.77);
  font-size: 2.1rem;
}

.confirm-passenger-button-wrap {
  padding: 5px 0;
  display: flex;
}

.confirm-passenger-button {
  color: #fff;
  background-color: #386aaf;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border: 1px solid #325e9c;
  white-space: nowrap;
  padding: 6px 12px;
}

.empty-space-70 {
  width: 70%;
}

.passenger-number {
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: 700;
  background-color: white;
  height: 100%;
}

.passenger-adult-label {
  font-size: 1.3em;
}

.passenger-adult-age-label {
  font-size: 1em;
  color: #747476;
}

/* CHECK IN START */
.check-in-wrapper {
  padding: 30px;
}
.check-in-wrapper .check-in-desc-wrap {
  width: 50%;
}
@media screen and (max-width: 900px) {
  .check-in-wrapper .check-in-desc-wrap {
    width: 100%;
  }
}
.check-in-wrapper .check-in-line {
  border-color: #3a476b;
}
.check-in-wrapper .check-in-form-wrap {
  display: flex;
}
@media screen and (max-width: 900px) {
  .check-in-wrapper .check-in-form-wrap {
    display: block;
  }
}
.check-in-wrapper .check-in-input-field {
  background-color: #3B486A;
  color: white;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 16px;
  font-size: 1rem;
}
.check-in-wrapper .input-wrapper {
  width: 100%;
}
.check-in-wrapper .check-in-input {
  background-color: #3B486A;
  border: none;
  outline: none;
  height: 30px;
  width: 100%;
}
.check-in-wrapper .check-in-input-field-active {
  flex-direction: column;
  align-items: baseline;
  max-height: 53px;
  padding-left: 16px;
  padding-top: 0;
}
.check-in-wrapper .check-in-input-fields-wrap {
  display: flex;
  width: calc(100% * (0.8));
}
@media screen and (max-width: 900px) {
  .check-in-wrapper .check-in-input-fields-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 731px) {
  .check-in-wrapper .check-in-input-fields-wrap {
    display: block;
  }
}
.check-in-wrapper .check-in-input-field-booking-reference {
  width: calc(100% * (0.35));
}
@media screen and (max-width: 731px) {
  .check-in-wrapper .check-in-input-field-booking-reference {
    width: 100%;
  }
}
.check-in-wrapper .check-in-input-field-last-name {
  width: calc(100% * (0.65));
  margin-left: 10px;
}
@media screen and (max-width: 731px) {
  .check-in-wrapper .check-in-input-field-last-name {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
}
.check-in-wrapper .search-button-wrap {
  background-color: #c2002d;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 1.2rem;
  width: calc(100% * (0.2));
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .check-in-wrapper .search-button-wrap {
    margin-left: 0;
    margin-top: 10px;
    width: calc(100% * (0.3));
    height: 52px;
  }
}
@media screen and (max-width: 731px) {
  .check-in-wrapper .search-button-wrap {
    width: calc(100% * (0.6));
  }
}
.check-in-wrapper .search-button-wrap:hover {
  background-color: #9a0024;
}
.check-in-wrapper .faq-link {
  color: white;
  text-decoration: none;
}

#date-departure-one-way-from {
  width: 100%;
}

/* CHECK IN END */
#x-wrap {
  z-index: 0;
}

.datepicker {
  z-index: 1;
}

/**
 * Tooltip Styles 1
 */
/**
 * Tooltip Styles2
 */
/* Add this attribute to the element that needs a tooltip */
[validation-data-tooltip-passenger] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
/* Position tooltip above the element */
[validation-data-tooltip-passenger]:before {
  position: absolute;
  bottom: -104%;
  margin-left: -40%;
  margin-bottom: 5px;
  padding: 7px 15px;
  width: 200%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1073B8;
  color: #fff;
  content: attr(validation-data-tooltip-passenger);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[validation-data-tooltip-passenger]:after {
  position: absolute;
  bottom: calc(-70% + 35px);
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #1073B8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  transform: rotate(180deg);
}

/* Show tooltip content on hover */
[validation-data-tooltip-passenger]:hover:before,
[validation-data-tooltip-passenger]:hover:after {
  visibility: visible;
  opacity: 1;
}

/* Add this attribute to the element that needs a tooltip */
[validation-tooltip-passenger] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
/* Position tooltip above the element */
[validation-tooltip-passenger]:before {
  position: absolute;
  bottom: -70%;
  margin-left: -15px;
  margin-bottom: 5px;
  padding: 7px 15px;
  width: 200%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1073B8;
  color: #fff;
  content: attr(validation-tooltip-passenger);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[validation-tooltip-passenger]:after {
  position: absolute;
  bottom: calc(-70% + 35px);
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #1073B8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  transform: rotate(180deg);
}

/* Show tooltip content on hover */
[validation-tooltip-passenger]:hover:before,
[validation-tooltip-passenger]:hover:after {
  visibility: visible;
  opacity: 1;
}

/* Add this attribute to the element that needs a tooltip */
[validation-data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
/* Position tooltip above the element */
[validation-data-tooltip]:before {
  position: absolute;
  bottom: -100%;
  margin-bottom: 5px;
  padding: 7px 15px;
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1073B8;
  color: #fff;
  content: attr(validation-data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Triangle hack to make tooltip look like a speech bubble */
[validation-data-tooltip]:after {
  position: absolute;
  bottom: calc(-70% + 35px);
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #1073B8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  transform: rotate(180deg);
}

/* Show tooltip content on hover */
[validation-data-tooltip]:hover:before,
[validation-data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

/* Add this attribute to the element that needs a tooltip */
[validation-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
/* Position tooltip above the element */
[validation-tooltip]:before {
  position: absolute;
  bottom: -70%;
  margin-left: -15px;
  margin-bottom: 5px;
  padding: 7px 15px;
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #1073B8;
  color: #fff;
  content: attr(validation-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[validation-tooltip]:after {
  position: absolute;
  bottom: calc(-70% + 35px);
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #1073B8;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
  transform: rotate(180deg);
}

/* Show tooltip content on hover */
[validation-tooltip]:hover:before,
[validation-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

.date-picker-wrapper {
  z-index: 4 !important;
}

/* TMP HACKS */
#date-departure-multi-from-0 {
  width: 100%;
}

#date-departure-multi-from-1 {
  width: 100%;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
               supported by Chrome and Opera */
}

.select-input-wrapper {
  background-color: #3B486A;
  color: white;
  display: flex;
  align-items: center;
  width: 50%;
  cursor: pointer;
  position: relative;
}

.select-input-wrapper-active {
  background-color: white;
  color: black;
}

.select-input-wrapper-actived {
  background-color: white;
  color: black;
}

.select-input-wrapper-selected {
  background-color: #3B486A;
  color: white;
}

.origin-select-box {
  color: black;
  position: absolute;
  background-color: #ffffff;
  overflow-y: scroll;
  border: 1px solid #eceff1;
  max-height: 200px;
  top: 52px;
  width: 100%;
  z-index: 5;
  left: 0;
}

.select-label-and-input-wrapper {
  background-color: inherit;
}

.pull-left-18 {
  margin-left: -18px;
}

.special-offer-form-wrap-active {
  width: 90%;
  margin-left: 5%;
  background-color: #0F213F;
}

.form-wrapper-special-offer {
  padding: 20px 0 20px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .form-wrapper-special-offer {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .form-wrapper-special-offer {
    display: block;
    padding: 0;
  }
}

.booking-form-overlay {
  position: absolute;
  background-color: rgba(255, 250, 0, 0.99);
  width: 100%;
  height: 100%;
  color: red;
}

div.fadeMe {
  background-color: rgba(0, 0, 0, 0.84);
  width: 100%;
  height: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  position: fixed;
}

.faded-form-wrapper {
  background-color: #0F213F;
  z-index: 100;
  margin-top: 20%;
}

.faded-content-wrapper {
  width: 90%;
  margin-left: 5%;
}

.booking-panel-nav {
  display: flex;
  padding: 0 20px 0 20px;
  color: white;
}
@media screen and (max-width: 500px) {
  .booking-panel-nav {
    padding: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 400px) {
  .booking-panel-nav {
    flex-direction: column;
  }
}
.booking-panel-nav .trip-type-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .booking-panel-nav .trip-type-wrap {
    width: 50%;
    display: flex;
    align-items: center;
  }
}
.booking-panel-nav .trip-type-wrap .booking-nav-trip-type {
  padding-bottom: 3px;
  border-bottom: 2px solid red;
}
.booking-panel-nav .trip-class-wrap {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .booking-panel-nav .trip-class-wrap {
    width: 50%;
    text-align: center;
    display: flex;
    align-items: center;
  }
}
.booking-panel-nav .trip-class-wrap .booking-nav-trip-class {
  color: #87cef6;
}
.booking-panel-nav .trip-price-from-wrap {
  display: flex;
  align-items: center;
  margin-left: 20px;
}
@media screen and (max-width: 750px) {
  .booking-panel-nav .trip-price-from-wrap {
    width: 50%;
    text-align: center;
  }
}
.booking-panel-nav .trip-price-from-wrap .booking-nav-trip-price-from-valute {
  margin-left: 5px;
}
.booking-panel-nav .trip-price-from-wrap .booking-nav-trip-price-from {
  margin-left: 5px;
  font-size: 1.6rem;
}
.booking-panel-nav .close-button-wrap-booking-nav {
  width: 10%;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .booking-panel-nav .close-button-wrap-booking-nav {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 400px) {
  .booking-panel-nav .close-button-wrap-booking-nav {
    width: 100%;
  }
}
.booking-panel-nav .close-button-wrap-booking-nav .close-button-booking-nav {
  padding: 6px 12px;
  color: #87cef6;
  border: 1px solid #87cef6;
}
.booking-panel-nav .close-button-wrap-booking-nav .close-button-booking-nav:hover {
  text-decoration: underline;
}

i.icon-airplane-origin:before {
  content: "";
  font-size: 1.3em;
}

i.icon-airplane-destination:before {
  content: "";
  font-size: 1.3em;
}

#booking_wrap_destination_offer {
  background-color: #0F213F;
  margin-bottom: 6px;
  padding: 1.5em 1.5em;
}

.subtab-buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
  position: relative;
}

.promo-code-field-wrap {
  cursor: pointer;
  position: absolute;
  right: 1.8rem;
}
.mobile-promo-code-field-wrap {
  position: static;
  margin-top: 1rem;
  width: calc(100% * (0.4) - 10px - 1px);
}
@media screen and (max-width: 1100px) {
  .mobile-promo-code-field-wrap {
    width: calc(100% * (1/4));
    min-width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .mobile-promo-code-field-wrap {
    width: calc(50%);
    min-width: 50%;
  }
}

.promo-code-input-field {
  background-color: #3B486A;
  outline: none;
  border: 0;
  width: 100%;
}

.custom-field-wrap {
  display: flex;
  background-color: #3B486A;
}

.my-dolars-icon {
  content: "";
}

.wrap-left-side {
  display: flex;
  width: 90%;
}
@media screen and (max-width: 400px) {
  .wrap-left-side {
    order: 2;
  }
}

.start_origin_wrap .start_origin {
  background-color: #3B486A;
  border: 1px solid #3B486A;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0px;
  margin-right: 0.7rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  height: 100%;
  font-size: 1.1rem;
}
@media screen and (max-width: 732px) {
  .start_origin_wrap .start_origin {
    padding: 16px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.center-text {
  text-align: center;
}

.inactive-bp-message {
  font-size: 1.7rem;
  color: white;
}

.blur-booking-panel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(15, 33, 63, 0.9);
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/*# sourceMappingURL=aaa.css.map */
