.steps-progressbar>ul {
    display: table;
    table-layout: fixed;
    border-collapse: separate;
    margin: 12px 0 10px;
    width: 100%;
    padding: 0;
    list-style: none;
    color: #002E45;
    font-size: 12px;
}

.steps-progressbar>ul>li {
    position: relative;
    display: table-cell;
    list-style-type: none;
    text-align: center
}

.steps-progressbar>ul>li:before {
    position: inherit;
    display: block;
    margin: 9px auto 7px;
    width: 25px;
    height: 25px;
    border: 2px solid #E8F5EE;
    border-radius: 50%;
    background-color: #fff;
    line-height: 30px;
    content: " ";
    z-index: 1
}

.steps-progressbar>ul>li:after {
    position: absolute;
    top: 19px;
    right: 50%;
    width: 100%;
    height: 5px;
    box-shadow: inset 0 0 5px #E8F5EE;
    background-color: #E8F5EE;
    content: " ";
    z-index: 0
}

.steps-progressbar>ul>li:first-child:after {
    content: none
}

.steps-progressbar>ul>li.active:before,
.steps-progressbar>ul>li.previous:before {
    border-color: #3857f0;
    background-color: #3857f0;
}

.steps-progressbar>ul>li.active:after,
.steps-progressbar>ul>li.previous:after {
    box-shadow: none;
    background-color: #3857f0;
}

.steps-progressbar>ul>li.active {
        font-size: 15px;
}

.steps-progressbar>ul>li.active:before {
    margin-top: 0;
    width: 25px;
    height: 25px
}



@media (max-width: 576px) {

	.steps-progressbar>ul {
		color: white !important;
		font-size:0px !important;
	}
	
	.steps-progressbar>ul>li{
			color: white !important;
		font-size:0px !important;
	}
}