#progressbar {
	margin-bottom: 20px;
	overflow: hidden;
	/*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
	list-style-type: none;
	color: black;
	text-transform: uppercase;
  font-size: 10px;
  text-align: center;
	width: 25%;
	float: left;
  position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 50px;
	line-height: 50px;
	display: block;
	font-size: 15px;
	color: #000;
	background: #F9FAFC;
	border-radius: 50%;
  margin: 0 auto 5px auto;
  position: relative;
  z-index:2;
}
/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 5px;
	background:#F9FAFC;
	position: absolute;
	left: -50%;
	top: 25px;
	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: #3C8DBC;
	color: white;
}