*{
    padding:0;
    margin: 0;
}

.time-t-bg{
    display: flex;
    justify-content:right;
    min-height: 100vh;
    background: url('/static/img/booking/bg-1.webp');
    position: relative;
     background-size: cover;
    background-position: center;
    flex-wrap: wrap;
}

#the-main-service-ideaform{
    margin:4% 8%;
    max-width: 650px;
    width:100%
}
@media (max-width:1134px){
  #the-main-service-ideaform{
    margin:4rem 2rem;
 
}

}

#the-logo-service{
  position: absolute;
  left: 2%;
  background-image: url('/static/img/booking/logo-small-round.png');
  background-size: contain; /* Use 'contain' to make sure the entire image fits */
  background-repeat: no-repeat; /* Prevent the image from repeating */
  width: 265px;
  height: 90px;
}

.t-heading{
  
  color: #05366c;
  font-weight: 650;
}



.the-h-div{
    margin-bottom:1rem;
  width: 100%;
  display: flex;
  justify-content: end;
  padding: 1rem;
  position: relative;
}

@media (max-width:1134px){
    .the-h-div{
      width: 100%;
    }
}


/*---------------------
  Service Booking
-----------------------*/

.service-booking-head{
	text-align: center;
}

.service-booking__text{
	margin-bottom: 50px;
}

.service-booking__text ul li a {
    color: #353535;
    text-decoration: none;
}

.quick-service-desc .section-title{
	margin: 45px;
}

@media (min-width: 150px) and (max-width: 938px) {
	.quick-service-desc .section-title p{
		text-align: justify;
	}
}


.quick-service-desc .section-title h3{
	border-bottom: 0.4px solid #cacaca;
	margin-bottom: 10px;
}

.service-booking__form form .the-input,
.service-booking__form form textarea {
    width: 100%;
    font-size: 14px;
    color: #070707;
    border-radius: 6px;
    padding: 12px 20px;
    margin-bottom:20px;
    background: transparent;
    border: none;
    outline: none;
    border: 1px solid rgba(87, 87, 87, 0.54);
    text-shadow: 0 0 0 #c1c1c1;
}

.service-booking__form form input::placeholder,
.service-booking__form form textarea::placeholder {
    color: #141414;
}

.service-booking__form form textarea {
    resize: none;
}

.service-booking-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #da251c;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 15px;
    cursor: pointer;
    transition: all .4s ease;
}

.service-booking-submit-btn:hover {
    background-color: #05366c;
}

.service-booking__form select {
	width: 100%;
	height: 45px;
	font-family: inherit;
	font-size: 14px;
	border-radius: 6px;
	margin-bottom: 20px !important;
	
    background: transparent;
   
    outline: none;
    border: 1px solid rgba(87, 87, 87, 0.54);
        padding: 9px 20px;
	line-height: inherit;
    color: #000000;
    text-shadow: 0 0 0 #c1c1c1;
}

.service-booking__form select > option {
	width: 100%;
	border-radius: 0;
	margin-top: 0;
	overflow-y: scroll !important;
	height: 200px !important;
    background:aliceblue;
   
    color: #000000;
}

.service-booking-form-bg{
	
    padding: 30px;
    border-radius: 21px;
	margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(255, 255, 255, 0.54);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #000000;
    backdrop-filter: blur(20px);
    background-color: white;

}


@media(max-width:500px){
    .service-booking-form-bg{
        padding: 25px;
    }
}
/* Hide default radio buttons */
.b-form-radio {
    display: none;
}

/* Container for custom radio button */
.b-form-radio + span {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
    line-height: 20px; 
}

/* Custom radio button */
.b-form-radio + span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
    width: 20px; /* Size of custom radio button */
    height: 20px;
    border-radius: 50%;
    border: 2px solid #05366c; /* Border color */
    background-color: #fff; /* Background color */
    transition: background-color 0.3s ease, border-color 0.3s ease;
	margin-top: -5px;
}

/* Checked state of the radio button */
.b-form-radio:checked + span::before {
    background-color: #05366c; /* Background color when checked */
    border-color: #05366c; /* Border color when checked */
}

/* Tick mark inside the custom radio button */
.b-form-radio:checked + span::after {
    content: '\2714'; /* Unicode character for tick mark */
    position: absolute;
    left: 4px; /* Adjust for centering */
    top: 0;
    transform: translateY(-50%) scale(1.2); /* Center and scale the tick mark */
    font-size: 14px; /* Adjust the size of the tick mark */
    color: #fff; /* Color of the tick mark */
	margin-top: -5px;
}

