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

#msform {
	text-align: center;
	position: relative;
}

#msform fieldset {
	box-sizing: border-box;
    position: relative;
    max-width: 352px;
    margin: 0 auto;
}

#msform fieldset h3 {
	font-size: 14px;
	font-weight: bold;
	color: #2c2d30;
	text-align: left;
	margin-bottom: 30px;
}

#msform fieldset:not(:first-of-type) {
	display: none;
}

#progressbar {
	overflow: hidden;
    counter-reset: step;
    max-width: 300px;
    margin: 0 auto;
}
#progressbar li {
	list-style-type: none;
	color: white;
	text-transform: uppercase;
	font-size: 9px;
	width: 50%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 41px;
	line-height: 27px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 23px;
    margin: 0 auto 0 auto;
    position: relative;
    z-index: 1;
    border: 7px solid #fafbfc;
}
#progressbar li:after {
	content: '';
	width: 100%;
	height: 1px;
	background: #dfeff9;
	position: absolute;
	left: -50%;
	top: 20px;
}
#progressbar li:first-child:after {
	content: none; 
}
#progressbar li.active:before,  #progressbar li.active:after{
	background: #007eb4;
	color: white;
}