.cfvb-booking,
.cfvb-booking *,
.cfvb-booking *::before,
.cfvb-booking *::after {
	box-sizing: border-box;
}

.cfvb-booking {
	--cfvb-color-theme: #d93927;
	--cfvb-color-available: #fdf1ef;
	--cfvb-color-disabled: #cccccc;
	--cfvb-color-theme-dark: #b73021;
	--cfvb-color-theme-light: #f8d7d2;
	--cfvb-color-theme-lighter: #fdf1ef;
	--cfvb-color-ring: rgba(217, 57, 39, 0.14);
	width: 100%;
}

.cfvb-form {
	font-size: 16px;
	line-height: 1.45;
	width: 100%;
}

.cfvb-form__step[hidden] {
	display: none !important;
}

.cfvb-form__step {
	animation: cfvb-step-slide 0.22s ease both;
	display: grid;
	gap: 24px;
	padding-bottom: 24px;
}

.cfvb-form__section {
	margin: 0;
}

.cfvb-form__section + .cfvb-form__section {
	margin-top: 22px;
}

.cfvb-form__section--divider {
	border-top: 1px solid #e6e6e6;
	padding-top: 22px;
}

.cfvb-form__section-title {
	color: #111;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 14px;
}

.cfvb-form__section-title--time {
	margin-top: 4px;
}

.cfvb-form__time-wrap {
	display: grid;
	gap: 8px;
}

.cfvb-form__section-description {
	color: #555;
	font-size: 14px;
	line-height: 1.45;
	margin: -6px 0 16px;
}

.cfvb-form__row {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 16px;
	width: 100%;
}

.cfvb-form__row:last-child,
.cfvb-form__section .cfvb-form__row:last-child {
	margin-bottom: 0;
}

