/* Variables */
:root {
  --width: 693px;
}

div.booking-page button[disabled] {
  border: 1px solid #f7f7f7;
  background-color: #f7f7f7;
  color: #797979;
}

div.booking-page button.button[disabled]:hover {
  color: #797979;
}

div.booking-page {
  & button {
    min-width: 0px !important;
  }
}

.booking-page {
  background: var(--colorGrey);
  min-height: 100vh;
}

/* HEADER*/
.booking__header {
  background: var(--colorWhite);
  height: 60px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9;
}

.booking__header > div:not(:first-of-type) {
  flex-basis: 33%;
}

.booking__header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.booking__header-logo-wrapper {
  margin-left: 55px;
  display: flex;
  align-items: baseline;
  padding: 17px 0;
  cursor: pointer;
  flex-basis: calc(33% - 55px);
}

.booking__logo-link {
  color: #142046;
  border-bottom: none !important;
}

.booking__logo-link:hover {
  color: #142046;
}

.booking__header-icon {
  width: 14px;
  color: #182b69;
  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  top: 50%;
  left: -8px;
  position: absolute;
}
.booking__header-logo-wrapper span {
  color: #182b69;
  position: relative;
  font-size: 14px;
}
.booking__header-logo {
  max-width: 100px;
  height: 22px;
  margin-left: 8px;
}

.booking__header-pagination {
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking__header-pagination {
  color: #142046;
  font-size: 14px;
}
.booking__header-pagination-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.booking__header-pagination ul {
  display: flex;
  list-style: none;
  flex-direction: row;
  padding: 0;
  margin-bottom: 5px;
}
.booking__header-pagination ul li:first-child {
  width: 8px;
  height: 8px;
  background: #182b69 0% 0% no-repeat padding-box;
  border-radius: 100%;
}

.booking__header-pagination ul li {
  margin: 0 6px;
  width: 8px;
  height: 8px;
  background: #dfdfdf 0% 0% no-repeat padding-box;
  border-radius: 100%;
}

.booking__header-pagination ul li.booking__header-pagination-active {
  background: #182b69 0% 0% no-repeat padding-box;
}

/* BOOKING */

.booking__content {
  background: var(--colorGrey);
  height: auto;
  padding-top: calc(60px + 30px);
  padding-bottom: calc(100px + 30px);
}

.booking__content-title {
  display: block;
  font-weight: var(--fontWeightBold);
  padding-bottom: 20px;
  font-size: 1em;
}

.booking__content-optional {
  font-weight: var(--fontWeightNormal);
  color: #797979;
  font-size: 12px;
  margin-left: 12px;
  display: block;
  margin-top: 3px;
}

.booking__content-wrap {
  background: var(--colorWhite);
  padding: var(--spacingLarge) 60px;
  position: relative;
  width: var(--width);
  margin: 20px auto;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1);
}

.booking__summary-wrapper {
  display: flex;
  flex-direction: column;
}

.booking__summary {
}
.booking__summary-heading {
  font-size: 14px;
  font-weight: bold;
  color: #142046;
}

