﻿.wizard {
    display: block;
    width: 100%;
}
.wizard a {
    outline: 0;
}
.wizard .steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
.wizard .steps ul > li {
    display: block;
    padding: 0;
    margin: 0 10px;
}
.wizard > .steps .current-info {
    position: absolute;
    left: -999em;
}
.wizard > .content > .title {
    position: absolute;
    left: -999em;
}
.wizard > .steps {
    position: relative;
    display: block;
    width: 100%;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
    display: block;
    width: auto;
    padding: 1em 2em;
    text-decoration: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
    background: #9498a0;
    color: #ffffff;
    cursor: default;
}
.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active {
    background: #7093e5;
    color: #fff;
    cursor: default;
}
.wizard > .steps .done a, .wizard > .steps .done a:hover {
    background: #0d6efd;
    color: #fff;
}
.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
    background: #ff3111;
    color: #fff;
}
.wizard > .content {
    display: block;
    margin: 30px 0;
    position: relative;
    width: auto;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.wizard > .content > .body {
    width: 100%;
    height: 100%;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0.25rem;
    padding: 1rem 1rem;
}
.wizard > .content > .body > iframe {
    border: 0 none;
    width: 100%;
    height: 100%;
}
.wizard > .content > .body label {
    display: inline-block;
}
.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}
.wizard > .actions > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.wizard > .actions > ul > li {
    margin: 0 0.5em;
}
.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
    background: #0d6efd;
    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 > .actions li:not(.disabled) a.previous {
    background: #6c757d;
    color: #ffffff;
}
.wizard > .loading {
}
.wizard > .loading .spinner {
}
