.progressbar {
  font-family: montserrat, arial, verdana;
  margin: 30px;
  padding: 0;
  text-align: center;
  margin-bottom: 30px;
  overflow: hidden;
  counter-reset: step;
  z-index: 99;
}

.progressbar li {
  list-style-type: none;
  font-size: 15px;
  float: left;
  position: relative;
}

.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 40px;
  line-height: 40px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  border: 1px #d7d7d7 solid;
  color: #333;
  background: white;
  border-radius: 30px;
  margin: 0 auto 5px auto;
}

.progressbar li:after {
  content: '';
  width: calc(100% - 50px);
  height: 1px;
  background: #d7d7d7;
  position: absolute;
  left: calc((-100% + 50px) / 2);
  top: 20px;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active:before, .progressbar li.active:after {
  background: #1c55a5;
  color: white;
  border: none;
}