.booking-start-main {
  max-width: 1920px;
  overflow: hidden;
}

.service-box {
  max-width: 400px;
  height: 500px;
  border-radius: 25px;
  position: relative;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 0 20px #00000030;
}

.service-box.added::before {
  content: "Added";
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 215, 35);
  font-family: "Anton SC", sans-serif;
  font-size: 2rem;
  height: 100%;
  width: 100%;
  background-color: #00000090;
  z-index: 1000;
  position: absolute;
}

.service-box.added .service-card-button {
  display: none;
}

.service-price {
  position: absolute;
  top: 0;
  right: 30px;
  background-color: var(--primary-1);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.service-details-container {
  height: 250px;
  background: #fff;
  position: absolute;
  bottom: 0;
  border-radius: 25px;
}

.service-details-text-container {
  flex: 1;
}

.service-details-section {
  flex: 1;
}

.service-detail-separate-line {
  width: 2px;
  background-color: var(--primary-1);
}

.service-action-container {
  height: 60px;
}

.service-card-button {
  border-radius: 50px;
  border: none;
  outline: none;
  background-color: var(--primary-1);
  transition: 0.3s;
}

.service-card-button:hover {
  background-color: var(--background2-1);
}

.service-card-button:active {
  background-color: var(--light);
}

.linked-service-swiper-container {
  width: 100%;
  height: 100%;
}

.booking-form-swiper {
  width: 100%;
  height: 100%;
}

.booking-form-swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-form-swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-time-slot-btn-container input[type="radio"] {
  display: none;
}

.service-time-slot-btn {
  background-color: transparent !important;
}

.service-time-slot-btn-container
  input[type="radio"]:checked
  + .service-time-slot-btn {
  background-color: var(--primary-1) !important;
}

.service-time-slot-btn-container
  input[type="radio"]:disabled
  + .service-time-slot-btn {
  cursor: not-allowed;
  border: solid 1px #808080;
  background-color: #80808050 !important;
  color: #8f8f8f;
}

.booking-service-details-container {
  box-shadow: 0 0 20px #00000030;
  border-radius: 8px;
  max-width: 600px;
  transition: 1s;
  margin-bottom: 20px;
}

.payment-warning {
  background-color: darkgoldenrod;
  border-radius: 4px;
}

.booking-summary-separator {
  height: 2px;
  background-color: #fff;
}

.selected-service-details-box {
  background-color: var(--background2-2);
  border-radius: 8px;
}

.coupon-apply-container input {
  /* background-color: var(--background1-1); */
  font-size: var(--normal);
  font-family: "Anton SC", sans-serif;
}

.discount-details {
  color: greenyellow;
}

.remove-service-btn {
  border: none;
  outline: none;
  height: 40px;
  width: 40px;
  background-color: brown;
  border-radius: 4px;
}

.required-input.required-warning {
  background-color: #ff000050;
}

@media screen and (max-width: 932px) {
  .booking-start-container {
    flex-direction: column;
    gap: var(--spacing-8);
  }

  .booking-service-details-container,
  .booking-start-form {
    max-width: 100%;
  }

  .selected-service-details-price h3 {
    font-size: var(--normal);
  }
}
