/**
 * Booking Info Page
 */

.booking-info-page {
  display: flex;
  flex-direction: column;
  margin: 4rem 0;
}
.booking-info-page h2{
  margin-bottom: 3rem;
  margin-top: 0;
}
.booking-info-page > a{
  margin: 0 auto;
}
.booking-info-page__content {
  padding: 2rem;
  margin-top: 1rem;
  background-color: var(--brand-secondary-light-color);
}
.order-information__row {
  border-bottom: 1px solid var(--brand-grey-medium);
  padding: 0.25rem 0.5rem;
}
.order-information__row:last-child {
  border-bottom: none;
}
.order-information__row > p:first-child{
  font-family: FuturaLT-Heavy, sans-serif;
  font-weight: 700;
}
.order-information__row--order-item .order-information__row{
  border: none;
  display: block;
  padding: 0.25rem 0;
}
.order-information__row p {
  margin: 0;
}
.order-information__row a {
  font-weight: 500;
  color: var(--brand-primary-color);
  text-decoration: underline;
}
.order-information__row ul {
  margin: 0.25rem 0;
  padding-left: 1.5rem;
}
.order-information__row--no-border {
  border: none
}
.order-information__row--order-item .order-information__row--prescribing {
  padding: 1rem;
  border: 1px solid var(--brand-grey-medium);
}
.prescribing-speciality {
  display: flex;
  gap: 5px;
}
.order-information__row--curist {
  display: grid;
  background-color: var(--brand-white);
  padding: 1rem;
  border-bottom: none;
}
.order-information__row--cure {
  margin-top: 0.75rem;
  border-bottom: none;
  background-color: var(--brand-primary-color);
  padding: 1rem;
}
@media (min-width: 600px) {
  .order-information__row {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-rows: 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0.75rem 0.5rem;
    align-items: center;
  }
  .order-information__row--order-item {
    display: block;
  }
  .order-information__row--order-item .order-information__row{
    padding: 0.6rem 0;
  }
  .order-information__row--order-item .order-information__row--prescribing,
  .order-information__row--curist,
  .order-information__row--cure {
    padding: 1rem;
  }
  .order-information__row--cure {
    margin-top: 1.5rem;
  }
}
@media (min-width: 768px) {
  .booking-info-page > a{
    margin: 0 0 0 auto;
  }
}