.wizard > .steps > ul > li:after,
.wizard > .steps > ul > li:before {
    content: "";
    z-index: 9;
    display: block;
    position: absolute;
}
.wizard {
    width: 100%;
}
.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;
    text-decoration: none;
}
.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: #1ea050;
    background-color: #1ea050;
    color: #fff;
}
.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: #1ea050;
    border-color: #1ea050;
    color: #fff;
}
.wizard > .steps > ul > li.error .step {
    border-color: #ff4961;
    color: #ff4961;
}
.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 {
    position: relative;
    width: auto;
    padding: 0;
    margin: 0;
}
.wizard > .content > .title {
    position: absolute;
    left: -99999px;
}
.wizard > .content > .body {
    padding: 0 20px;
}
.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 > ul > li > a {
    background: #666ee8;
    color: #fff;
    display: block;
    padding: 7px 12px;
    border-radius: 2px;
    border: 1px solid transparent;
}
.wizard > .actions > ul > li > a:focus,
.wizard > .actions > ul > li > a:hover {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.05) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.05) inset;
}
.wizard > .actions > ul > li > a:active {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.1) inset;
}
.wizard > .actions > ul > li > a[href="#previous"] {
    background-color: #fcfcfc;
    color: #333;
    border: 1px solid #ddd;
}
.wizard > .actions > ul > li > a[href="#previous"]:focus,
.wizard > .actions > ul > li > a[href="#previous"]:hover {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.02) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.02) inset;
}
.wizard > .actions > ul > li > a[href="#previous"]:active {
    -webkit-box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.04) inset;
    box-shadow: 0 0 0 100px rgba(0, 0, 0, 0.04) inset;
}
.wizard > .actions > ul > li.disabled > a,
.wizard > .actions > ul > li.disabled > a:focus,
.wizard > .actions > ul > li.disabled > a:hover {
    color: #999;
}
.wizard > .actions > ul > li.disabled > a[href="#previous"],
.wizard > .actions > ul > li.disabled > a[href="#previous"]:focus,
.wizard > .actions > ul > li.disabled > a[href="#previous"]:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wizard.wizard-circle > .steps > ul > li:after,
.wizard.wizard-circle > .steps > ul > li:before {
    top: 43px;
    width: 50%;
    height: 5px;
    /* background-color: #1EA050; */
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 4px,
        #1ea050 4px,
        #1ea050 8px
    );
}
.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: #f4f5fa; */
    /* background-color: #f4f5fa; */
    background: repeating-linear-gradient(
        to right,
        transparent,
        transparent 4px,
        #D9D9D9 4px,
        #D9D9D9 8px
    );
}
.wizard.wizard-circle > .steps .step {
    width: 50px;
    height: 50px;
    line-height: 40px;
    border: 5px solid #f4f5fa;
    font-size: 1.3rem;
    border-radius: 50%;
}
.wizard.wizard-notification > .steps > ul > li:after,
.wizard.wizard-notification > .steps > ul > li:before {
    top: 39px;
    width: 50%;
    height: 2px;
    background-color: #666ee8;
}
.wizard.wizard-notification > .steps > ul > li.current .step {
    border: 2px solid #666ee8;
    color: #666ee8;
    line-height: 36px;
}
.wizard.wizard-notification > .steps > ul > li.current .step:after,
.wizard.wizard-notification > .steps > ul > li.done .step:after {
    border-top-color: #666ee8;
}
.wizard.wizard-notification > .steps > ul > li.current:after,
.wizard.wizard-notification > .steps > ul > li.current ~ li:after,
.wizard.wizard-notification > .steps > ul > li.current ~ li:before {
    background-color: #f4f5fa;
}
.wizard.wizard-notification > .steps > ul > li.done .step {
    color: #fff;
}
.wizard.wizard-notification > .steps .step {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.3rem;
    border-radius: 15%;
    background-color: #f4f5fa;
}
.wizard.wizard-notification > .steps .step:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -8px;
    margin-bottom: -8px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #f4f5fa;
}
.wizard.vertical > .steps {
    display: inline;
    float: left;
    width: 10%;
}
.wizard.vertical > .steps > ul > li {
    display: block;
    width: 100%;
}
.wizard.vertical > .steps > ul > li.current:after,
.wizard.vertical > .steps > ul > li.current:before,
.wizard.vertical > .steps > ul > li.current ~ li:after,
.wizard.vertical > .steps > ul > li.current ~ li:before,
.wizard.vertical > .steps > ul > li:after,
.wizard.vertical > .steps > ul > li:before {
    background-color: transparent;
}
@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: #666ee8;
    }
    .wizard.vertical > .steps {
        width: 15%;
    }
}
@media (max-width: 480px) {
    .wizard > .steps > ul > li {
        width: 100%;
    }
    .wizard > .steps > ul > li.current:after {
        background-color: #666ee8;
    }
    .wizard.vertical > .steps {
        width: 20%;
    }
}
