ul.order-steps {
    display: block;
    margin: 0;
    counter-reset: step;
}

ul.order-steps:after {
    display: block;
    content: ' ';
    clear: both;
}

ul.order-steps li {
    position: relative;
    display: block;
    width: 33.3%;
    float: left;
    text-align: center;
    background-color: #ffffff;
}

ul.order-steps li:before {
    content: counter(step);
    counter-increment: step;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #000;
    border-radius: 50%;
    margin: 0 auto;
    z-index: 1;

}

ul.order-steps li:after {
    position: absolute;
    content: ' ';
    width: 100%;
    height: 1px;
    background-color: #000;
    top: 15px;
    left: -50%;
}