
.booking-page {
    background: #E9EAEB;
}
  
  .booking-sidebar {
    position: relative;
    z-index: 1;
  }
  .booking-sidebar::before {
    content: "";
    background: url("../img/bg/book-bg-01.svg") no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    background-size: contain;
    width: 121px;
    height: 87px;
    z-index: -1;
  }
  .booking-sidebar::after {
    content: "";
    background: url("../img/bg/book-bg-02.svg") no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-size: contain;
    width: 155px;
    height: 60px;
    z-index: -1;
  }
  
  .location-card {
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .location-card.selected {
    box-shadow: 0px 0px 0px 1px rgb(3, 201, 90);
  }
  .location-card:hover {
    box-shadow: 0px 0px 0px 1px rgb(3, 201, 90);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .location-card:hover::before {
    content: "";
    background: url("../img/icons/loc-bg.svg") no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    width: 155px;
    height: 100%;
    z-index: -1;
  }
  .location-card h6 {
    font-size: 12px;
  }
  .location-card p {
    font-size: 12px;
  }
  .location-card .trend-icon {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: absolute;
    z-index: 6;
    inset-block-start: -5px;
    inset-inline-start: -6px;
  }
  .location-card .trend-icon span {
    position: absolute;
    display: block;
    width: 70px;
    padding: 6px 6px 3px 0;
    color: #FFF;
    font: 500 16px/1 Lato, sans-serif;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    text-align: center;
    inset-inline-end: -5px;
    inset-block-start: 1px;
    transform: rotate(-45deg);
  }
  .location-card .trend-icon span img {
    transform: rotate(45deg);
  }
  
  .staff-card {
    overflow: hidden;
    z-index: 1;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .staff-card.selected {
    box-shadow: 0px 0px 0px 1px rgb(3, 201, 90);
  }
  .staff-card:hover {
    box-shadow: 0px 0px 0px 1px rgb(3, 201, 90);
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .staff-card h6 {
    font-size: 12px;
  }
  .staff-card p {
    font-size: 12px;
  }
  
  .time-item {
    background: #FFF;
    border: 1px solid #EBECED;
    border-radius: 4px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
  }
  .time-item.disable {
    cursor: not-allowed;
    pointer-events: none;
    background: #E9EAEB;
  }
  .time-item.disable h6, .time-item.disable p {
    color: #AFB2B8;
  }
  .time-item.selected {
    background: #03C95A;
    border-color: #03C95A;
  }
  .time-item.selected h6, .time-item.selected p {
    color: #FFF;
  }
  
  .service-info {
    background: #242B3A;
    border-radius: 5px;
    padding: 8px;
  }
  .service-info .avatar img {
    border: 1px solid #FFF;
  }
  .service-info span {
    color: #AFB2B8;
    display: block;
  }
  
  .booking-wizard {
    padding: 55px 0;
  }
  @media (max-width: 991.98px) {
    .booking-wizard {
      padding: 30px 0;
    }
  }
  
  fieldset.booking-content {
    display: none;
  }
  fieldset.booking-content#first-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .cart-info-wrap {
    background: #F6F7F7;
    border-radius: 5px;
    padding: 16px;
  }
  
  .booking-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    flex-direction: column;
    height: 100%;
  }
  .booking-content p, .booking-content h6, .booking-content .form-label {
    font-size: 12px;
    margin-bottom: 0;
  }
  .booking-content .form-control {
    height: 28px;
  }
  .booking-content textarea.form-control {
    height: auto;
  }
  
  .booking-footer {
    border-top: 1px solid #EBECED;
    margin-top: 16px;
  }
  .booking-footer .btn {
    margin-top: 16px;
  }
  
  .payment-item {
    border: 1px solid #EBECED;
    border-radius: 5px;
    padding: 16px;
  }
  .payment-item .form-check .form-check-label {
    font-size: 12px;
    font-weight: 500;
  }
  .payment-item.active {
    box-shadow: 0px 0px 0px 1px rgb(3, 201, 90);
  }
  
  .total-card {
    min-height: 500px;
  }
  .total-card #pay-btn.btn {
    color: #AFB2B8;
    cursor: none;
    pointer-events: none;
  }
  .total-card #pay-btn.btn.active {
    background: #FF008A !important;
    border-color: #FF008A !important;
    color: #FFF !important;
    cursor: pointer;
    pointer-events: auto;
  }
  @media (max-width: 991.98px) {
    .total-card {
      min-height: 300px;
    }
  }
  
  .total-wrap {
    background: #F8F9F9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 8px;
  }
  
  #bokingwizard {
    position: relative;
    list-style: none;
    padding: 0;
  }
  #bokingwizard li {
    font-size: 12px;
    font-weight: 500;
    color: #E9EAEB;
    position: relative;
    padding-left: 20px;
  }
  #bokingwizard li::before {
    content: "";
    border: 1px dashed #656B76;
    width: 1px;
    height: calc(100% - 2px);
    position: absolute;
    top: 2px;
    left: 6px;
  }
  #bokingwizard li span::before {
    content: "";
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid #656B76;
    position: absolute;
    top: 2px;
    left: 0;
    background: #111827;
  }
  #bokingwizard li.active span::after {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: #03C95A;
    position: absolute;
    top: 7px;
    left: 5px;
  }
  #bokingwizard li.activated span::before {
    border: 0;
  }
  #bokingwizard li.activated span::after {
    font-family: "Fontawesome";
    content: "\f058";
    color: #03C95A;
    position: absolute;
    top: 0;
    left: 0;
  }
  #bokingwizard li:last-child::before {
    content: none;
  }
  
  .status-report {
    margin-bottom: 16px;
  }
  .status-report h6 {
    border-bottom: 1px solid #393F4D;
  }
  .status-report p {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .booking-user .user-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #EBECED;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }
  .booking-user .user-img img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
  }
  
  .num-count {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
  }



