/* @override 
	http://local.bevroute.com/cont/js/multiStepForms/multiStepForms.css
	http://bevroute.com/cont/js/multiStepForms/multiStepForms.css */

/*form styles*/
#msform {
	width: 32rem;
	height: 500px;
	margin: auto;
	position: relative;
	overflow: hidden;
	text-align: center; 
}

#msform fieldset {
	/*stacking fieldsets above each other*/
	position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/

/*buttons*/
#msform .action-button {
	
}
#msform .action-button:hover, #msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #27AE60;
}
/*headings*/
.fs-title {
	
}
.fs-subtitle {
	
}
/*progressbar*/
#progressbar {
	width: 32rem;
	margin-bottom: 10px;
	padding: 0px 0px 10px 1rem;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	
}
#progressbar li {
	width: 20%;
	margin: 3px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	list-style-type: none;
	font-family: 'Roboto Slab';
	font-weight: 400;
	color: #373c43;
	text-align: center;
	text-transform: uppercase;
	font-size: 0.7rem;
	float: left;
	position: relative;
	
}

#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 25px;
	line-height: 25px;
	display: block;
	font-family: 'Roboto Slab';
	font-size: 0.9rem;
	font-weight: 700;
	color: #FFF;
	background: #c9ccd1;
	border-radius: 3px;
	margin: 0 auto 5px auto;
	text-align: center;
	border-radius: 1.3rem;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 83%;
	height: 4px;
	background: #c9ccd1;
	position: absolute;
	left: -38%;
	top: 0.7rem;	
	z-index: 0;
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
	
}

#progressbar li:first-child:before {
	/*connector not needed before the first step*/
	background-color: #f50400;
	
}
/*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: #f50400;
}