.progressbar-wrapper {
      background: #fff;
      width: 100%;
      padding-top: 10px;
      padding-bottom: 5px;
}

.progressbar li {
      list-style-type: none;
      width: 50%;
      float: left;
      font-size: 12px;
      position: relative;
      text-align: center;
      text-transform: uppercase;
      color: #7d7d7d;
}

.progressbar li:before {
    width: 60px;
    height: 60px;
    content: "";
    line-height: 60px;
    border: 2px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 3px auto;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    background-color: #fff;
}
.progressbar li:after {
     width: 100%;
     height: 2px;
     content: '';
     position: absolute;
     background-color: #7d7d7d;
     top: 30px;
     left: -50%;
     z-index: 0;
}
.progressbar li:first-child:after {
     content: none;
}

.progressbar li.active {
    color: black;
    font-weight: bold;
    font-size: 14px;
}
.progressbar li.active:before {
    border-color: #ca187f;
    background: green;
 }
.progressbar li.active + li:after {
    background-color: #c11887;
}

.progressbar li.active:before {
    background: linear-gradient(0deg, #FF1A43 0%, #7b16d9 100%);
    background-size: 60%;
}
.progressbar li.ic1::before {
    background: #fff url("../images/icons/british-pound.svg") no-repeat center center;
    background-size: 60%;
}

.progressbar {
    counter-reset: step;
}
.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    color: white;
    font-size: 30px;
}