/*form styles*/
#msform {
	width: 80%;
	margin: 50px auto;
	text-align: center;
	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: 20px 30px;
	
	box-sizing: border-box;
	width: 100%;
	
	
	/*stacking fieldsets above each other*/
	position: absolute;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
	display: none;
}


/*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-bottom: 30px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;

}
#progressbar li, #register-form-progressbar li {
	list-style-type: none; 
	color: #333;
	text-transform: uppercase;
	font-size: 10px;
	float: left;
	position: relative;
}

#progressbar li {
	width: 16%;
}

#register-form-progressbar li {
	width: 30%;
}

#register-form-progressbar {
	display: flex;
	justify-content: center !important;
	margin-bottom: 30px;
	overflow: hidden;
	counter-reset: step;
}

/*#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #ccc;
	background: white;
	border:1px solid #2196F3 !important;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}*/
/*progressbar connectors*/
/*#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #2196F3 !important;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; 
}*/
#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: #2196F3 !important	;
	color: white;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:#b5bbbf !important;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #b5bbbf !important;
   opacity:  1 !important;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #b5bbbf !important;
   opacity:  1 !important;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #b5bbbf !important;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #b5bbbf !important;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #b5bbbf !important;
}