﻿.processStep {
    padding: 0px;
    background: transparent;
    list-style: none;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

    .processStep > li {
        display: table-cell;
        vertical-align: top;
        width: 1%;
    }

        .processStep > li + li:before {
            padding: 0;
        }

    .processStep li a {
        color: #ccc;
        text-decoration: none;
        padding: 10px 0 10px 45px;
        position: relative;
        display: inline-block;
        width: calc( 100% - 10px );
        background-color: #efefef;
        text-align: center;
        text-transform: capitalize;
    }

    .processStep li.completed {
    }

        .processStep li.completed a {
            background-color: #d8c69e;
            color: #9a640c !important;
        }

            .processStep li.completed a:after {
                border-left: 30px solid #d8c69e;
            }

    .processStep li.active a {
        background: #ffab24;
        color: #fff;
    }

        .processStep li.active a:after {
            border-left: 30px solid #ffab24;
        }

    .processStep li:first-child a {
        padding-left: 15px;
    }

    .processStep li:last-of-type a {
        width: calc( 100% - 38px );
    }

    .processStep li a:before {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border-top: 50px solid transparent;
        border-bottom: 50px solid transparent;
        border-left: 30px solid white;
        position: absolute;
        top: 50%;
        margin-top: -50px;
        margin-left: 1px;
        left: 100%;
        z-index: 1;
    }

    .processStep li a:after {
        content: " ";
        display: block;
        width: 0;
        height: 0;
        border-top: 50px solid transparent;
        border-bottom: 50px solid transparent;
        border-left: 30px solid #efefef;
        position: absolute;
        top: 50%;
        margin-top: -50px;
        left: 100%;
        z-index: 2;
    }
