.container {
  width: 100%;
  /*font-family: "Arial", sans-serif;*/
  /*font-size: 0.875em;*/
}

.progressbar {
    counter-reset: step;
    padding-left: 0px;
    margin-left: 0px;
}
    .progressbar li {
        margin: 0;
        list-style: none;
        display: inline-block;
        width: 30%;
        position: relative;
        text-align: center;
        cursor: pointer;
    }
.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  height: 40px;
  line-height : 30px;
  border: 5px solid #ddd;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
}
.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ddd;
  top: 18px;
  left: -50%;
  z-index : -1;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active {
  color: orange;
}
.progressbar li.active:before {
  border-color: orange;
} 
.progressbar li.active + li:after {
  background-color: orange;
}

.progressbarEV {
    counter-reset: step;
    padding-left: 0px;
    margin-left: 0px;
}

.progressbarEV li {
    margin: 0;
    list-style: none;
    display: inline-block;
    width: 20%;
    position: relative;
    text-align: center;
    cursor: pointer;
}

.progressbarEV li:before {
    content: counter(step);
    counter-increment: step;
    width: 40px;
    height: 40px;
    line-height: 30px;
    border: 5px solid #ddd;
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    background-color: #fff;
}

.progressbarEV li:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #ddd;
    top: 18px;
    left: -50%;
    z-index: -1;
}

.progressbarEV li:first-child:after {
    content: none;
}

.progressbarEV li.active {
    color: orange;
}

.progressbarEV li.active:before {
    border-color: orange;
}

.progressbarEV li.active + li:after {
    background-color: orange;
}