.container {
    width: 100%;
}

.step-pog-bar {
    margin-top: 1%;
    counter-reset: step;
}

.step-pog-bar li {
    list-style: none;
    float: left;
    width: 33%;
    position: relative;
    text-align: center;
}

.step-pog-bar li::before {
    content: "1";

    content:counter(step);
    counter-increment: step;

    width: 30px;
    height: 30px;
    line-height: 27px;
    border: 2px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: #fff;
}

.step-pog-bar li::after {
    content: "";
    position: absolute;
    top: 15px;
    left: -50%;
    border: 2px solid #ddd;
    width: 100%;
    z-index: -1;
}

.step-pog-bar li:first-child::after {
    content: none;
}

.step-pog-bar li.active {
    color: #F37F36;
}

.step-pog-bar li.active::before {
    border-color: #F37F36;
}

.step-pog-bar li.active + li::after {
    border-color: #ddd;
}