﻿#progressbar {
    margin: 0 0 30px 0;
    padding: 0;
    overflow: hidden;
    color: lightgrey;
    z-index: 0;
    position: relative;
    text-align: center;
}

    #progressbar .active {
        color: #000000
    }

    #progressbar li {
        list-style-type: none;
        font-size: 12px;
        width: 50%;
        float: left;
        position: relative
    }

    #progressbar #tax:before {
        font-family: FontAwesome;
        content: "\f09d"
    }

    #progressbar #account:before {
        font-family: FontAwesome;
        content: "\f007"
    }


    #progressbar li:before {
        width: 50px;
        height: 50px;
        line-height: 45px;
        display: block;
        font-size: 18px;
        color: #ffffff;
        background: lightgray;
        border-radius: 50%;
        margin: 0 auto 10px auto;
        padding: 2px
    }

    #progressbar li:after {
        content: '';
        width: 100%;
        height: 2px;
        background: lightgray;
        position: absolute;
        left: 0;
        top: 25px;
        z-index: -1
    }

    #progressbar li.active:before,
    #progressbar li.active:after {
        background: #2754B0;
    }
