.step-progressbar {
    counter-reset: step;
}

@media screen and (max-width: 500px) { 
	.col-12-progressbar {
		padding-left: 5px !important;
		padding-right: 5px !important;
	}
  	.step-progressbar li {
  		font-size: 10px !important; 
  		text-transform: none !important;
  	}
}

.step-progressbar li {
    list-style-type: none;	/* Removes bullet points */
    width: 20%;			/* Change the width depending on how many elements are in the step-progressbar */
    float: left;			/* makes the step-progressbar vertical */
    font-size: 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    color: #7d7d7d;
}
.step-progressbar li:before {
    width: 40px;
    height: 40px;
    content: counter(step);
    counter-increment: step;
    line-height: 35px;
    border: 3px solid #7d7d7d;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
}
.step-progressbar li:after {
    width: 100%;
    height: 5px;
    content: '';
    position: absolute;
    background-color: #7d7d7d;
    top: 17px;						/* adjust the height of the connector-line */
    left: -50%;
    z-index: -1;
}
.step-progressbar li:first-child:after {
    content: none;
}
.step-progressbar li.active {
    color: green;
}
.step-progressbar li.active:before {
    border-color: #55b776;
}
.step-progressbar li.active + li:after {
    background-color: #55b776;
}

.step-progressbar li.current {
    color: #007bff;
}

.step-progressbar li.current:before {
    border-color: #007bff;
}