/*
    Common
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}

.wizard a,
.tabcontrol a
{
    outline: 0;
}

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.wizard ul > li,
.tabcontrol ul > li
{
    display: block;
    padding: 0;
}

/* Accessibility */
.wizard > .steps .current-info,
.tabcontrol > .steps .current-info
{
    position: absolute;
    left: -999em;
}

.wizard > .content > .title,
.tabcontrol > .content > .title
{
    position: absolute;
    left: -999em;
}



/*
    Wizard
*/

.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}


.wizard > .steps .number
{
}

.wizard > .steps > ul{
  display: flex;
}
.wizard > .steps > ul > li
{
    text-align: center;
}


.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    display: block;
    width: auto;
    text-decoration: none;
}

.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active
{
    cursor: default;
}

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active
{
    cursor: default;
}

.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{

}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    color: crimson;
}

.wizard > .content
{
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.wizard > .content > .body
{
    width: 100%;
    height: 100%;
}

.wizard > .content > .body ul
{
    list-style: disc !important;
}

.wizard > .content > .body ul > li
{
    display: list-item;
}

.wizard > .content > .body > iframe
{
    border: 0 none;
    width: 100%;
    height: 100%;
}


.wizard > .content > .body input.error
{
    background: rgb(251, 227, 228);
    border: 1px solid crimson;
    color: crimson;
}

.wizard > .content > .body label.error
{
    color: crimson;
    display: block;
    margin-left: 0;
    margin-top: -16px;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 16px;
}

.wizard > .actions
{
    position: relative;
    display: block;
    width: 100%;
}

.wizard > .actions > ul{
    display: flex;
    justify-content: space-between;
}

.wizard > .actions > ul > li
{
  margin: 0;
}

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{

}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{

}


.steps > ul > li:not(.current){
  display: none;
}



.wizard > .actions a[href="#back"],
.wizard > .actions a[href="#previous"]{
}

.wizard > .actions a[href="#next"],
.wizard > .actions a[href="#finish"],
.wizard > .actions a[href="#submit"]{

}
