body {
    margin: 0;
    padding: 0;
}

.progress-container {
  margin: 20px auto; 
  width:970px;
}
.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.progressbar li {
  list-style-type: none;
  width: 16.6%;
  float: left;
  font-size: 10px;
  position: relative;
  text-align: center;
  color: #efefef;
}
.progressbar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 26px;
  border: 2px solid #efefef;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}
.progressbar li:after {
  width: 100%;
  height: 3px;
  content: '';
  position: absolute;
  background-color: #efefef;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: green;
  font-weight:bold;
}.progressbar li.process {  color: green;  font-weight:bold;}
.progressbar li.active:before {
background: #55b776 none repeat scroll 0 0;
border-color: #55b776;
color: #fff;
font-weight: bold;
}.progressbar li.process::before {    background: #fff none repeat scroll 0 0;    border-color: #55b776;    color: #55b776;    font-weight: bold;}
.progressbar li.active + li:after {
  background-color: #55b776;
}