.loading-screen{
  display:none;
  position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    flex-flow: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    z-index: 9999;
    text-align: center;
}

.booking-service-category-container {
  height: auto;
}

.previous-services-container {
  display: flex;
  flex-flow: column;
  gap: 15px;
}

.previous-service {
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
  border-radius: 8px;
  min-height: 50px;
  margin: 0;
  padding: 15px;
  display: flex;
  flex-flow: row;
  gap: 15px;
  align-items: center;
}

.booking-container p {
  margin:0;
}

.swiper {
  border: 1px solid rgb(231, 232, 233);
  box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
  padding: 10px 40px;
  border-radius: 50px;
  background: #fff;
}

.swiper-slide {
  height: auto;
  box-sizing: border-box;
  align-self: center;
}

.booking-steps-container {
  margin-top: 20px;
  background: #b2a79a;
  padding: 8px;
  border-radius: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.booking-service-category-item {
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  padding: 5px;
  border-radius: 50px;
  display: grid;
  place-items: center;
  height: 100%;
  transition: background 500ms ease;
  font-size: 14px;
  font-weight: 400;
}

.booking-service-category-item.selected,
.booking-service-category-item:hover
 {
  background: #b2a79a;
}

.swiper-button-next, .swiper-button-prev {
  color: #000;
}

.swiper-pagination-bullet-active {
  background: #006d9c;
}

.swiper-button-prev::after,
.swiper-button-next::after
 {
  font-size: 10px;
  font-weight: bold;
  background: #333;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  -webkit-text-stroke: 1.5px #fff;
}

.booking-step-heading {
  font-size: 2rem;
}
.category-heading {
  text-transform: uppercase;
  font-size: 1.4rem;
}

.booking-service-category-items {
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
  border-radius: 8px;
}

.booking-service-category-items .service-item {
  cursor: pointer;
  padding: 20px;
  border-bottom: 1px solid rgb(231, 232, 233);
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: baseline;
}

.service-item input[type="checkbox"] {
  transform: scale(1.4);
}

.booking-service-category-items .service-item .service-item-name {
  padding: 0 16px;
  flex:2;
}

.service-item-name-heading {
  font-size: 16px;
  font-weight: 500;
  margin:0;
}

.service-item-name-subheading p {
  margin: 0;
  font-size:14px;
}

.booking-service-category-content {
  padding: 15px;
  max-height: 800px;
  overflow-y: auto;
}

.booking-service-category-content-item {
  margin-bottom: 40px;
}


.booking-btn {
  background: #b2a79a;
  color: #000;
  border: unset;
  padding: 8px 15px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: 10px;
}

.booking-btn:hover {
  background: #b2a79a;
}

.services-summary-container {
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
  border-radius: 8px;
  min-height: 200px;
  display: grid;
  place-content: center;
  margin: 15px 0;
  padding:15px;
}

.services-summary-container p {
  margin:0;
}

.divider {
  border-bottom: 1px solid rgb(231, 232, 233);
  display: block;
  margin: 10px 0;
}

.services-summary-items .item {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
}

.booking-card-container {
  display: flex;
  flex-flow: column;
  background: #FFFFFF;
  box-shadow: 0px 5px 15px rgb(0 0 0 / 15%);
  border-radius: 8px;
  margin: 20px 0;
}

.booking-card-item {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgb(231, 232, 233);
  cursor:pointer;
}

.booking-card-item:hover {
  background: #f7f8fa;
}

.staff-container,
.booking-time-container{
  max-height: 700px;
  overflow-y: auto;
}

.staff-item img {
  width: 50px;
  border-radius:50px;
  aspect-ratio: 1/1;
}

.booking-calendar-controller {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.booking-calendar-controller-text {
  font-weight: 600;
}

.booking-calendar-container {
  display: flex;
  flex-flow: row;
  gap: 2px;
}

.booking-calendar-item {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgb(211, 212, 213);
  padding: 5px 10px;
  text-align: center;
  height: 64px;
  margin: 0px 2px;
  outline: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #000;
  flex: 1;
}

.booking-calendar-item.unavailable {
  background: rgb(242, 242, 247);
  cursor: not-allowed;
  touch-action: none;
}

.booking-calendar-item.selected {
  background: #b2a79a;
}

.prev-dates.disabled {
  background: rgb(242, 242, 247);
  cursor: not-allowed;
  touch-action: none;
}

.time-block-item.disabled {
  cursor: not-allowed;
  touch-action: none;
}

.summary-date-container {
  display: flex;
  flex-flow: row;
}

.summary-date-container .date-block {
  outline: none;
  padding: 10px;
  max-width: 64px;
  background: #FFFFFF;
  text-align: center;
  margin-right: 14px;
  border-radius: 8px;
  background-color: #f5f5fa;
}

.submit-booking-btn:disabled,
.booking-step-btn:disabled {
  background: #F5F5FA;
  color: #969696;
  cursor: not-allowed;
  touch-action: none;
}

.step-btn-container {
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: #fff;
  z-index: 99;
  text-align: center;
  transform: translateY(300px);
  transition: transform 500ms ease;
  min-height: 90px;
  display: grid;
  place-items: center;
}

.step-btn-container.showing {
  transform: translateY(0);
}

@media (max-width: 500px) {

  .booking-service-category-content {
    max-height: 400px;
  }

  .staff-container,
  .booking-time-container{
    max-height: 400px;
  }

  .booking-calendar-item {
    font-size: 14px;
  }

  .booking-service-category-item {
    font-size: 13px;
  }
}