.booking__summary-divider {
  height: 1px;
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.booking__summary-divider:before {
  content: '';
  position: absolute;
  border: 1px solid #ededed;
  height: 1px;
  width: 100%;
  transform: translateY(-50%);
}
.booking__summary-content {
  text-align: left;
  font-size: 14px;
  color: #142046;
}

.booking__summary-total {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.booking__summary-total:last-child {
  font-weight: bold;
  font-size: 16px;
}

.booking__summary-info {
  font-size: 14px;
  letter-spacing: 0px;
  color: #797979;
  margin-top: 24px;
}

.booking_terms {
}

/* Footer*/
.booking__footer {
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.18);
  background: var(--colorWhite);
  width: 100%;
  height: 100px;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.booking__footer-wrap {
  width: var(--width);
  display: flex;
  margin: auto;
  justify-content: space-between;
}

.booking__footer-wrap button {
  width: 154px;
  height: 45px;
  position: relative;
  align-self: center;
}

.booking__continue-icon {
  width: 14px;
  fill: #ffffff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
}

button[disabled] .booking__continue-icon {
  fill: #797979;
}

.booking__package {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.booking__package span {
  font-size: 16px;
}

.booking__package-name {
  font-weight: bold;
}
.booking__book-button {
  margin: auto;
  display: flex;
}
.booking__book-button button {
  width: 300px;
  height: 45px;
  text-align: center;
}
.booking__book-button .loading__dot {
  top: 0;
}

div.booking__content input,
div.booking__content textarea,
div.booking__content select {
  border-radius: 3px;
}

.booking__login {
  text-align: left;
  text-decoration: underline;
  letter-spacing: 0px;
  color: #ff5752;
  cursor: pointer;
}

.booking__legal {
  font-size: 0.875em;
  margin-bottom: 20px;
}

.booking__overlay {
  z-index: 999;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  outline: none;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 10px #00000029;
  padding: var(--spacingLarge);

  @media (min-width: 700px) {
    padding: var(--spacingLarge);
    width: var(--width);
    height: auto;
  }
}

.booking__modal {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking__login-close-container {
  text-align: right;
}
.booking__login-close {
  cursor: pointer;
  display: inline-block;
  align-self: flex-end;
}

.booking__login-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #142046;
  opacity: 1;
  margin-top: 18px;
  margin-bottom: 25px;
}

.booking__success-text {
  text-align: center;
  margin-bottom: 20px;
}
.booking__success-text ~ button {
  width: fit-content !important;
  margin-bottom: 20px;
}

.booking__login-form {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: flex;
  @media (min-width: 700px) {
    margin-left: 46px;
    margin-right: 46px;
  }
}
.booking__close-logo {
  height: 20px;
  width: 20px;
}

.booking__mapoverlay {
  z-index: 999;
  background: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  outline: none;
  height: 100%;
  width: 100%;
  box-shadow: 0px 0px 10px #00000029;
  display: flex;
  flex-direction: column;
  padding: var(--spacingLarge);

  @media (min-width: 700px) {
    padding: var(--spacingLarge);
    width: var(--width);
    height: auto;
  }
}

.booking__mapmodal {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking__map-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0px;
  color: #142046;
  opacity: 1;
  margin-top: 1px;
  margin-bottom: 5px;
}

.booking__map-address {
  margin-top: 0;
  margin-bottom: 5px;
}

.booking__map-error {
  margin-top: 0;
  margin-bottom: 5px;
  color: red;
}

.booking__map-container {
  margin-left: 5px;
  margin-right: 5px;
}

.booking__map-button {
  margin-top: 10px;
  justify-content: space-between;
  display: flex;
  @media (max-width: 480px) {
    flex-direction: column;
  }
}

.booking__map-buttonright {
  float: right;
  margin: 5px;
}

.booking__map-buttonleft {
  float: left;
  margin: 5px;
}

/* QUERIES */
@media screen and (max-width: 700px) {
  .booking__content {
    padding-bottom: calc(80px + 20px);
    padding-top: calc(60px + 20px);
  }
  .booking__content-wrap {
    width: 100% !important;
    margin: 10px auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .booking__footer {
    height: 80px;
  }

  .booking__package {
    flex-direction: column-reverse;
  }

  .booking__footer-wrap {
    padding: 0 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .booking__footer-wrap .booking__package ~ button {
    flex-shrink: 0;
    width: 110px;
    height: 45px;
    position: relative;
    text-align: left;
  }

  .booking__book-button {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .booking__header {
    padding: 0 12px;
  }

  .booking__header-pagination {
    text-align: center;
  }
  .booking__header-logo-wrapper {
    margin: 0;
    flex-basis: 33%;
  }

  .booking__header-logo-wrapper span {
    display: none;
  }
}

@media screen and (max-width: 1350px) {
  .booking__payment-Wrap {
    margin-bottom: 250px;
  }
}

.booking__price {
  height: 25px;
}

.loading__dot {
  display: inline-block;
  position: relative;
  top: -5px;
  opacity: 0;
  animation: showHideDot 1.5s ease-in-out infinite;
}

.loading__dot::after {
  content: '.';
  font-size: 3.5em;
  line-height: 0;
}

.loading__dot-one {
  animation-delay: 0.2s;
}
.loading__dot-two {
  animation-delay: 0.4s;
}
.loading__dot-three {
  animation-delay: 0.6s;
}

@keyframes showHideDot {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
