
/* Copyright 2013-2015 etc Chris Tabor. Licensed under MIT. */
.flexer, .progress-indicator {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}


    .no-flexer, .progress-indicator.stacked {
        display: block;
    }

.no-flexer-element {
    -ms-flex: 0;
    -webkit-flex: 0;
    -moz-flex: 0;
    flex: 0;
}

.flexer-element, .progress-indicator > li {
    -ms-flex: 1;
    -webkit-flex: 1;
    -moz-flex: 1;
    flex: 1;
}

.progress-indicator {
    font-family: "myriad-pro-n4", "myriad-pro", Helvetica, Arial, sans-serif;
    font-size: 1.4em;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    margin-bottom: 1em;
}

    .progress-indicator > li {
        list-style: none;
        text-align: center;
        width: auto;
        padding: 0;
        margin: 0;
        position: relative;
        text-overflow: ellipsis;
        color: #767676;
        display: block;
    }

        .progress-indicator > li .bubble {
            border-radius: 1000px;
            width: 20px;
            height: 20px;
            background-color: #bbbbbb;
            display: block;
            margin: 0 auto 0.5em auto;
            border-bottom: 1px solid #888888;
        }

            .progress-indicator > li .bubble:before, .progress-indicator > li .bubble:after {
                display: block;
                position: absolute;
                top: 9px;
                width: 100%;
                height: 3px;
                content: '';
                background-color: #bbbbbb;
            }

            .progress-indicator > li .bubble:before {
                left: 0;
            }

            .progress-indicator > li .bubble:after {
                right: 0;
            }

        .progress-indicator > li.completed {
            color: #3A7F39;
        }

            .progress-indicator > li.completed .bubble {
                background-color: #3A7F39;
                color: #3A7F39;
                border-color: #3A7F39;
            }

                .progress-indicator > li.completed .bubble:before, .progress-indicator > li.completed .bubble:after {
                    background-color: #3A7F39;
                    border-color: #3A7F39;
                }

        .progress-indicator > li a:hover .bubble {
            background-color: #5671d0;
            color: #5671d0;
            border-color: #1f306e;
        }

        .progress-indicator > li.current {
            color: #000;
        }

        .progress-indicator > li a:hover .bubble:before, .progress-indicator > li a:hover .bubble:after {
            background-color: #5671d0;
            border-color: #1f306e;
        }

        .progress-indicator > li.current .bubble {
            background-color: #0e4180;
            color: #0e4180;
            border-color: #0e4180;
        }

            .progress-indicator > li.current .bubble:before, .progress-indicator > li.current .bubble:after {
                background-color: #0e4180;
                border-color: #0e4180;
            }

    .progress-indicator.stacked > li {
        text-indent: -10px;
        text-align: center;
        display: block;
    }

        .progress-indicator.stacked > li .bubble:before, .progress-indicator.stacked > li .bubble:after {
            left: 50%;
            margin-left: -1.5px;
            width: 3px;
            height: 100%;
        }

    .progress-indicator.stacked .stacked-text {
        position: relative;
        z-index: 10;
        top: 0;
        margin-left: 60% !important;
        width: 45% !important;
        display: inline-block;
        text-align: left;
        line-height: 1.2em;
    }

    .progress-indicator.stacked > li a {
        border: none;
    }

.no-flexboxlegacy .progress-indicator > li {
    width: 20%;
    margin: -2px;
    display: inline-block;
    vertical-align: top;
}

.no-flexboxlegacy .progress-indicator {
    padding-left: 10px;
}

.progress-indicator .completed span.bubble span {
    color: white;
    position: relative;
    z-index: 2;
}

@media handheld, screen and (max-width: 400px) {
    .progress-indicator {
        font-size: 95%;
    }

        .progress-indicator span.bubble span {
            font-size: 150% !important;
        }
}