#ServiceTimeSlot {
    cursor: pointer; 
    margin-bottom: 7px !important;

}

.time-slot {
  height: max-content;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ccc;
  justify-content: center;
  border-radius: 5px;
  padding: .45rem;
  align-items: center;
  position: absolute;
  background: #f7f7f7;
  z-index: 9999;
  left: 0;
  margin: -16px 4% 0 4%;
  width: 92%; 
}

.time-slot label {
    cursor: pointer;
  font-size: 14px;
  box-sizing: border-box;
  padding: 3px 0.7px;
  border: 2px solid #80d37f;
  border-radius: 5px;
  text-align: center;
  background-color: #9df39c;
  color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  white-space: nowrap;
}

.time-slot input[type="checkbox"], .time-slot input[type="radio"] {
    display: none;
}

.hidden-div {
    display: none; /* Initially hidden */
    margin-top: 0;
    margin-bottom: 10px;
    padding: 0 10px;
    border-radius: 5px;
}
.hidden-div textarea{
    margin-bottom: 0!important;
}

.hidden-div textarea:focus {
    background-color: transparent;
    color: rgb(14, 13, 13);
    outline: none;
    border: 2px solid white; /* Optional: white border */
}

.che-box-tick {
    margin-bottom: 14px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    background: transparent;
    color: white;
  }

  .che-box-tick div {
    display: flex;
    align-items: center;
  }

  .option-checkbox {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }

  .form-check-label {
    font-size: 13px;
    color: #000000;
    cursor: pointer;
    text-shadow: 0 0 0 #c1c1c1;
  }

  /* Custom checkbox styling */
  .option-checkbox {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
  }

  .option-checkbox:checked {
    background-color: #d3d3d3;
    border-color: #d3d3d3;
  }

  .option-checkbox:checked::after {
    content: '✓';
    position: absolute;
    color: rgb(14, 14, 14);
    font-size: 17px;
    left: 2px;
    top: -5px;
    font-weight: 600;
  }

  .option-checkbox:hover {
    border-color: #333;
    }




  .hidden {
    display: none;
  }
  
 
  .arrow-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    pointer-events: none; /* Prevent interference with input clicks */
  }
  
  .rotate {
    transform: rotate(180deg);
  }
  



  .the-new-relative{
    position: relative;
}
#PickupDropLocation{
    cursor: pointer;
}

.time-slots-drop {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    justify-content: center;
    border-radius: 5px; 
    gap: .72rem;
    padding: .35rem;
    position: absolute;
    background: #f7f7f7;
    z-index: 9999;
    width: 92%;
    margin-top: -16px;
}


/* Styles for the scrollbar */
.time-slots-drop ::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.time-slots-drop ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5); /* Color of the scrollbar thumb */
    border-radius: 4px; /* Round the edges of the scrollbar thumb */
}

.time-slots-drop ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2); /* Background of the scrollbar track */
    border-radius: 4px; /* Round the edges of the scrollbar track */
}

/* For Firefox */
.time-slots-drop  {
    scrollbar-width: thin; /* Use a thin scrollbar */
    scrollbar-color: rgba(255, 255, 255, 0.5) rgba(255, 255, 255, 0.2); /* Thumb color and track color */
}


.time-slots-drop label {
    flex: 0 0 calc(49.33% - 10px);
    cursor: pointer;
    font-size: 14px;
    box-sizing: border-box;
    padding: 1.3px 0.7px;
    border: 2px solid #9df39cde;
    border-radius: 5px;
    text-align: center;
    background-color: #9df39cde;
    color: rgb(0, 0, 0);
    width: fit-content
}

.time-slots-drop input[type="radio"] {
    display: none;
}



.hidden {
    display: none;
  }
  
/* the css changing toggle button */




.toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  .toggle input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    transform: translateX(26px);
  }
  
  /* Optional: Add a label */
  .toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .toggle-label {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    color: #333;
  }

 


/* settings button toggle */

.settings-container {
  position: fixed;
  left: 28px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  z-index: 999;

}

.settings-btn {
  width: 50px;
  height: 50px;
  background: rgb(0, 49, 104);
  border: .25px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: 0;
  bottom: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 1;
  transition: all 0.3s ease;
  animation: pulsate 2s infinite;
}

