step-counter.left-indent-fix{
    padding-left: 15px;
}

step-counter{
    display: block;
    position: absolute;
    counter-reset: stepCounter;
}

step-counter .step::before,
step-counter .step::after{
    transition: background-color 0.3s ease-in-out;
}

step-counter .step:not(:first-child)::before{
    display: block;
    content: " ";
    height: 45px;
    width: 4px;
    margin: auto;
}

step-counter .step::after{
    content: counter(stepCounter);
    counter-increment: stepCounter;
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    font-size: 16px;
    text-align: center;
    color: white;
}


@media (min-width: 768px) {
    step-counter + .step-container {
        margin-left: 55px;
    }
}