/*-------- COLORS --------
blue: #0178b1;
dark blue: #064c78;
yellow: #fff200;
------------------------*/


#msform {
	margin: 50px auto;
	text-align: center;
	position: relative;
}
#msform fieldset {
	background: #f5f5f5;
	border: 1px #ccc solid;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
	padding: 25px;
	
	text-align: left;
	box-sizing: border-box;
	width: 100%;
}
#msform p{font-size: 14px;text-align: left;}
#msform fieldset:not(:first-of-type) {display: none;}

/*inputs*/
#msform input, #msform select, #msform textarea {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	width: 100%;
	padding: 12px;
	box-sizing: border-box;
	color: #222;
    font-family: 'Montserrat', sans-serif;
	font-size: 13px;
}
#msform textarea {height: 80px;}
#msform input[type="checkbox"]{
    margin: 0 10px;
    width:15px;
    height:15px;
    display:inline;
	position: relative;
	top: 2px;
}
#msform input[type="radio"]{
    margin: 0 10px;
    width:15px;
    height:15px;
    display:inline;
	position: relative;
	top: 2px;
}
#msform label{display: inline;}
#msform .column4, #msform .column3, #msform .column2{text-align: left;}
.column2 {width:50%; *width:48%; float:left; padding-right: 20px; box-sizing: border-box;}
.column3 {width:33.33333%; *width:31%; float:left; padding-right: 20px; box-sizing: border-box;}
.column4 {width:25%; *width:23%; float:left; padding-right: 20px; box-sizing: border-box;}

#msform .action-button, #msform input.button{
	color: #0356a7; 
	border: 2px solid #0356a7; 
	padding: 8px 14px;
    font-family: 'Montserrat', sans-serif;
	width: 100px;
	cursor: pointer;
	margin: 15px 5px;
	background: #f5f5f5;
}
#msform .action-button:hover, #msform .action-button:focus, #msform input.button:hover, #msform input.button:focus {
	color:#fff; border: 2px solid #0356a7; background:#0356a7;
}

/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #0356a7;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
	margin-bottom: 30px;
	overflow: hidden;
	counter-reset: step;
	position: relative;
	z-index: 0;
}
#progressbar li {
	list-style-type: none;
	text-transform: uppercase;
	font-size: 12px;
	line-height:16px;
	width: 14.25%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #fff;
	background: #0178b1;
	margin: 0 auto 5px auto;
}
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #0178b1;
	color:#fff;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1;
}
#progressbar li:first-child:after {
	content: none; 
}
#progressbar li.active:before,  #progressbar li.active:after{
	background:#b3c7de;
	color: #000;
}


@media screen and (max-width: 750px){
	#msform{margin: 0 auto;}
	#progressbar{display: none;}

}

@media screen and (max-width: 650px){
	#msform{margin: 0 auto;}
	#progressbar{display: none;}
	
	.column2 {width:100% !important; *width:100%; float:none; padding-right: 0;}
	.column3 {width:100% !important; *width:100%; float:none; padding-right: 0;}
	.column4 {width:100% !important; *width:100%; float:none; padding-right: 0;}

}