/* Pulsate animation for the button */
@keyframes pulsate {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Wave ripple effect using ::after */
.settings-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 37%;
  height: 37%;
  background: rgb(12, 68, 234);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1); /* Center the ripple */
  opacity: 1;
  animation: ripple 2s infinite;
  pointer-events: none; /* Ensures it doesn't block button clicks */
  z-index: -1; /* Ensure ripple stays behind the button */
}

/* Ripple animation keyframes */
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1); /* Start small */
    opacity: 0.5;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(5); /* Expand outward */
    opacity: 0; /* Fade out */
  }
}

.theme-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.sun-btn {
  
  background: #ffff00;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  left: 70px;
  bottom: 0;
  fill: #000000;

}

.sun-btn.active{
  background: #ffd901;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  right: 70px;
  bottom: 0;
  fill: #736f6f;

}

.moon-btn {
  
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
  left: 0;
  bottom: 70px;
  fill: #111;
  background: #fffefe;

}




@keyframes fadeInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeInTop {
  0% {
    transform: translateY(25px);
    opacity: 0;
    visibility: visible;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }
}

.settings-container.active .sun-btn {
  animation: fadeInLeft 0.5s ease-out forwards;
}

.settings-container.active .moon-btn {
  animation: fadeInTop 0.5s ease-out forwards;
  animation-delay: 0.1s;
}

/* Icons */
.settings-icon, .sun-icon, .moon-icon {
  position: absolute;
  top: 0%;
  left: 0%;
  transform: translate(50%, 50%);
  width: 24px;
  height: 24px;
  z-index: 99999;
}



.settings-icon {
  transition: transform 0.3s ease;
  fill:#e6ecf1;
}

.settings-container.active .settings-icon {
  transform: translate(50%, 50%) rotate(180deg);
}

.theme-btn:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}


.the-footer-service{
  background-color: #161616;
  text-align: center;
  color:rgb(255, 255, 255);
  padding: 1rem 0;
}

  .the-footer-service > p{
    margin-bottom: 0 !important;
  }


  .the-footer-service a{
    color:#16c0f0;
    text-decoration: none;
  }

  .error {
    color: red;
    }
    
    .form-group {
    margin-bottom: 20px;
    }
    
    .input-error-container {
    position: relative;
    }
    
    .error-message {
    position: absolute;
    top: 64%;
    left: 0;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
    }
  
    .error-message-2 {
    position: absolute;
    top: 66%;
    left: 0;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
    }
  
  .mb-new{
    margin-bottom: 0.3rem;
    font-size: medium;
    font-weight: 500;
  }

  #BookingMsg-error{
    top: 95%;
  }


  .date-container {
    position: relative;
    width: 100%;
    padding: 2px 5px;
    border: 1px solid rgba(87, 87, 87, 0.54);
    border-radius: 6px;
  }

  .datepicker-datewise {
    padding: 9px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    width: 200px;
    cursor: pointer;
    background: transparent;
    text-shadow: 0 0 0 #c1c1c1;
  }

  .datepicker-datewise:focus {
    outline: none;        /* Removes default outline */
    border: none;         /* Removes border if applied on focus */
    box-shadow: none;
  }


  .calendar-icon {
      position: absolute;
      right: 8px;
      top: 50%;
      transform: translateY(-50%);
      color: #666;
      cursor: pointer;
      z-index: 1;
  }

  
  .loder-bg-clr {
    /* margin-top: 2rem; */
    z-index: 1070;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    background: #f7f7ecbd;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
  }


  .time-slot-flex{
    display: grid;
    width: 100%;
    /* grid-template-columns: repeat(5, 1fr); */
    justify-items: center;
    gap: 10px;
    max-height: 88%;
    overflow-y: auto;
    justify-content: center;
  }
  
  
  /* Styles for the scrollbar */
  .time-slot-flex ::-webkit-scrollbar {
    width: 3px; /* Width of the scrollbar */
  }
  
  .time-slot-flex ::-webkit-scrollbar-thumb {
    background: rgb(104 104 104 / 50%) ; /* Color of the scrollbar thumb */
    border-radius: 4px; /* Round the edges of the scrollbar thumb */
  }
  
  .time-slot-flex ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.2); /* Background of the scrollbar track */
    border-radius: 4px; /* Round the edges of the scrollbar track */
  }
  
  /* For Firefox */
  .time-slot-flex  {
    scrollbar-width: thin; /* Use a thin scrollbar */
    scrollbar-color: rgb(104 104 104 / 50%) rgba(255, 255, 255, 0.2); /* Thumb color and track color */
  }  

  .service-booking__form form .the-input:-webkit-autofill,
  .service-booking__form form .the-input:-webkit-autofill:hover,
  .service-booking__form form .the-input:-webkit-autofill:focus,
  .service-booking__form form .the-input:-webkit-autofill:active,
  .service-booking__form form textarea:-webkit-autofill,
  .service-booking__form form textarea:-webkit-autofill:hover,
  .service-booking__form form textarea:-webkit-autofill:focus,
  .service-booking__form form textarea:-webkit-autofill:active,
  .service-booking__form form .the-input:focus,
  .service-booking__form form textarea:focus {
      -webkit-box-shadow: 0 0 0 30px transparent inset !important;
      transition: background-color 5000s ease-in-out 0s;
      background-color: transparent !important;
  }
  
  .service-booking__form form .the-input:autofill,.service-booking__form form textarea:autofill {
    background-color: transparent !important;
  }

  #BookingDate-error{
    top: 94%;
  }

  #BookingDropLocation-error, #BookingSlot-error{
    top: 94%;
  }

  #BookingRequestFor-error{
    top: 90%;
  }

  .timeslot-unavailable{
    border: 2px solid #ff4242d4 !important;
    background-color: #ff4242d4 !important;
    cursor: not-allowed !important;
  }

  /* Style for holiday dates */
  /* .flatpickr-day.holiday, .flatpickr-day.holiday:hover {
    color: #ff0000; 
    cursor: not-allowed; 
    font-weight: 600;
    pointer-events: none;
    user-select: none !important;
  } */

  .flatpickr-day.holiday , .flatpickr-day.holiday:hover{
    color: #ff0000 !important;
    font-weight: bold !important;
    font-weight: 500;
}

