.wizard > .steps > ul > li:after, .wizard > .steps > ul > li:before {
    content: '';
    z-index: 9;
    display: block;
    position: absolute;
}

.wizard {
    width: 100%;
    display: block;
    overflow: hidden;
}

.wizard .content {
    margin-left: 0 !important;
}

.wizard > .steps {
    position: relative;
    display: block;
    width: 100%;
}

.wizard > .steps .current-info {
    position: absolute;
    left: -99999px;
}

.wizard > .steps > ul {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wizard > .steps > ul > li {
    display: table-cell;
    width: auto;
    vertical-align: top;
    text-align: center;
    position: relative;
}

.wizard > .steps > ul > li a {
    position: relative;
    padding-top: 52px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}

.wizard > .steps > ul > li:before {
    left: 0;
}

.wizard > .steps > ul > li:after {
    right: 0;
}

.wizard > .steps > ul > li:first-child:before, .wizard > .steps > ul > li:last-child:after {
    content: none;
}

.wizard > .steps > ul > li.current > a {
    color: #333;
    cursor: default;
}

.wizard > .steps > ul > li.current .step {
    border-color: #2C3E50;
    background-color: #FFF;
    color: #2C3E50;
}

.wizard > .steps > ul > li.disabled a, .wizard > .steps > ul > li.disabled a:focus, .wizard > .steps > ul > li.disabled a:hover {
    color: #999;
    cursor: default;
}

.wizard > .steps > ul > li.done a, .wizard > .steps > ul > li.done a:focus, .wizard > .steps > ul > li.done a:hover {
    color: #999;
}

.wizard > .steps > ul > li.done .step {
    background-color: #2C3E50;
    border-color: #2C3E50;
    color: #FFF;
}

.wizard > .steps > ul > li.error .step {
    border-color: #FF7588;
    color: #FF7588;
}

.wizard > .steps .step {
    background-color: #FFF;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -24px;
    z-index: 10;
    text-align: center;
}

.wizard > .content {
    background: #fff;
    border: solid 1px #eee;
    display: block;
    margin: 5px 5px 10px 5px;
    min-height: 120px;
    overflow: hidden;
    position: relative;
    width: auto;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .content > .title {
    position: absolute;
    left: -99999px;
}

.wizard > .content > .body {
    float: left;
    position: absolute;
    width: 95%;
    height: 95%;
    padding: 2.5%;
}

.wizard > .content > iframe {
    border: 0;
    width: 100%;
    height: 100%
}

.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
    padding: 0 20px 20px;
}

.wizard > .actions > ul {
    float: right;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wizard > .actions > ul:after {
    content: '';
    display: table;
    clear: both;
}

.wizard > .actions > ul > li {
    float: left;
}

.wizard > .actions > ul > li + li {
    margin-left: 10px;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background: #2C3E50;
    color: #fff;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}

.wizard.wizard-circle > .steps > ul > li:after, .wizard.wizard-circle > .steps > ul > li:before {
    top: 43px;
    width: 50%;
    height: 5px;
    background-color: #2C3E50;
}

.wizard.wizard-circle > .steps > ul > li.current:after, .wizard.wizard-circle > .steps > ul > li.current ~ li:after, .wizard.wizard-circle > .steps > ul > li.current ~ li:before {
    background-color: #d0d0d0;
}

.wizard.wizard-circle > .steps .step {
    width: 50px;
    height: 50px;
    line-height: 40px;
    border: 5px solid #d0d0d0;
    font-size: 1.3rem;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .wizard > .steps > ul {
        margin-bottom: 20px;
    }

    .wizard > .steps > ul > li {
        display: block;
        float: left;
        width: 50%;
    }

    .wizard > .steps > ul > li > a {
        margin-bottom: 0;
    }

    .wizard > .steps > ul > li:first-child:before {
        content: '';
    }

    .wizard > .steps > ul > li:last-child:after {
        content: '';
        background-color: #2C3E50;
    }

    .wizard.vertical > .steps {
        width: 15%;
    }
}

@media (max-width: 480px) {
    .wizard > .steps > ul > li {
        width: 100%;
    }

    .wizard > .steps > ul > li.current:after {
        background-color: #2C3E50;
    }

    .wizard.vertical > .steps {
        width: 20%;
    }
}