.nav-wizard > li {
    float: left;
    padding-left: 5px;
    width: 200px;
    text-align: left;
}

    .nav-wizard > li > a {
        position: relative;
        background-color:#EC7F39;
        height:60px;
        padding:15px;       
    }

        .nav-wizard > li > a .badge {
            margin-left: 3px;
            color:#EC7F39;
            background-color: #428bca;
        }

    .nav-wizard > li:not(:first-child) > a {
        padding-left: 34px;
    }

h1 {
    display: inline;
}

.nav-wizard > li:not(:first-child) > a:before {
    width: 0px;
    height: 0px;
    border-top: 30px inset transparent;
    border-bottom: 30px inset transparent;
    border-left: 30px solid #ffffff;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.nav-wizard > li:not(:last-child) > a {
    margin-right: 6px;
    color: #ffffff;
}

    .nav-wizard > li:not(:last-child) > a:after {
        width: 0px;
        height: 0px;
        border-top: 30px inset transparent;
        border-bottom: 30px inset transparent;
        border-left: 30px solid#EC7F39;
        position: absolute;
        content: "";
        top: 0;
        right: -30px;
        z-index: 2;
    }

.nav-wizard > li:first-child > a {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.nav-wizard > li:last-child > a {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    color: #FFF;
}

.nav-wizard > li.done:hover > a,
.nav-wizard > li:hover > a {
    background-color:#EC7F39;
}

    .nav-wizard > li.done:hover > a:before,
    .nav-wizard > li:hover > a:before {
        border-right-color:#EC7F39;
    }

    .nav-wizard > li.done:hover > a:after,
    .nav-wizard > li:hover > a:after {
        border-left-color:#EC7F39;
    }

.nav-wizard > li.done > a {
    background-color: #e2e2e2;
}

    .nav-wizard > li.done > a:before {
        border-right-color: #e2e2e2;
    }

    .nav-wizard > li.done > a:after {
        border-left-color: #e2e2e2;
    }

.nav-wizard > li.active > a,
.nav-wizard > li.active > a:hover,
.nav-wizard > li.active > a:focus {
    color: #ffffff;
    background-color: #4CAE4C;/*#EC7F39*/
    height: 60px;
    width:205px;
}

    .nav-wizard > li.active > a:after {
        border-left-color: #4CAE4C!important;
		right:-23px;
    }

    .nav-wizard > li.active > a .badge {
        color: #428bca;
        background-color: #ffffff;
    }

.nav-wizard > li.disabled > a {
    color: #ffffff;
    height:60px
}

    .nav-wizard > li.disabled > a:hover,
    .nav-wizard > li.disabled > a:focus {
        color: #ffffff;
        text-decoration: none;
        background-color:#EC7F39;
        cursor: default;
    }

    .nav-wizard > li.disabled > a:before {
        border-right-color:#EC7F39;
    }

    .nav-wizard > li.disabled > a:after {
        border-left-color:#EC7F39;
    }

.nav-wizard.nav-justified > li {
    float: none;
}

    .nav-wizard.nav-justified > li > a {
        padding: 10px 15px;
    }

@media (max-width: 768px) {
    .nav-wizard.nav-justified > li > a {
        border-radius: 4px;
        margin-right: 0;
    }

        .nav-wizard.nav-justified > li > a:before,
        .nav-wizard.nav-justified > li > a:after {
            border: none !important;
        }
}
