.bwp-appt-wrap {
	margin: 1.5em 0;
	padding: 1.25em 1.5em;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	background: #fafafa;
}
.bwp-appt-wrap h3 {
	margin-top: 0;
}
.bwp-appt-slots {
	display: block;
	width: 100%;
}
.bwp-appt-slot-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.bwp-appt-slot {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	padding: 10px 14px;
	border: 1px solid #c9c9c9;
	border-radius: 4px;
	background: #fff;
	color: #1a1c1c;
	cursor: pointer;
	line-height: 1.25;
	transition: border-color .15s ease, background .15s ease;
}
.bwp-appt-slot:hover {
	border-color: #000;
}
.bwp-appt-slot.is-selected {
	background: #000;
	color: #fff;
	border-color: #000;
}
.bwp-appt-slot .bwp-appt-time {
	font-weight: 700;
	font-size: 15px;
}
.bwp-appt-slot .bwp-appt-note {
	font-size: 11px;
	opacity: .75;
	margin-top: 2px;
}
.bwp-appt-slot.is-booked {
	background: #f1f1f1;
	color: #9a9a9a;
	border-style: dashed;
	cursor: not-allowed;
}
.bwp-appt-slot .bwp-appt-tag {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .05em;
	margin-top: 2px;
}
.bwp-appt-msg {
	display: inline-block;
	padding: 8px 0;
	color: #666;
	font-style: italic;
}
.bwp-appt-cal-buttons .button,
.bwp-appt-thankyou .button {
	margin-right: 8px;
}
.bwp-appt-table th {
	text-align: left;
	width: 30%;
}
