@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap");
body, html {
  background-color: #f5f5f5;
  width: 100%;
  height: 100%;
}

.booking-wrapper {
  padding: 10px 15px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.booking-wrapper h3 {
  font-family: "Cormorant Garamond", serif;
}
.booking-wrapper .btn-primary {
  width: auto;
  padding: 9px 20px;
}
.booking-wrapper .booking-header {
  padding: 10px;
  background-color: white;
  border-radius: 100px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  position: relative;
  margin-bottom: 25px;
}
.booking-wrapper .booking-header img {
  height: 40px;
}
.booking-wrapper .booking-header p {
  margin: 0;
  white-space: nowrap;
}
.booking-wrapper .booking-header .d-flex {
  align-items: center;
}
.booking-wrapper .booking-header .quantity-bullet {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  color: white;
  background-color: black;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 2;
}
.booking-wrapper .box-white {
  width: 100%;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
}

.progress {
  display: flex;
  gap: 6px;
  height: 4px;
  background-color: transparent;
}
.progress span {
  width: 28px;
  height: 4px;
  background: #ddd;
  border-radius: 20px;
}
@media screen and (max-width: 550px) {
  .progress span {
    width: 15px;
  }
}
.progress .active {
  background: #c3ab6f;
}

.booking-layout {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 25px;
}
@media screen and (max-width: 992px) {
  .booking-layout {
    grid-template-columns: 40% 1fr;
  }
}
@media screen and (max-width: 550px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }
}
.booking-layout .content-book {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .booking-layout .content-book {
    grid-template-columns: 1fr;
  }
}
.booking-layout .content-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.booking-layout .content-detail section {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  overflow: auto;
}
@media screen and (max-width: 550px) {
  .booking-layout .content-detail section {
    overflow: auto;
  }
}
.booking-layout .content-detail section h3 {
  margin-bottom: 15px;
}
.booking-layout .content-detail section ul {
  margin: 0;
  padding: 0;
}
.booking-layout .content-detail section ul li {
  display: flex;
  justify-content: start;
  margin-bottom: 20px;
}
.booking-layout .content-detail section ul li:last-child {
  margin-bottom: 0;
}
.booking-layout .content-detail section ul li label {
  width: 110px;
  font-size: 13px;
  color: grey;
  font-weight: normal;
}
.booking-layout .content-detail section ul li .col-right {
  width: 100%;
}
.booking-layout .content-detail section ul li .col-right .item-services {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
}
.booking-layout .content-detail section ul li .col-right .item-services:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .booking-layout .content-detail section ul li .col-right .item-services {
    display: block;
  }
}
.booking-layout .content-detail section ul li p {
  font-size: 15px;
  margin: 0;
}
.booking-layout .content-detail section ul li b {
  font-size: 15px;
  font-weight: bold !important;
  margin: 0;
}
.booking-layout .content-detail section ul li small {
  color: #777;
  font-size: 12px;
}
.booking-layout h3 {
  font-size: 26px;
  color: #9c8342;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}

.sidebar {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
}
@media screen and (max-width: 550px) {
  .sidebar {
    display: none;
  }
}

.shop {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}
.shop p {
  font-size: 13px;
  color: #777;
}

.logo {
  width: 200px;
}
.logo img {
  border-radius: 8px;
}
@media screen and (max-width: 1280px) {
  .logo {
    display: none;
  }
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 5px;
}
.steps li {
  display: flex;
  gap: 15px;
  align-items: center;
}
.steps li strong {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
}
.steps li small {
  color: #777;
  font-size: 12px;
}
.steps li.line {
  width: 2px;
  height: 15px;
  border-radius: 10px;
  background-color: #ddd;
  margin: 5px 16px;
}
.steps li.line.active {
  background-color: #c3ab6f;
}
.steps li.current strong {
  font-weight: bold !important;
}
.steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ececec;
  font-weight: 600;
  font-size: 16px;
}

.steps .done span,
.steps .current span {
  background: #c3ab6f;
  color: #fff;
  font-size: 16px;
}

.timer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.timer p {
  font-size: 13px;
  color: #777;
}

.timer h2 {
  margin: 10px 0;
  color: #ff6d2e;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.calendar,
.slots {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  overflow: auto;
}
@media screen and (max-width: 550px) {
  .calendar,
  .slots {
    overflow: auto;
  }
}

.month {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.weekdays,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  text-align: center;
}

.weekdays {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.days span {
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  width: 40px;
  height: 40px;
}

.selected {
  background: #c3ab6f !important;
  color: #fff;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.slot-grid button {
  padding: 10px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.slot-grid button:hover {
  border-color: #c3ab6f;
}

.slot-grid button.selected {
  color: #fff;
  border: none;
}

.topbar {
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.right {
  width: 100%;
  justify-content: space-between;
}
.payment-option {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 30px 5px;
  text-align: center;
  font-family: "Lato", sans-serif;
  cursor: pointer;
  background: #f5f5f5;
  position: relative;
  margin: 5px 0;
}
.payment-option h4 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
}
.payment-option p {
  line-height: 1.2;
  margin-top: 5px;
}
.payment-option .checked {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  opacity: 0.3;
}

.payment-option.active {
  border: 1px solid #9c8342;
  background: #f7f1df;
}
.payment-option.active .checked {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #9c8342;
  z-index: 2;
  opacity: 1;
}/*# sourceMappingURL=booking.css.map */