.wizard {
    display: block;
    height: 100%;
    overflow: hidden;
}
.wizard a {
    display: block;
    outline: 0;
}
.wizard ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}
.wizard > .steps .current-info {
    position: absolute;
    left: -999em;
}
.wizard > .content > .title {
    position: absolute;
    left: -999em;
}
.wizard > .steps > ul > li {
    text-transform: uppercase;
}
.wizard > .steps > ul > li,
.wizard > .actions > ul > li {
    align-items: center;
    display: flex;
    float: left;
    margin: 0 16px 0 0;
    position: relative;
}
.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active {
    display: block;
    width: auto;
    text-decoration: none;
}
.wizard > .steps .disabled a {
    display: none;
}
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
    opacity: 0.5;
}
.wizard > .content {
    display: block;
    min-height: 35em;
    overflow: hidden;
    position: relative;
    width: auto;
    height: 100%;
}
.wizard > .content > .body {
    float: left;
    position: absolute;
    width: 100%;
    height: 100%;
}
.wizard > .content > .body ul > li {
    display: list-item;
    margin: 0 0 10px;
}
.wizard > .content > .body input[type="text"] {
    border: 2px solid #fff;
    color: white;
    display: block;
    margin: 10px 0 0 0;
    text-transform: uppercase;
}
.wizard > .content > .body input.error {
    border: 1px solid red;
    color: red;
}
.wizard > .content > .body label {
    cursor: pointer;
    display: block;
}
.wizard > .content > .body label.error {
    color: red;
    display: block;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    margin: 5px 0;
}
.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
}
.wizard > .actions > ul {
    display: inline-block;
    text-align: right;
}
.wizard > .actions > ul > li {
    margin: 0 0.5em;
}
.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active {
    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 {
    color: #aaa;
}
