/*
1 colore bottone
2 bordo/hover
3 testo
*/
/*
1 colore bottone
2 bordo/hover
3 testo
*/
.bookingLoading {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10020;
}
.bookingLoading .loader {
  width: 100px;
  padding: 16px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
  --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}
@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}
.bookingLoading h4 {
  color: var(--white);
  font-size: 2rem;
  margin-top: 0.5rem;
}

.booking {
  display: grid;
  grid-template-areas: ". Title" "Summary Main";
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .booking {
    grid-template-columns: 1fr;
    grid-template-areas: "Title" "Summary" "Main";
  }
}
.booking__title {
  grid-area: Title;
}
.booking__summary {
  grid-area: Summary;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking__summary__accommodation.card {
  overflow: hidden;
}
.booking__summary__accommodation.card .card__header {
  padding: 0;
}
.booking__summary__checkInOut .card__body:has(> .card) {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking__summary__checkInOut .card__body:has(> .card) .card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking__summary__checkInOut .card__body:has(> .card) .card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking__summary__units {
  display: flex;
  flex-direction: column;
}
.booking__summary__units .card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.booking__summary__units__unit {
  display: flex;
  flex-direction: column;
}
.booking__summary__units__unit > div {
  display: flex;
  justify-content: space-between;
}
.booking__summary__units__unit__occupancy {
  padding-left: 0.5rem;
  /*font-size: 13px;*/
  display: block;
}
.booking__summary__units > .card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.booking__main {
  grid-area: Main;
}
.booking__main form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking__main__units h2 {
  margin-bottom: 0.25rem;
}
.booking__main__units__unit {
  display: flex;
  flex-direction: column;
}
.booking__main__units__unit > div {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.5rem;
  align-items: center;
}
.booking__main__payment p {
  font-size: small;
  font-style: italic;
}
.booking__price {
  display: flex;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid var(--bg-dark);
  font-size: x-large;
  background-color: var(--primary-light);
  border-radius: 0.5rem;
}
.booking__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking__aside {
  grid-area: Aside;
}
.booking__main__account {
  flex-direction: row;
  gap: 1rem;
}

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