#calendar {
    width: 270px; /* Set width */
}

.table {
    height: 185px; /* Set height */
    overflow: hidden; /* Hide overflow */
}

.table th, .table td {
    height: 26px; /* Adjust height for table cells */
    padding: 0; /* Remove padding */
    line-height: 26px; /* Center align text vertically */
}

.btn-addon.active {
    background-color: #03C95A !important;
    border-color: #03C95A !important;
    color: #FFF !important;
}

.select-item {
    border-radius: 5px;
}

.select-item:hover, .select-item.selected {
    box-shadow: 0px 0px 0px 1px rgb(3, 201, 90);
}
.avatar.avatar-lg {
    width: 2.813rem;
    height: 2.813rem;
    line-height: 2.813rem;
    font-size: 1rem;
}

.booking-content .bootstrap-datetimepicker-widget table th {
    font-size: 12px;
    font-weight: 600;
    color: #656B76;
    width: 26px;
    height: 24px;
    line-height: 24px;
}
.bootstrap-datetimepicker-widget .picker-switch {
    padding-bottom: 8px;
}
  
.booking-content .bootstrap-datetimepicker-widget table td.active,
.booking-content .bootstrap-datetimepicker-widget table td.active:hover {
  background-color: #FF008A;
  text-shadow: unset;
}

.booking-content .bootstrap-datetimepicker-widget table th.prev, 
.booking-content .bootstrap-datetimepicker-widget table th.next {
  padding-bottom: 8px;
}
.booking-content .bootstrap-datetimepicker-widget table th.prev span, 
.booking-content .bootstrap-datetimepicker-widget table th.next span {
  width: 20px;
  height: 20px;
  font-size: 12px;
  border: 1px solid #EBECED;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
}
.booking-content .bootstrap-datetimepicker-widget table th.prev span:hover, 
.booking-content .bootstrap-datetimepicker-widget table th.next span:hover {
  background: #111827;
  border-color: #111827;
  color: #FFF;
}
.booking-content .bootstrap-datetimepicker-widget table td {
  font-size: 12px;
  color: #242B3A;
}
.booking-content .bootstrap-datetimepicker-widget table td.day {
  width: 26px;
  height: 24px;
  line-height: 24px;
}
.booking-content .bootstrap-datetimepicker-widget table td.day {
    font-size: 12px;
 }

.booking-content .bootstrap-datetimepicker-widget {
  z-index: 999 !important;
}
.booking-content .bootstrap-datetimepicker-widget table td.today:before {
  border-bottom-color: #FF008A;
}

.booking-content .bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: transparent;
}
.bg-dark {
    background-color: #111827 !important;
    border: 1px solid #111827 !important;
    color: #FFF;
}

.booking-page .content {
    padding: 60px 0;
  }
  @media (max-width: 991.98px) {
    .booking-page .content {
      padding: 50px 0;
    }
  }
  .bootstrap-datetimepicker-widget table td.disabled, .bootstrap-datetimepicker-widget table td.disabled:hover {
 
    opacity: 0.4;
  }