﻿/*Animated Progress Bar*/
div.progress {
    background-color: #D9D9D9;
    max-width: 255px;
}

.progressbar li {
    list-style-type: none;
    width: 16%;
    float: left;
    font-size: 14px;
    position: relative;
    text-align: center;
    color: #a3afb7;
    z-index: 1;
}

    .progressbar li:before {
        width: 30px;
        height: 30px;
        content: "";
        line-height: 30px;
        border: 8px solid #78B0E9;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        border-radius: 50%;
        background-color: #FFFFFF;
    }

    .progressbar li:after {
        width: 90%;
        height: 2px;
        content: '';
        position: absolute;
        background-color: #78B0E9;
        top: 15px;
        left: -45%;
        z-index: -1;
    }

    .progressbar li:first-child:after {
        content: none;
    }

    .progressbar li.active {
        color: #3F4254;
    }

        .progressbar li.active:before {
            border-color: #2F86DD;
            background-color: #FFFFFF;
        }

        .progressbar li.active + li:after {
            background-color: #2F86DD;
        }


@media(max-width:991.98px) {
    .progressbar li:after {
        width: 80%;
        left: -38%;
    }
    }