.booked-calendar .timeslot-time {
	display: none !important;
}

.booked-calendar .timeslot-people {
	width: 100% !important;
	justify-content: center !important;
	padding: 0 !important;
}

.booked-calendar-fields .cf-block {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8%;
}

.booked-calendar-fields .cf-block .field {
	width: 100%;
	margin: 0;
}

.booked-calendar-fields .cf-block .field:nth-child(1),
.booked-calendar-fields .cf-block .field:nth-child(2) {
	width: 46%;
}

.vc-menu-item__top {
	display: flex;
	justify-content: stretch;
	gap: 24px;
}

.vc-menu-item__name {
	color: #041527;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 32px;
}

.vc-menu-item__line {
	flex: 1;
	width: 100%;
	border-bottom: 2px dashed #C59D5F;
	transform: translatey(-33%);
}

.vc-menu-item__price {
	color: #041527;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 32px;
	
}

.vc-menu-item__description {
	padding-top: 12px;
	padding-bottom: 24px;
	color: #505050;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.5px;
	line-height: 32px;
	margin: 0;
}

.vc-home-square {
	background-image: var(--bg-image);
	background-position: center;
	background-size: cover;
	min-height: calc(50vh - 32px);
	width: 100%;
	padding: 48px 32px;
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	text-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
	position: relative;
}
.vc-home-square:hover {
	color: white !important;
}
.vc-home-square::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: black;
	opacity: 0.2;
	transition: all 0.2s ease-in-out;
}
.vc-home-square:hover::before {
	background: #C59D5F;
	opacity: 0.8;
}
.vc-home-square__title {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	position: relative;
	z-index: 1;
}
.vc-home-square__subtitle {
	font-size: 20px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.finger-item {
	display: flex;
}

.finger-item__image,
.finger-item__content {
	width: 50%;
}

.finger-item__content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: black;
	color: white;
	line-height: 1;
	gap: 4px;
	padding-left: 4px;
	padding-right: 4px;
}

.finger-item__title {
	font-weight: bold;
	text-align: center
}

.finger-item__subtitle {
	text-align: center
}

.finger-item__price {
	padding-top: 24px;
	font-weight: bold;
}

.cart-icon {
	padding-top: 24px;
	padding-bottom: 0;
	transform: translatey(8px);
}