.flatpickr-day.holiday.flatpickr-disabled {
    color: #ff0000 !important;
    cursor: not-allowed !important;
    opacity: 0.9 !important;
}

  /* Apply scrollbar style for webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 6px;             /* Thin scrollbar width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;    /* Light gray background */
}

::-webkit-scrollbar-thumb {
  background-color: #a9a9a9; /* Gray thumb */
  border-radius: 10px;      /* Rounded ends for smooth look */
  transition: background-color 0.3s; /* Smooth transition */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #808080; /* Darker gray on hover */
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;     /* Thin scrollbar */
  scrollbar-color: #a9a9a9 #f1f1f1; /* Gray thumb, light gray track */
}

.timeslot-flex-ht{
  max-height: 140px !important;
}

@media(max-width:991px){
  #BookingTimeSlot{
    margin-top: 22px;
  }
}


:root {
  --primary-color: #002c5f;
  --secondary-color: #4d90fe;
}

.chat-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary-color);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.chat-btn:hover {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.chat-bubble {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: white;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

.chat-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 999;
}

.chat-header {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  font-weight: bold;
}

.chat-body {
  flex-grow: 1;
  padding: 20px;
  overflow-y: auto;
}

.chat-input {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.message {
  margin-bottom: 15px;
  max-width: 80%;
}

.bot-message {
  background: #f0f2f5;
  padding: 10px 15px;
  border-radius: 15px;
  margin-right: auto;
}

.user-message {
  background: var(--secondary-color);
  color: white;
  padding: 10px 15px;
  border-radius: 15px;
  margin-left: auto;
}

.typing-indicator {
  display: none;
  padding: 10px 15px;
  background: #f0f2f5;
  border-radius: 15px;
  margin-bottom: 15px;
}

.typing-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  background: #90949c;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.vehicle-options {
  display: none;
  margin-top: 10px;
}

.vehicle-option {
  display: block;
  width: 100%;
  padding: 8px;
  margin-bottom: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-option:hover {
  background: #f0f2f5;
}

.flatpickr-day{
  color: #009d4d;
  font-weight: 500;
}

.flatpickr-day.holiday.flatpickr-disabled {
  position: relative;
  color: #ff0000 !important;
  cursor: not-allowed !important;
  opacity: 0.9 !important;
}

.flatpickr-day.holiday.flatpickr-disabled::after {
  content: "Holiday";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0px 5px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
  max-width: 150px;
  max-height: 40px;
  text-align: center;
  word-wrap: break-word;
}

.flatpickr-calendar {
  overflow: visible !important; 
}

.flatpickr-day.holiday.flatpickr-disabled:hover::after {
  opacity: 1;
  visibility: visible;
}

/* first row */
.flatpickr-day.holiday.flatpickr-disabled:nth-child(-n+7)::after{
  top: auto;
}

/* sunday */
.flatpickr-day.holiday.flatpickr-disabled:nth-child(7n+1)::after {
  left: 150%;
}

.fetch-loader {
  border: 3px solid #f3f3f3; /* Light grey */
  border-top: 3px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spinload 1s linear infinite;
}

@keyframes spinload {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.disp-flex-st {
  display: flex;
  align-items: baseline;
  flex-direction: row;
  position: relative;
}

label:has(input[type="checkbox"]:checked) {
  border: 2px solid #2c8d2b;
  border-radius: 5px;
  text-shadow: 0 0 #000000;
  box-shadow: 4px 2px 4px 0px rgb(62 56 56 / 51%);
  background: #006010;
  color: #ffffff;
}

.grid-span-cent{
  grid-column: 1 / -1;
}

.close-bbtnn {
    margin-top: -4px;
    width: 100%;
    padding: 0 10px;
    display: flex;
    justify-content: center; /* Center content by default */
    align-items: center;
    position: relative; /* Needed for absolute positioning */
    flex-direction: column;
}

.close-bbtnn p {
    margin: 0 auto; /* Ensure it's centered */
    text-align: center;
    flex-grow: 1; /* Allows it to take remaining space */
    font-style: italic;
}

.close-bbtnn svg {
  position: absolute;
    right: -4px;
    top: 9px;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: black;
    border-radius: 50%;
    padding: 1px;
}

.custom-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #399bb9;
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


#ReBookingPhone{
  margin-bottom: 8px!important;
}
.error-message-otperror{
    position: absolute;
    top: 42% !important;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
}
#otpInput{
  margin-bottom: 8px!important;
}
.error-message-re{
    position: absolute;
    top: 90%;
    left: 0;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
}


@media screen and (max-width:992px){
  #ReBookingPhone{
  margin-bottom: 12px !important;
}

  #otpInput{
  margin-bottom: 12px!important;
}
.error-message-re{
    position: absolute;
    top:77% !important;
    left: 0;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
}
.error-message-otperror{
    position: absolute;
    top: 43% !important;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
}

}

