ul.SteppedProgress {
    counter-reset: step;
    display: flex;
    z-index: 1;
    position: relative;
    margin: auto;
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.SteppedProgress li {
    position: relative;
    flex: 1;
    padding: 0 2%;
   /* text-transform: uppercase;
    font-size: 22px;*/
    line-height: normal;
    list-style-type: none;
    color: #404140;
}

.SteppedProgress li.boxed span,
.SteppedProgress li.current span {
    display: inline-block;
    position: relative;
    width: 100%;
    margin: 0 -6px;
    padding: 3px 6px;
    /*border: 1px solid silver;
    color: gray;
    background: silver;*/
}

.SteppedProgress li.boxed span:after,
.SteppedProgress li.current span:after {
    content: " ";
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border: solid transparent;
    border-color: rgba(255,255,255,0);
    border-width: 10px;
    border-bottom-color: silver;
    pointer-events: none;
}

.SteppedProgress li.current span {
/*    color: #FFF;
    background: #4170b0;*/
}

.SteppedProgress li.current span:after {
    border-bottom-color: #23b900;
}

.SteppedProgress li.current.canHover span:hover {
    border-color: #4170b0;
    color: #4170b0;
    background: #b9cce5;
}

.SteppedProgress li.current.canHover span:hover:after {
    border-bottom-color: #b9cce5;
}

.SteppedProgress li.complete.boxed span {
    /*color: #FFF;
    background: #23b900;*/
}

.SteppedProgress li.complete.boxed span:after {
    border-bottom-color: #263159;
}

.SteppedProgress li.complete.boxed.canHover span:hover {
    border-color: #23b900;
    color: #23b900;
    background: #95ff7c;
    cursor: pointer;
}

.SteppedProgress li.complete.boxed.canHover span:hover:after {
    border-bottom-color: #23b900;
    cursor: pointer;
}

.SteppedProgress li:before {
    content: counter(step);
    counter-increment: step;
    display: block;
    z-index: 1;
    position: relative;
    width: 30px;
    margin: 0 auto 10px;
    border-radius: 15px;
    font-size: 22px;
    line-height: 30px;
    color: #FFF;
    background: gray;
}

.SteppedProgress li:after {
    content: '';
    z-index: -1;
    position: absolute;
    top: 15px;
    left: -50%;
    width: 100%;
    height: 3px;
    background: silver;
}

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

.SteppedProgress li.complete:before {
    color: white;
    background: #263159;
}

.SteppedProgress li.complete:after {
    background: #263159;
}

ul.SteppedProgress.Vertical {
    display: block;
}

.SteppedProgress.Vertical li {
    clear: both;
    flex: none;
    margin-left: 0;
    padding: 0;
    min-height: 2.2em;
    text-align: left;
}

.SteppedProgress.Vertical li span {
    white-space: nowrap;
}

ul.SteppedProgress.Vertical li:before {
    display: inline-block;
    float: none;
    margin-right: 10px;
    margin-left: 0;
    text-align: center;
}

.SteppedProgress.Vertical li:after {
    content: '';
    z-index: -1;
    position: absolute;
    top: -50%;
    left: 12px;
    width: 6px;
    height: 100%;
}

ul.SteppedProgress.Vertical li.boxed,
ul.SteppedProgress.Vertical li.current {
    min-width: 90%;
}

ul.SteppedProgress.Vertical li.boxed span,
ul.SteppedProgress.Vertical li.current span {
    display: inline;
    margin-left: 0;
}

ul.SteppedProgress.Vertical li.boxed span:after,
ul.SteppedProgress.Vertical li.current span:after {
    top: 7px;
    right: 100%;
    bottom: auto;
    left: auto;
    margin: 0;
    border-color: rgba(255,255,255,0);
    border-right-color: silver;
}

ul.SteppedProgress.Vertical li.current span:after {
    border-right-color: #4170b0;
}

ul.SteppedProgress.Vertical li.complete.boxed span:after {
    border-color: rgba(255,255,255,0);
    border-right-color: #23b900;
}

@media(max-width:480px) {
    ul.SteppedProgress {
        display: block;
    }

    .SteppedProgress li {
        clear: both;
        flex: none;
        margin-left: 0;
        padding: 0;
        min-height: 2.2em;
        text-align: left;
    }

    .SteppedProgress li span {
        white-space: nowrap;
    }

    ul.SteppedProgress li:before {
        display: inline-block;
        float: none;
        margin-right: 10px;
        margin-left: 0;
        text-align: center;
    }

    .SteppedProgress li:after {
        content: '';
        z-index: -1;
        position: absolute;
        top: -50%;
        left: 12px;
        width: 6px;
        height: 100%;
    }

    ul.SteppedProgress li.boxed,
    ul.SteppedProgress li.current {
        min-width: 90%;
    }

    ul.SteppedProgress li.boxed span,
    ul.SteppedProgress li.current span {
        display: inline;
        margin-left: 0;
    }

    ul.SteppedProgress li.boxed span:after,
    ul.SteppedProgress li.current span:after {
        top: 7px;
        right: 100%;
        bottom: auto;
        left: auto;
        margin: 0;
        border-color: rgba(255,255,255,0);
        border-right-color: silver;
    }

    ul.SteppedProgress li.current span:after {
        border-right-color: #4170b0;
    }

    ul.SteppedProgress li.complete.boxed span:after {
        border-color: rgba(255,255,255,0);
        border-right-color: #23b900;
    }
}

/*# sourceMappingURL=ProgressIndicator.css.map */
