.booking-section {
  margin-top: 8.8%;
}
.booking-section .container {
  padding: 0 var(--distance);
  max-width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  padding-bottom: 8.95%;
  padding-bottom: 5.35%;
}
.booking-section__title {
  font-size: 6.8rem;
  font-weight: 100;
  text-align: center;
  margin-bottom: 6.95%;
}
.booking-section .booking-layout__header {
  margin-bottom: 3%;
}
.booking-section .booking-layout__header .booking-layout__subtitle {
  font-size: 4.7rem;
  font-weight: normal;
  text-transform: capitalize;
  margin-bottom: 4.3vh;
}
.booking-section .booking-layout .booking-grid {
  display: flex;
  justify-content: space-between;
  gap: 2.3%;
}
.booking-section .booking-layout .booking-grid .booking-plan {
  flex: 1;
}
.booking-section .booking-layout .booking-grid .booking-plan__media {
  width: 100%;
  height: 100%;
}
.booking-section .booking-layout .booking-grid .booking-plan__media img {
  max-width: 100%;
  max-height: 100%;
}
.booking-section .booking-layout .booking-grid .booking-plan__media .booking-plan__img {
  max-width: 100%;
  max-height: 100%;
}
.booking-section .booking-layout .booking-grid .booking-panel {
  background-color: var(--gray-bg);
  width: 32%;
  padding: 2.7% 0;
  box-sizing: border-box;
  border-radius: var(--radius);
  height: fit-content;
  min-width: 32%;
  flex-shrink: 0;
}
.booking-section .booking-layout .booking-grid .booking-panel .floor-tabs {
  display: flex;
  margin-bottom: 7%;
}
.booking-section .booking-layout .booking-grid .booking-panel .floor-tabs__item {
  all: unset;
  font-size: 3.1rem;
  flex: 1;
  text-align: center;
}
.booking-section .booking-layout .booking-grid .booking-panel .lab-list__header {
  display: flex;
  justify-content: space-between;
  padding: 0 9%;
  box-sizing: border-box;
  margin-bottom: 3.7%;
}
.booking-section .booking-layout .booking-grid .booking-panel .lab-list__header .lab-list__col {
  font-size: 2.4rem;
}
.booking-section .booking-layout .booking-grid .booking-panel .lab-list .lab-item {
  font-size: 2.4rem;
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: space-between;
  padding: 2% 9%;
  transition: 0.3s ease-out;
  cursor: pointer;
}
.booking-section .booking-layout .booking-grid .booking-panel .lab-list .lab-item:hover {
  background-color: var(--scolor);
}
.booking-section .booking-layout .booking-grid .booking-panel .lab-list .lab-item__check {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.booking-section .wow {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.booking-section .wow.animated {
  opacity: 1;
  transform: translateY(0);
}
@media all and (max-width: 1441px) {
  .booking-section__title {
    font-size: var(--h1);
  }
  .booking-section .booking-layout__header .booking-layout__subtitle {
    font-size: var(--h2);
  }
  .booking-section .booking-layout .booking-grid .booking-panel .floor-tabs__item {
    font-size: var(--h3);
  }
  .booking-section .booking-layout .booking-grid .booking-panel .lab-list__header .lab-list__col {
    font-size: var(--h4);
  }
}
@media all and (max-width: 769px) {
  .booking-section__title {
    font-size: var(--t1);
  }
  .booking-section .booking-layout__header .booking-layout__subtitle {
    font-size: var(--t2);
  }
  .booking-section .booking-layout .booking-grid {
    flex-direction: column;
  }
  .booking-section .booking-layout .booking-grid .booking-panel {
    padding-top: 2rem;
    width: 100%;
  }
  .booking-section .booking-layout .booking-grid .booking-panel .floor-tabs__item {
    font-size: var(--t3);
  }
  .booking-section .booking-layout .booking-grid .booking-panel .lab-list__header .lab-list__col {
    font-size: var(--t4);
  }
}
