.schedule-widget {
    border-radius: 4px;
    min-height: 100px;
}.booking-schedule.schedule-widget {
    overflow-x: auto;
	margin-bottom: 10px;
}
.booking-schedule.schedule-widget > div {
    width: 100%
}
.schedule-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 3px 0 0;
}
.schedule-header {
    /* border-bottom: 1px solid #f0f0f0; */
    border-radius: 4px 4px 0 0;
    padding: 10px 20px;
	margin-top: 15px;
	
}

.schedule-cont {
    padding: 20px;
}
.time-slot ul {
    list-style: none;
    margin-right: -5px;
    margin-left: -5px;
	margin-bottom: 0;
    padding: 0;
}
.time-slot li {
    float: left;
    padding-left: 5px;
    padding-right: 5px;

}
.time-slot li .timing {
    background-color: #e9e9e9;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    color: #757575;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 5px;
    text-align: center;
	position: relative;
}
.time-slot li .timing:hover {
    background-color: #fff;
}
.time-slot li .timing:last-child {
	margin-bottom: 0;
}

.time-slot li .timing.selected::before {
    color: #fff;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
	font-size: 12px;
    font-weight: 900;
    position: absolute;
    right: 6px;
    top: 6px;
}
.time-slot li .timing.selected::before {
    display: none;
}
.time-slot li .timing span {
    display: block;
}
.booking-schedule .time-slot ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* Adjust the minmax value as needed */
    gap: 10px; /* Adjust the gap between slots as needed */
}
/* .booking-schedule .time-slot li {
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
    width: 150px;
} */
.booking-schedule .time-slot li .timing span {
    display: inline-block;
}
.time-slot li .timing {
    background-color: #e9e9e9;
    border: 1px solid #e9e9e9;
    border-radius: 3px;
    color: #757575;
    display: block;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 5px;
    text-align: center;
	position: relative;
}
.time-slot li .timing:hover {
    background-color: #fff;
}
.time-slot li .timing:last-child {
	margin-bottom: 0;
}
.time-slot li .timing.selected {
	background-color: #26AF6D;
	border: 1px solid #26AF6D;
	color: #fff;
}
.time-slot li .timing.occupied {
	background-color: #FF4877;
	border: 1px solid #FF4877;
	color: #fff;
}
.time-slot li .timing.selected::before {
    color: #fff;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
	font-size: 12px;
    font-weight: 900;
    position: absolute;
    right: 6px;
    top: 6px;
}
.time-slot li .timing.selected::before {
    display: none;
}
.time-slot li .timing span {
    display: block;
}
.booking-schedule .time-slot li .timing span {
    display: inline-block;
}
.day-swiper {
      width: 98%;
      height: 100%;
	  padding: 20px 60px;	  
    }
	

    .day-swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
	  border:#e9e9e9 solid 2px;
	  border-radius: 5px;
      cursor: pointer;
    }
    .day-date-text
    {
        color:#1A76D1;
        font-size: 1.4rem;
    }
    .day-d-m-y-text
    {
        color:#757575;
    }
    .day-swiper-slide.selected .day-date-text
    {
        color: #fff;
    }
    .day-swiper-slide.selected .day-d-m-y-text
    {
        color:#e9e9e9
    }
    .day-swiper-slide.selected
    {
        border:#42c0fb solid 2px;
        background-color: #42c0fb;
        color: #fff !important;
    }
	.day-content-div
	{
		padding: 10px;
	}
    
    .appointment-image-div
    {
        width: 100% !important;
        height: 80%;
    }
    /* @keyframes bounce {
        0% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
        100% { transform: translateY(0); }
      }
      
      .no-slots {
        animation: bounce 1s infinite;
      } */
    /* .appointment-image-div img
    {
        width: 100% !important;
        height: 100% !important;
    } */