﻿body {
}


*, *:after, *:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /*font-family: "Open Sans";*/
}


/* Form Progress */
.progressBar {
    width: 100%;
    text-align: center;
    min-height: 100px;
    background-color: white;
    display:flex;
    font-size:.75rem;
}

    .progressBar .circle,
    .progressBar .bar {
        display: inline-block;
        background: #fff;
        width: 40px;
        height: 40px;
        border-radius: 40px;
        border: 1px solid #d5d5da;
    }

    .progressBar .bar {
        position: relative;
        width: 22%;
        height: 6px;
        margin: 15px -5px 17px -5px;
        /*border-left: none;*/
        /*border-right: none;*/
        border-radius: 0;
    }

    .progressBar .circle .label {
        display: inline-block;
        width: 32px;
        height: 32px;
        line-height: 32px;
        border-radius: 32px;
        margin-top: 3px;
        color: #b5b5ba;
        font-size: 17px;
    }

    .progressBar .circle .title {
        color: #b5b5ba;
        font-size: 13px;
        line-height: 30px;
        margin-left: -5px;
        display: block;
    }

    /* Done / Active */
    .progressBar .bar.done,
    .progressBar .circle.done {
        background: #eee;
    }

    .progressBar .bar.active {
        background: linear-gradient(to right, #EEE 40%, #FFF 60%);
    }

    .progressBar .circle.done .label {
        color: #FFF;
        background: #8bc435;
        box-shadow: inset 0 0 2px rgba(0,0,0,.2);
    }

    .progressBar .circle.done .title {
        color: #444;
    }

    .progressBar .circle.active .label {
        color: #FFF;
        background: #0c95be;
        box-shadow: inset 0 0 2px rgba(0,0,0,.2);
    }

    .progressBar .circle.active .title {
        color: #0c95be;
    }