.cfvb-form__row--half {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.cfvb-form__field {
	display: flex;
	flex-direction: column;
	min-width: 0;
	width: 100%;
}

.cfvb-form__field--calendar,
.cfvb-form__field--time {
	max-width: 700px;
}

.cfvb-form__label {
	color: #111;
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 6px;
}

.cfvb-form__label--hidden {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.cfvb-form__required,
.cfvb-form__optional {
	color: #666;
	font-size: 12px;
	font-weight: 600;
}

.cfvb-form__required {
	color: var(--cfvb-color-theme);
}

.cfvb-form__input,
.cfvb-form__textarea {
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: none;
	color: #111;
	display: block;
	font-family: inherit;
	font-size: 16px;
	line-height: 1.4;
	margin: 0;
	min-height: 46px;
	padding: 6px 12px;
	width: 100%;
}

.cfvb-form__input::placeholder,
.cfvb-form__textarea::placeholder {
	color: #777;
	opacity: 1;
}

.cfvb-form__textarea {
	min-height: 76px;
	resize: vertical;
}

.cfvb-form__checkbox-label {
	align-items: center;
	color: #111;
	cursor: pointer;
	display: inline-flex;
	font-size: 15px;
	font-weight: 600;
	gap: 8px;
	line-height: 1.3;
	margin-bottom: 12px;
}

.cfvb-form__checkbox {
	accent-color: var(--cfvb-color-theme);
	height: 15px;
	margin: 0;
	width: 15px;
}

.cfvb-form__notes-panel {
	margin-bottom: 12px;;
}

.cfvb-form__input:focus,
.cfvb-form__textarea:focus {
	border-color: var(--cfvb-color-theme);
	box-shadow: 0 0 0 3px var(--cfvb-color-ring);
	outline: none;
}

.cfvb-form__honeypot {
	height: 0;
	left: -9999px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

@keyframes cfvb-step-slide {
	from {
		opacity: 0;
		transform: translateX(16px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cfvb-submit-spin {
	to {
		transform: rotate(360deg);
	}
}

.cfvb-form__error {
	color: #b42318;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 8px;
}

.cfvb-form__step-error {
	color: #b42318;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
	width: 100%;
}

.cfvb-form__error p,
.cfvb-message p {
	margin: 0;
}

.cfvb-form__summary {
	background: #fafafa;
	border: 1px solid #e6e6e6;
	border-radius: 8px;
	display: grid;
	gap: 4px;
	padding: 12px 14px;
}

.cfvb-form__summary strong {
	color: #111;
	font-size: 14px;
	font-weight: 700;
}

.cfvb-form__summary span {
	color: #444;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}

.cfvb-form__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 2px;
}

.cfvb-form__actions--split {
	justify-content: space-between;
}

.cfvb-form__error p + p,
.cfvb-message p + p {
	margin-top: 6px;
}

.cfvb-form__submit,
.cfvb-form__back,
.cfvb-confirmation__link {
	-webkit-appearance: none;
	appearance: none;
	align-items: center;
	background: var(--cfvb-color-theme);
	border: 1px solid var(--cfvb-color-theme);
	border-radius: 8px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 1.2;
	margin: 0;
	min-height: 48px;
	padding: 12px 18px;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	width: auto;
}

.cfvb-form__back {
	background: #fff;
	border-color: #ddd;
	color: #111;
}

.cfvb-confirmation__link {
	margin: 0;
}

.cfvb-confirmation__actions {
	margin-top: 4px;
}

.cfvb-form__submit:hover,
.cfvb-form__submit:focus,
.cfvb-form__back:hover,
.cfvb-form__back:focus,
.cfvb-confirmation__link:hover,
.cfvb-confirmation__link:focus {
	background: var(--cfvb-color-theme-dark);
	border-color: var(--cfvb-color-theme-dark);
	color: #fff;
	outline: none;
	text-decoration: none;
}

.cfvb-form__back:hover,
.cfvb-form__back:focus {
	background: #f6f6f6;
	border-color: #bbb;
	color: #111;
}

.cfvb-form__submit:focus-visible,
.cfvb-form__back:focus-visible,
.cfvb-confirmation__link:focus-visible {
	box-shadow: 0 0 0 3px var(--cfvb-color-ring);
}

.cfvb-form__submit:disabled,
.cfvb-form__submit--loading {
	background: var(--cfvb-color-theme-dark);
	border-color: var(--cfvb-color-theme-dark);
	cursor: wait;
	opacity: 0.9;
}

.cfvb-form__submit--loading::before {
	animation: cfvb-submit-spin 0.75s linear infinite;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	content: "";
	flex: 0 0 auto;
	height: 16px;
	width: 16px;
}

.cfvb-message {
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	margin: 0 0 18px;
	padding: 14px 16px;
}

.cfvb-message--error {
	background: #fff6f5;
	border-color: #f3b7b0;
	color: #7a271a;
}

.cfvb-message--info {
	background: #f7f7f7;
	color: #333;
}

.cfvb-confirmation__title {
	color: #111;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
}

.cfvb-confirmation__intro {
	color: #333;
	font-size: 16px;
	line-height: 1.5;
	margin: 8px 0 0;
	max-width: 680px;
}

.cfvb-confirmation__details {
	display: grid;
	column-gap: 44px;
	row-gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 22px 0 20px;
	max-width: 760px;
}

.cfvb-confirmation__details div {
	min-width: 0;
}

.cfvb-confirmation__details dt {
	color: #666;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 6px;
	text-transform: uppercase;
}

.cfvb-confirmation__details dd {
	color: #111;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.45;
	margin: 0;
	overflow-wrap: anywhere;
}

.cfvb-message--success {
	background: #f0fdf4;
	border-color: #bbf7d0;
	color: #166534;
}

.cfvb-manage {
	display: flex;
	justify-content: center;
	padding: 56px 20px 32px;
	width: 100%;
}

.cfvb-manage__card {
	background: #fff;
	border: 1px solid #e1e1e1;
	border-radius: 12px;
	box-shadow: 0 14px 34px rgba(17, 17, 17, 0.08);
	max-width: 720px;
	padding: 28px;
	width: 100%;
}

.cfvb-manage .cfvb-message {
	font-size: 14px;
	line-height: 1.45;
	margin: 0 0 18px;
}

.cfvb-manage .cfvb-message + .cfvb-message,
.cfvb-manage .cfvb-message + .cfvb-manage__summary {
	margin-top: 0;
}

.cfvb-manage__title + .cfvb-message {
	margin-top: -8px;
	margin-bottom: 18px;
}

.cfvb-manage__summary {
	margin: 0;
}

.cfvb-manage__eyebrow {
	color: var(--cfvb-color-theme);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0 0 8px;
	text-transform: uppercase;
}

.cfvb-manage__title {
	color: #111;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 22px;
}

.cfvb-manage__details {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.cfvb-manage__detail {
	background: #fafafa;
	border: 1px solid #ededed;
	border-radius: 8px;
	display: grid;
	gap: 5px;
	min-width: 0;
	padding: 13px 14px;
}

.cfvb-manage__detail dt {
	color: #666;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	margin: 0;
	text-transform: uppercase;
}

.cfvb-manage__detail dd {
	color: #111;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
}

.cfvb-manage__actions {
	border-top: 1px solid #e6e6e6;
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 24px;
	padding-top: 22px;
}

.cfvb-manage__actions-title {
	color: #111;
	font-size: 16px;
	font-weight: 700;
	grid-column: 1 / -1;
	line-height: 1.3;
	margin: 0;
}

.cfvb-manage__cancel-form {
	margin: 0;
}

.cfvb-manage__button {
	-webkit-appearance: none;
	appearance: none;
	align-items: center;
	background: var(--cfvb-color-theme);
	border: 1px solid var(--cfvb-color-theme);
	border-radius: 8px;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	margin: 0;
	min-height: 48px;
	padding: 13px 18px;
	text-align: center;
	text-decoration: none;
	transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
	width: 100%;
}

.cfvb-manage__button:hover,
.cfvb-manage__button:focus {
	background: var(--cfvb-color-theme-dark);
	border-color: var(--cfvb-color-theme-dark);
	color: #fff;
	outline: none;
	text-decoration: none;
}

.cfvb-manage__button:focus-visible {
	box-shadow: 0 0 0 3px var(--cfvb-color-ring);
}

.cfvb-manage__button--danger {
	background: #fff;
	border-color: #f3b7b0;
	color: #b42318;
}

.cfvb-manage__button--danger:hover,
.cfvb-manage__button--danger:focus {
	background: #fff6f5;
	border-color: #d92d20;
	color: #912018;
}

.cfvb-calendar {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin: 0;
	max-width: 700px;
	padding: 0;
	width: 100%;
}

.cfvb-calendar__header {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: space-between;
	margin-bottom: 14px;
}

.cfvb-calendar__month {
	background: transparent;
	color: #111;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.cfvb-calendar__month-year {
	color: #666;
	font-weight: 400;
}

.cfvb-calendar__nav {
	display: flex;
	gap: 6px;
}

.cfvb-calendar__nav-button {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	background: var(--cfvb-color-theme-lighter);
	border: 1px solid var(--cfvb-color-theme-light);
	border-radius: 50%;
	box-shadow: none;
	color: var(--cfvb-color-theme);
	cursor: pointer;
	display: inline-flex;
	font-family: inherit;
	font-size: 22px;
	font-weight: 700;
	height: 34px;
	justify-content: center;
	line-height: 1;
	margin: 0;
	padding: 0;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
	width: 34px;
}

.cfvb-calendar__nav-button:hover:not(:disabled),
.cfvb-calendar__nav-button:focus-visible:not(:disabled) {
	background: var(--cfvb-color-theme-light);
	border-color: var(--cfvb-color-theme);
	color: var(--cfvb-color-theme-dark);
	outline: none;
}

.cfvb-calendar__nav-button:disabled {
	background: #fbfbfb;
	border-color: #e7e7e7;
	color: #b5b5b5;
	cursor: not-allowed;
}

.cfvb-calendar__weekdays,
.cfvb-calendar__grid {
	display: grid;
	gap: 7px;
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.cfvb-calendar__weekdays {
	margin-bottom: 6px;
}

.cfvb-calendar__weekday {
	background: transparent;
	color: #aaa;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-transform: uppercase;
}

.cfvb-calendar__day {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	aspect-ratio: 1 / 1;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 8px;
	box-shadow: none;
	color: #222;
	cursor: pointer;
	display: flex;
	font-family: inherit;
	font-size: 14px;
	font-weight: 500;
	justify-content: center;
	line-height: 1;
	margin: 0 auto;
	max-width: 48px;
	padding: 0;
	position: relative;
	transition: background 0.12s ease, border-color 0.12s ease, color 0.12s ease, box-shadow 0.12s ease;
	width: 100%;
}

.cfvb-calendar__day--empty {
	pointer-events: none;
}

.cfvb-calendar__day--disabled {
	color: var(--cfvb-color-disabled);
	cursor: not-allowed;
	opacity: 0.75;
}

.cfvb-calendar__day--available {
	background: var(--cfvb-color-available);
	border-color: var(--cfvb-color-theme-light);
	color: #222;
}

.cfvb-calendar__day--available:hover,
.cfvb-calendar__day--available:focus-visible {
	background: var(--cfvb-color-theme-light);
	border-color: var(--cfvb-color-theme);
	color: var(--cfvb-color-theme-dark);
	outline: none;
}

.cfvb-calendar__day--today {
	background: #fff;
	border-color: var(--cfvb-color-theme);
	box-shadow: none;
	color: var(--cfvb-color-theme);
	font-weight: 700;
}

.cfvb-calendar__day--selected {
	background: var(--cfvb-color-theme);
	border-color: var(--cfvb-color-theme);
	box-shadow: none;
	color: #fff;
	font-weight: 700;
}

.cfvb-calendar__day--selected:hover,
.cfvb-calendar__day--selected:focus-visible {
	background: var(--cfvb-color-theme-dark);
	color: #fff;
}

.cfvb-calendar__placeholder {
	color: #777;
	font-size: 13px;
	grid-column: 1 / -1;
	padding: 10px 0;
}

.cfvb-time {
	background: transparent;
	border: 0;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	margin: 0;
	max-width: 700px;
	padding: 0;
	width: 100%;
}

.cfvb-time__tz {
	color: #666;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	margin: 8px 0 0;
	order: 2;
}

.cfvb-time__control {
	order: 1;
	position: relative;
}

.cfvb-time__trigger {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
	color: #111;
	cursor: pointer;
	display: flex;
	font-family: inherit;
	font-size: 14px !important;
	font-weight: 600;
	justify-content: flex-start;
	line-height: 1.2;
	margin: 0;
	min-height: 48px;
	padding: 12px 44px 12px 14px;
	position: relative;
	text-align: left;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
	width: 100%;
}

.cfvb-time__trigger:hover:not(:disabled),
.cfvb-time__trigger:focus-visible:not(:disabled) {
	border-color: var(--cfvb-color-theme);
	box-shadow: 0 0 0 3px var(--cfvb-color-ring);
	outline: none;
}

.cfvb-time__trigger--open {
	border-color: var(--cfvb-color-theme);
	box-shadow: 0 0 0 3px var(--cfvb-color-ring);
}

.cfvb-time__trigger--selected {
	background: #fff;
	border-color: var(--cfvb-color-theme-light);
	color: var(--cfvb-color-theme-dark);
}

.cfvb-time__trigger:disabled {
	background: #fafafa;
	border-color: #e6e6e6;
	color: #9b9b9b;
	cursor: not-allowed;
}

.cfvb-time__trigger-text {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.cfvb-time__chevron {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	height: 10px;
	opacity: 0.85;
	pointer-events: none;
	position: absolute;
	right: 18px;
	top: 50%;
	transform: translateY(-60%) rotate(45deg);
	transition: transform 0.18s ease;
	width: 10px;
}

.cfvb-time__trigger--open .cfvb-time__chevron {
	transform: translateY(-35%) rotate(-135deg);
}

.cfvb-time__dropdown {
	background: #fff;
	border: 1px solid var(--cfvb-color-theme-light);
	border-radius: 8px;
	box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
	margin-top: 0;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: static;
	transform: translateY(-4px);
	transition: max-height 0.24s ease, margin-top 0.24s ease, opacity 0.18s ease, transform 0.24s ease, visibility 0.24s ease;
	visibility: hidden;
}

.cfvb-time__dropdown--open {
	margin-top: 8px;
	max-height: 280px;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
	visibility: visible;
}

.cfvb-time__list {
	max-height: 260px;
	overflow-y: auto;
	padding: 8px;
	scrollbar-color: #c7c7c7 #f6f6f6;
	scrollbar-width: thin;
}

.cfvb-time__list--refreshing {
	animation: cfvb-time-refresh 0.32s ease;
}

@keyframes cfvb-time-refresh {
	from {
		opacity: 0.65;
		transform: translateY(4px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cfvb-time__list::-webkit-scrollbar {
	width: 10px;
}

.cfvb-time__list::-webkit-scrollbar-track {
	background: #f6f6f6;
}

.cfvb-time__list::-webkit-scrollbar-thumb {
	background: #c7c7c7;
	border: 2px solid #f6f6f6;
	border-radius: 999px;
}

.cfvb-time__option {
	-webkit-appearance: none;
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	border-radius: 7px;
	box-shadow: none;
	color: #222;
	cursor: pointer;
	display: flex;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	justify-content: flex-start;
	line-height: 1.2;
	margin: 0;
	padding: 12px 40px 12px 12px;
	position: relative;
	text-align: left;
	transition: background 0.15s ease, color 0.15s ease;
	width: 100%;
}

.cfvb-time__option:hover,
.cfvb-time__option:focus-visible {
	background: var(--cfvb-color-theme-lighter);
	color: var(--cfvb-color-theme-dark);
	outline: none;
}

.cfvb-time__option--selected,
.cfvb-time__option--selected:hover,
.cfvb-time__option--selected:focus-visible {
	background: var(--cfvb-color-theme-lighter);
	color: var(--cfvb-color-theme-dark);
}

.cfvb-time__option--selected::after {
	border-bottom: 2px solid var(--cfvb-color-theme);
	border-right: 2px solid var(--cfvb-color-theme);
	content: "";
	height: 12px;
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-60%) rotate(45deg);
	width: 6px;
}

.cfvb-time__option--disabled,
.cfvb-time__option--disabled:hover,
.cfvb-time__option--disabled:focus-visible {
	background: transparent;
	color: #b4b4b4;
	cursor: not-allowed;
}

.cfvb-time__option--empty,
.cfvb-time__option--empty:hover,
.cfvb-time__option--empty:focus-visible {
	background: transparent;
	color: #777;
	cursor: default;
}

@media (max-width: 600px) {
	.cfvb-form__row--half {
		grid-template-columns: 1fr;
	}

	.cfvb-form__section-title {
		font-size: 20px;
		margin-bottom: 18px;
	}

	.cfvb-form__actions,
	.cfvb-form__actions--split {
		align-items: stretch;
		flex-direction: column;
	}

	.cfvb-form__submit,
	.cfvb-form__back {
		width: 100%;
	}

	.cfvb-time__dropdown--open {
		max-height: 240px;
	}

	.cfvb-time__list {
		max-height: 220px;
	}

	.cfvb-confirmation__details {
		grid-template-columns: 1fr;
	}

	.cfvb-manage__detail {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.cfvb-manage {
		padding: 24px 8px 20px;
	}

	.cfvb-manage__card {
		border-radius: 10px;
		padding: 18px 14px;
	}

	.cfvb-manage__title {
		font-size: 21px;
		margin-bottom: 18px;
	}

	.cfvb-manage__details,
	.cfvb-manage__actions {
		grid-template-columns: 1fr;
	}

	.cfvb-manage__button,
	.cfvb-manage__cancel-form {
		width: 100%;
	}
}

@media (max-width: 360px) {
	.cfvb-form__row {
		gap: 12px;
	}

	.cfvb-calendar__header {
		margin-bottom: 10px;
	}

	.cfvb-calendar__weekdays,
	.cfvb-calendar__grid {
		gap: 4px;
	}

	.cfvb-calendar__weekday {
		font-size: 10px;
	}

	.cfvb-calendar__day {
		font-size: 12px;
		max-width: 40px;
	}

	.cfvb-time__list {
		max-height: 180px;
	}

	.cfvb-time__dropdown--open {
		max-height: 200px;
	}

	.cfvb-time__trigger {
		min-height: 38px;
		padding: 7px 38px 7px 10px;
	}

	.cfvb-time__option {
		font-size: 13px;
		padding: 10px 38px 10px 10px;
	}
}
