﻿ol.step-progress-bar {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    ol.step-progress-bar li {
        display: inline-block;
        vertical-align: top;
        text-align: center;
        flex: 1 1;
        position: relative;
        margin: 0 5px 0;
    }

        ol.step-progress-bar li span.content-bullet {
            border-radius: 100%;
            display: block;
            text-align: center;
            transform: translateX(-50%);
            margin-left: 50%;
            font-size: 12px;
        }

        ol.step-progress-bar li span.content-wrapper {
            display: inline-block;
            overflow: visible;
            width: 100%;
            padding: 0;
            font-weight: 700;
            font-size: 12px;
            position: absolute;
            left: 0;
        }

        ol.step-progress-bar li span.content-stick {
            position: absolute;
            display: block;
            width: 100%;
            z-index: -1;
            transform: translate(-50%, -50%);
        }

        ol.step-progress-bar li.step-past *,
        ol.step-progress-bar li.step-present .content-stick {
            color: #59D89D;
            background: #59D89D;
        }

        ol.step-progress-bar li.step-present * {
            color: #59D89D;
            background: #59D89D;
        }

        ol.step-progress-bar li .content-bullet {
            color: white;
        }

        ol.step-progress-bar li.step-future * {
            color: #7A7A7A !important;
            background: #FFFFFF;
            border: 1px solid #D9D9D9;
        }

        ol.step-progress-bar li.step-future .content-wrapper {
            color: #ABAAAA !important;
            font-weight: 400;
        }

        ol.step-progress-bar li.step-past .content-wrapper {
            color: #7A7A7A !important;
            font-weight: 400;
        }

        ol.step-progress-bar li .content-wrapper {
            background: transparent;
            border: transparent;
        }

    ol.step-progress-bar.mid li .content-bullet {
        width: 25px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    ol.step-progress-bar.mid li {
        font-size: 100%;
    }

        ol.step-progress-bar.mid li .content-stick {
            top: 12.5px; /* Metade do diâmetro. */
            height: 2px;
        }
