.select-date { margin-bottom:15px;}
.accordion-header {
	background: #e3ecf4;
	padding: 15px 20px;
	font-weight: 600;
	font-size: 16px;
	color: #00253d;
	cursor: pointer;
	transition: background-color 0.3s;
	border-left: 4px solid #00253d;
	position: relative;
}
.accordion-header::after {
	content: '+';
	position: absolute;
	right: 20px;
	font-size: 25px;
	top: 8px;
}
.accordion-header {
	background: #e3ecf4;
	padding: 15px 20px;
	font-weight: 600;
	font-size: 16px;
	color: #00253d;
	cursor: pointer;
	border-radius: 5px;
	transition: background-color 0.3s;
	border-left: 4px solid #00253d;
	position: relative;	
	transition: transform 0.3s;
}
.accordion-header:hover {
	background-color: #ffffff;
}
#slot_section.active
#slot_section_time.active{
	display: block;
}
.accordion-section.active .accordion-header::after {
	content: '-';
}
#appointment_slots_wrapper {
	column-count: 3;
	column-gap: 20px;
}
.slot-option.available-slot {
	width: 100%;
}
.slot-option.available-slot span {
	margin: 0 auto;
}
.available-slot:not(.disabled):not(.booked) {
	background-color: #fafafa;
	border: 2px solid #ddd;
}

.slot-option {
	display: inline-flex;
	align-items: center;
	position: relative;
	margin: 8px 0;
	padding: 12px 16px;
	border: 2px solid #ddd;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #fafafa;
}
.slot-option:hover {
    border-color: #999;
}

.slot-option.selected {
    border-color: #007cba;
    background: #f0f8ff;
}
.available-day-message {color:rgb(119, 178, 85);}

.slot-time {
	font-size: 14px;
	color: #333;
}
.tick-icon {
	position: absolute;
	top: -8px;
	right: -8px;
	background: #007cba;
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
.slot-option .tick-icon {
    display: none;
    background-color: #77b255;
}
.slot-option.selected .tick-icon {
	display: flex;
	color: #fff;
}
.woocommerce div.product form.cart .button {
	display: flex;
	align-content: center;
	align-items: center;
	padding: 12px 24px;
	margin-top: 15px;
}

.slot-option {
    position: relative;
}
.slot-option.past-slot {
    opacity: 0.5;
    pointer-events: none;
    cursor: not-allowed;
}
.slot-option.disabled-slot {
	opacity: 0.4;
	pointer-events: none;
	width: 100%;
}
.locked-slot {
    pointer-events: none;
    opacity: 0.8;
    border: 2px solid #2ecc71;
    background: #f4fff7;
}
#date-status-message {margin-top: 10px;}
#date-status-message a.error-link {text-decoration:underline;color:#df3b50;}
.error-link:hover {opacity:.7;}
/* Tooltip */
.slot-option::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.slot-option::before {
    content: '';
    position: absolute;
    bottom: 92%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #222;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.slot-option.show-tooltip::after,
.slot-option.show-tooltip::before {
    opacity: 1;
}
/*Woo Appointments Modal */
#appointment-modal .btn-close {
	border-color: #87add1;
}
#appointment-modal .btn-close:hover {
	background-color: #87add1;
}
#appointment-modal {
	background-color: rgba(55,55,55, .3);
	display: flex;
	padding-left: 0px;
	align-content: center;
	align-items: center;
}
.modal.show .modal-dialog {
	width: 350px;
}
.flex-fill.time-options,
#pick-date.flex-fill {
	min-width: 100% !important;
}
#submit-appointment {width: 100%;}

#app-submit-btn {
	background-color: transparent;
	border: 1px solid #87add1;
	color: #87add1;
}
#app-submit-btn:hover {
	background-color: #87add1;
	border: 1px solid #87add1;
	color: #fff;
}