/* GENERAL */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR */
.booking-navbar {
    height: 50px;
    background-color: #fff;
    border-bottom: 1px solid #f8ac00;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
}

.booking-form-container {
    margin-top: 65px;
}

@media only screen and (max-width: 991px) {
  .booking-form-container {
      margin-top: 50px;
  }
}

.booking-section-list-img {
    display: inline-block;
    margin-right: 5px;
    width: 15px;
    height: 15px;
}

/* HOTEL PANEL */

.booking-panel-header {
    background-color: #f8ac00;
    border-radius: 5px 5px 0 0;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.summary-insurance-price,
.summary-voucher-price,
.summary-seating-price,
.summary-luggage-price{
    display: none !important;
}

.summary-insurance-price.active,
.summary-voucher-price.active,
.summary-seating-price.active,
.summary-luggage-price.active{
    display: flex !important;
}

.booking-panel-summary-divider {
    height: 1px;
    background-color: #f8ac00;
}

/* PROGRESSBAR */

.progressbar {
    margin: 0;
}

@media only screen and (max-width: 991px) {
    .progressbar {
        margin-top: 10px;
    }
}

.progressbar-step {
    background-color: #ebebeb;
    text-align: center;
    color: #333;
}

#progressbar-step1 {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

#progressbar-step2, #progressbar-step3, #progressbar-step4 {
    border-left: 1px solid #dbd1d1;
}

#progressbar-step4 {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.progressbar-active {
    background-color: #f8ac00;
    color: #fff;
    font-weight: 600;
}

#progressbar-step5 {
    border-radius: 5px;
}

/* AGREEMENTS */

.booking-agreement {
  font-size: 12px;
}

/* INSURANCE */
.red-star {
    color: #f21818;
}

.box-payment-choice {
    height: 2em;
}

.loading-on {
    display: none;
}

.payment_confirmation_container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25em;
    margin-top: 65px;
    margin-bottom: 10px;
}

#payment-status-fail,
#try-again-button {
    display: none;
}

.confirmation-step-number {
    text-align: center;
    font-size: 20px;
    color: #ffff;
    background-color: #f8ac00;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 30px;
    line-height: 40px;
}

.invalid-feedback {
    display: block !important;
}

.voucher__loading {
    display: none;
}

.plane:before {
  content: '';
  background-color: #789520;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  left: calc(50% - 10px);
  top: 15px;
  z-index: 1;
}

#seatingTab .nav-link {
  color: black;

  &.active {
  font-weight: bold;

  }
}

.seat {
  width: 40px;
  height: 40px;
  input[type=checkbox] {
    position: absolute;
    opacity: 0;
  }
  input[type=checkbox]:checked + label {
      background-color: #f8ac00 !important;
      color: #FFFFFF;
      font-weight: bold;
    }
  input[type=checkbox]:disabled + label {
      background-color: #dddddd !important;
    }
  label {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f8ac00 !important;
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
}

.seat-legend {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #f8ac00 !important;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  padding: 1.2em;
}

.seat_selected {
  background-color: #f8ac00 !important;
  color: #FFFFFF;
  font-weight: bold;
}
.seat_unavailable {
  background-color: #dddddd !important;
}

#mobile-summary-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: none;
  background-color: #ffffff;
}

@media only screen and (max-width: 991px) {
  #mobile-summary-bar.active {
    display: block;
    border-top: 1px solid #f8ac00;
  }
}


