﻿.progressbar-container {
    margin: 30px 6px;
    background: #fff;
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.progressbar {
    z-index: 2;
    margin-bottom: 0;
    padding: 0;
    width: 100%
}

    .progressbar, .progressbar li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative
    }

        .progressbar li {
            list-style: none;
            border-left: none;
            color: #000;
            text-align: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-flex: 0;
            -ms-flex: 0 1 100%;
            flex: 0 1 100%
        }

            .progressbar li.completed span {
                background: #39a393
            }

                .progressbar li.completed span.circle {
                    background: #39a393;
                    color: #fff;
                    border: 1px solid #39a393
                }

            .progressbar li.active span.circle {
                background: #fff;
                border: 3px dashed #39a393;
            }

            .progressbar li p {
                left: 0;
                top: 0;
                padding-top: 10px;
                margin-top: 10px;
                padding-left: 0;
                margin-left: 0;
                font-weight: 400;
                font-size: .9em;
                text-align: center
            }

                .progressbar li p.title {
                    font-weight: 600;
                    font-size: .95em;
                    color: #1a2857
                }

        .progressbar .active .bar:before, .progressbar .completed .bar:before {
            background: #fff;
            width: 16px;
            height: 16px;
            margin-left: -8px;
            z-index: 1;
            bottom: 28px
        }

        .progressbar li .bar:after {
            content: "";
            background: grey;
            height: 3px;
            position: absolute;
            top: 0;
            right: 50%;
            width: 100%;
            z-index: 200
        }

        .progressbar li:first-child .bar:after {
            display: none
        }

        .progressbar li span .progress-icon {
            z-index: 300;
            color: #fff;
            font-size: 1.1em;
            padding-top: 4px
        }

        .progressbar li span.circle {
            background: #fff;
            top: -12px;
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 20px;
            z-index: 500;
            margin-right: -12px;
            right: 50%;
            border: 3px solid grey;
            box-sizing: unset;
        }
