.stepDisplay {
  margin: 0 auto; /* Center the UL */
  padding: 0;
  counter-reset: step;
  position: relative;
  left: 15px; /* This is half the total step width including margins */
}

.stepDisplay li {
  list-style-type: none;
  width: 33%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
}
.stepDisplay li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  border: 2px solid #7d7d7d;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: white;
}
.stepDisplay li:after {
  width: 100%;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #7d7d7d;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.stepDisplay li:first-child:after {
  content: none;
}
.stepDisplay li.active {
  color: green;
}
.stepDisplay li.active:before {
  border-color: #55b776;
}
.stepDisplay li.active + li:after {
  background-color: #55b776;
}
