.nav-wizard>div {
    float: left;
}

.nav-wizard>div {
    position: relative;
    background-color: #e4e4e4;
    cursor: pointer;
    color: #4C4C55;
}

.nav-wizard>div .badge {
    margin-left: 3px;
    color: #eeeeee;
    background-color: #0e6eb6;
}

.nav-wizard>div:not(:first-child) {
    padding-left: 34px;
}

.nav-wizard>div:not(:first-child):before {
    width: 0px;
    height: 0px;
    border-top: 25px inset transparent;
    border-bottom: 25px inset transparent;
    border-left: 20px solid #ffffff;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

.nav-wizard>div:not(:last-child) {
    margin-right: 6px;
}

.nav-wizard>div:not(:last-child):after {
    width: 0px;
    height: 0px;
    border-top: 25px inset transparent;
    border-bottom: 25px inset transparent;
    border-left: 20px solid #e4e4e4;
    position: absolute;
    content: "";
    top: 0;
    right: -20px;
    z-index: 2;
}

.nav-wizard>div:first-child {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.nav-wizard>div:last-child {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.nav-wizard>div.done:hover, .nav-wizard>div:hover {
    background-color: #d5d5d5;
}

.nav-wizard>div.done:hover:before, .nav-wizard>div:hover:before {
    border-right-color: #d5d5d5;
}

.nav-wizard>div.done:hover:after, .nav-wizard>div:hover:after {
    border-left-color: #d5d5d5;
}

.nav-wizard>div.done {
    background-color: #e2e2e2;
}

.nav-wizard>div.done:before {
    border-right-color: #e2e2e2;
}

.nav-wizard>div.done:after {
    border-left-color: #e2e2e2;
}

.nav-wizard>div.active, .nav-wizard>div.active:hover, .nav-wizard>div.active:focus {
    color: #ffffff;
    background-color: #0e6eb6;
    cursor: pointer;
}

.nav-wizard>div.active:after {
    border-left-color: #0e6eb6;
}

.nav-wizard>div.active .badge {
    color: #0e6eb6;
    background-color: #ffffff;
}

.nav-wizard>div.disabled {
    color: #777777;
}

.nav-wizard>div.disabled:hover, .nav-wizard>div.disabled:focus {
    color: #777777;
    text-decoration: none;
    background-color: #e4e4e4;
    cursor: default;
}

.nav-wizard>div.disabled:before {
    border-right-color: #e4e4e4;
}

.nav-wizard>div.disabled:after {
    border-left-color: #e4e4e4;
}

.nav-wizard.nav-justified>div {
    float: none;
}

.nav-wizard.nav-justified>div {
    padding: 10px 15px;
}

@media (max-width: 768px) {
    .nav-wizard.nav-justified>div {
        border-radius: 4px;
        margin-right: 0;
    }
    .nav-wizard.nav-justified>div:before, .nav-wizard.nav-justified>div:after {
        border: none !important;
    }
}