#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #fff;
    padding-left: 0px;
    margin-top: 30px;
    width: 100%;
}

#progressbar li {
    list-style-type: none;
    width: 20%;
    float: left;
    position: relative;
    font-weight: 400;
    z-index: 1;
    font-weight: 700;
    font-size: 32px;
}

#progressbar #step1:before {
    content: "1";
}
#progressbar #step2:before {
    content: "2";
}
#progressbar #step3:before {
    content: "3";
}
#progressbar #step4:before {
    content: "4";
}
#progressbar #step5:before {
    content: "5";
}
#progressbar #step6:before {
    content: "6";
}

#progressbar li:before {
    width: 60px;
    height: 60px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1A6197;
    border-radius: 50%;
    margin: auto;
    color: #FFFFFF6B;;
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 9px;
    background: #1A6197;
    position: absolute;
    left: 0;
    top: 26px;
    z-index: -1;
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    width: 50%;
}

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    left: 50%
}

#progressbar li:last-child:after {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px
}

#progressbar li:first-child:after {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px
}

#progressbar li.active:before,
#progressbar li.active:after {
    color: #fff;
    background: #ff7f30;
}

#progressbar li.current:before,
#progressbar li.current:after {
    color: #fff;
    background: #ff7f30;
}