
.container {
    width: 100%;
}

.progressbar {
    counter-reset: wizard;
}
    /*ajuste texto*/
    .progressbar li {
        list-style-type: none;
        float: left;
        width: 25%;
        position: relative;
        text-align: center;
    
    }
        /*ajuste wizard*/
        .progressbar li:before {
            content: counter(wizard);
            counter-increment: wizard;
            width: 2em;
            height: 2em;
            line-height: 1.5em;
            border: 2px solid #ddd;
            display: block;
            text-align: center;
            margin: 0 auto 10px auto;
            border-radius: 2em;
            background-color: white;
        }

        .progressbar li:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 2px;
            background-color: #ddd;
            top: 15px;
            left: -50%;
            z-index: -1;
        }

        .progressbar li:first-child::after {
            content: none;
        }

        .progressbar li.active {
            color: black
        }

            .progressbar li.active:before {
                border-color: green;
                background-color: #e0e0e0;
                border: 2px solid #e0e0e0;
            }

            .progressbar li.active + li::after {
                background-color: #e0e0e0
            }