@media screen and (max-width:450px){
  #ReBookingPhone{
  margin-bottom: 10px!important;
}

  #otpInput{
  margin-bottom: 10px!important;
}
.error-message-re{
    position: absolute;
    top:74% !important;
    left: 0;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
}
.error-message-otperror{
    position: absolute;
    top:43% !important;
    font-size: 12px;
    color: red;
    padding: 2px 5px;
    z-index: 1;
}

}



/* cancelbooking css updated */
#CanBookingPhone{
  margin-bottom: 8px!important;
}

#CanOtpInput{
  margin-bottom: 8px!important;
}

@media screen and (max-width:992px){
  #CanBookingPhone{
    margin-bottom: 12px !important;
  }
  #CanOtpInput{
    margin-bottom: 12px!important;
  }
}

@media screen and (max-width:450px){
  #CanBookingPhone{
    margin-bottom: 10px!important;
  }
  #CanOtpInput{
    margin-bottom: 10px!important;
  }
}


.women-alloted{
  border: 2px solid #ff6df4 !important;
  background-color: #fd9cf6 !important;
  /* e35dd9  #ff71f4 */
}

/* ✅ Darker color when checked */
.women-alloted:has(input[type="checkbox"]:checked),.lock-alloted:has(input[type="checkbox"]:checked)  {
  border: 2px solid #2c8d2b !important;
  border-radius: 5px;
  text-shadow: 0 0 #000000;
  box-shadow: 4px 2px 4px 0px rgb(62 56 56 / 51%);
  background: #006010 !important;
  color: #ffffff;
}

.legend-item .legend-color {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  /* border: 1px solid #ccc; */
}

@media screen and (max-width:365px){
  .close-bbtnn p{
    font-size: small;
  }
}

.mx-0-15 {
    margin-right: 0.15rem !important;
    margin-left: 0.15rem !important;
}

.lock-alloted{
  border: 2px solid #af9902 !important;
  background-color: #cdb304 !important;
}