/*custom font*/
@import url(https://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

.book-form {
	height: 100%;
	position: fixed;
	top: 0;
	left: 0; width: 100%;
	z-index: 9999;
	/*background: linear-gradient(rgba(196, 102, 0, 1), rgba(155, 89, 182, 1));*/
	background: linear-gradient(rgba(25, 25, 25, 1), rgba(40, 40, 40, 1));
}


/*form styles*/
.msform {
	width: 100%;
	margin: 0px auto;
	position: relative;
}
.msform fieldset {
	background: white;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 0;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
.msform fieldset:not(:first-of-type) {
	display: none;
}

/*buttons*/
.msform .action-button {
	width: 100px;
	background: #b90606;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 5px 5px;
	margin: 0 0 0 10px;
	font-size: 14px;
	letter-spacing: 1px;
}
.msform .action-button:hover, .msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #b90606;
}
.action-button {
	width: 100px;
	background: #b90606;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 5px 5px;
	margin: 0 0 0 10px;
	font-size: 14px;
	letter-spacing: 1px;
}
.action-button:hover, .msform .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #b90606; color: #fff;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
	margin: 20px 0;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	display: inline-block;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: auto;
	float: left;
	position: relative;
	padding: 0 10px;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*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: #b90606;
	color: white;
}



