
/* WP LeadMagnet Blue Theme Overrides */ 
.wplm-lead-form .flatpickr-calendar.inline {
	top: 0;
}
.wplm-form-calendar {
	border-left: 2px dashed rgb(211, 213, 216);
	padding-left: 30px;
	display: flex;  
}
.wplm-lead-form .time-slots {
    display: none;
}
.wplm-lead-form .time-slots.active{
    display: flex;
}
#time-slots {
	padding: 10px 20px;
	width: 100%;
	background: #fff;
	height: 300px;
	overflow-x: scroll;
	border-radius: 5px;
	max-height: 322px;
	flex-wrap: wrap;
	gap: 5px;
}
.time-slot {
	padding: 10px 18px;
	background: #ececec;
	margin-bottom: 5px;
	display: block;
	width: fit-content;
    transition: all ease-out 0.3s;
    cursor: pointer;
}
.time-slot:hover,
.time-slot.selected {
	background: #569ff7;
    color: #fff;
}
#booking-calendar {
	position: relative;
	width: 100%;
}

#booking-calendar .wplm-error-text{
	position: absolute;
	bottom: -35px;
    width: 100%;
}
#booking-calendar .time-slots-group .wplm-error-text {
	position: absolute;
	right: 0;
	text-align: right;
}