.businessBanner {
	background-image:var(--business-background-image);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	height:40vh;
}

/* .advertBanner {
	background-image:url('https://reservit.ie/assets/img/hero-bg.jpg');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	min-height:20vh;
} */

/* FORM */
/*form styles*/
#bookingForm fieldset {
	/*stacking fieldsets above each other*/
	position: relative;
}

/*Hide all except first fieldset*/
#bookingForm fieldset:not(:first-of-type) {
	display: none;
}

/*progressbar*/
#progressbar {
	text-align:center;
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	padding:0;
}

#progressbar li {
	list-style-type: none;
	color: inherit;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
	letter-spacing: 1px;
}

#progressbar li::before {
	position:relative;
	content: counter(step);
	counter-increment: step;
	width: 24px;
	height: 24px;
	line-height: 24px;
	display: block;
	font-size: 12px;
	color: #fff;
	background: black;
	/* border-radius: 12px; */
	border-radius: 10%;
	margin: 0 auto 10px;
	z-index:1;
}

/*progressbar connectors*/
#progressbar li::after {
	content: '';
	width: 100%;
	height: 2px;
	background: black;
	position: absolute;
	left: -50%;
	top: 11px;
	z-index: 0; /*put it behind the numbers*/
}

#progressbar li:first-child::after {
	/*connector not needed before the first step*/
	content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active::before, #progressbar li.active::after {
	background: #16aaff;
	color: #fff;
}
