﻿.progressbar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: table;
    table-layout: fixed;
    width: 100%;
    color: #666;
}

    .progressbar > li {
        position: relative;
        display: table-cell;
        text-align: center;
        font-size: 1em;
        font-weight: 500;
    }

        .progressbar > li:before {
            content: attr(data-step);
            display: block;
            margin: 0 auto;
            background: #DDD;
            width: 3em;
            height: 3em;
            text-align: center;
            margin-bottom: 0.25em;
            line-height: 3em;
            border-radius: 100%;
            position: relative;
            z-index: 1000;
        }

        .progressbar > li:after {
            content: '';
            position: absolute;
            display: block;
            background: #DDD;
            width: 100%;
            height: 0.5em;
            top: 1.25em;
            left: 50%;
            margin-left: 1.5em\9;
            z-index: -1;
        }

        .progressbar > li:last-child:after {
            display: none;
        }

        .progressbar > li.is-complete {
            color: #272;
        }

            .progressbar > li.is-complete:before, .progressbar > li.is-complete:after {
                color: #FFF;
                background: #6A6;
            }

        .progressbar > li.is-active {
            color: #36A;
        }

            .progressbar > li.is-active:before {
                color: #FFF;
                background: #47B;
            }

/**
 * Needed for IE8
 */
.progressbar__last:after {
    display: none !important;
}

/**
 * Size Extensions
 */
.progressbar--medium {
    font-size: 1.5em;
}

.progressbar--large {
    font-size: 2em;
}

/**
 * Some Generic Stylings
 
*, *:after, *:before {
    box-sizing: border-box;
}

h1 {
    margin-bottom: 1.5em;
}

.progressbar {
    margin-bottom: 3em;
}

a {
    color: #145;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

body {
    text-align: center;
    color: #444;
}*/