﻿
/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    /*CSS counters to number the steps*/
    counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: brown;
        text-transform: uppercase;
        font-size: 9px;
        /*width: 33.33%;*/
        width: 14%;
        float: left;
        position: relative;
        padding-left: 25px;
        word-wrap: break-word;
        z-index:0;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 20px;
            line-height: 20px;
            display: block;
            font-size: 12px;
            color: black;
            background: #96c3ea;
            border-radius: 3px;
            /*margin: 0 auto 5px auto;*/
            margin: 0 25px 5px 25px;
            padding-left: 6px;
        }
        /*progressbar connectors*/
        #progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            /*background: #E094CC;*/
            background: #96c3ea;
            position: absolute;
            left: -65%;
            top: 9px;
            z-index: -1; /*put it behind the numbers*/
        }

        #progressbar li:first-child:after {
            /*connector not needed before the first step*/
            content: none;
        }
        /*marking active/completed steps green*/
        /*The number of the step and the connector before it = green*/
        #progressbar li.active:before, #progressbar li.active:after {
            background: #27AE60;
            color: white;
        }
        #progressbar li.active1:before, #progressbar li.active1:after {
            background: #ffd800;
            color: white;
        }