/*form styles*/
#msform {
	width: 100%;
	max-width:1400px;
	margin: 50px auto;
	position: relative;
}
#msform fieldset {
	background: #edebeb;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	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;
}
/*inputs*/
#msform label {
	margin-bottom: 0;
	font-weight: 700;
	font-size: 22px;
	display:block;
}
#msform .form-check{
	display:flex;
	align-items:center;
}
#msform label.form-check-label{
	display:inline-block;
	font-weight:400;
	margin:5px 0 5px 10px;
	max-width: 90%;
}
#msform .form-check input[type=checkbox] {
	height: 20px;
	width: 20px;
}
#msform input, #msform textarea, #msform select {
	padding: 5px 15px;
	border: 2px solid #cbd0d9;
	border-radius: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: montserrat;
	color: #000;
	font-size: 21px;
	background:#e4e5e6;
}
#msform input[type="checkbox"], #msform input[type="radio"]{
	display: inline;
	width:auto;
	line-height:14px;
}
.checkbox-label{
	font-size:21px;
}
.formWarning{
	display:block !important;
	color:red;
	font-weight:700;
	font-size:13px;
	margin-bottom:5px;
}
/*buttons*/
#msform .action-button, #msform .btn-primary {
	width: 100px;
	background: #007ca9;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 10px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus, #msform .btn-primary:hover, #msform .btn-primary:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #007ca9;
}
/*headings*/

.form-arrow-text{
	display: block;
	font-family: 'Caveat', sans-serif;
	font-size: 30px;
}

/*progressbar*/
ul#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
	text-align:center;
	padding:0;
}
ul#progressbar li {
	list-style-type: none;
	color: #000;
	text-transform: uppercase;
	font-family:'Raleway', sans-serif;
	font-weight:900;
	font-size: 16px;
	width: 33.33%;
	float: left;
	position: relative;
}
ul#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #fff;
	background: #87c000;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
ul#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #87c000;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
ul#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*/
ul#progressbar li.active:before,  #progressbar li.active:after{
	background: #007ca9;
	color: white;
}
