﻿/*
    Common 
*/

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

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

.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 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%;
}

.wizard > .steps > ul{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 15px;
    margin-bottom:15px;
    box-shadow: 0px 2px 5px 0px rgba(50, 50, 50, 0.5);
    background:#393d40;
    border-radius: 20px;
}

.wizard.vertical > .steps
{
    display: inline;
    float: left;
    width: 30%;
}

.wizard > .steps .number
{
    display: none;
}

.wizard > .steps > ul > li {
	flex: 1 1 auto;
	font-size: 22px;
	font-weight: 400;
	text-align: center;
}

.wizard > .steps > ul > li,
.wizard > .actions > ul > li
{
    float: left;
}

.wizard.vertical > .steps > ul > li
{
    float: none;
    width: 100%;
}

.wizard > .steps a,
.wizard > .steps a:hover,
.wizard > .steps a:active
{
    color: #ffffff;
    display: block;
    width: auto;
    padding: .5rem 1rem;
    text-decoration: none;
    text-transform: uppercase;

    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    border-radius: 1rem;
    transition: .5s;
}

/*.wizard > .steps .disabled a,*/
/*.wizard > .steps .disabled a:hover,*/
/*.wizard > .steps .disabled a:active*/
/*{*/
/*    background: #eee;*/
/*    color: #aaa;*/
/*    cursor: default;*/
/*}*/

.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active,
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active
{
    background: #38b0ba;
    cursor: default;
}
.wizard > .steps .done a {
    border-top-right-radius: 0px!important;
    border-bottom-right-radius: 0px!important;
}
.wizard > .steps li.done:not(.first) a, .wizard > .steps li.current:not(.first) a, .wizard > .steps li.last a {
    border-top-left-radius: 0px!important;
    border-bottom-left-radius: 0px!important;
}

.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active
{
    background: #ff3111;
    color: #fff;
}


.wizard > .content
{
    background: #ffffff;
    display: block;
    /*min-height: 35em;*/
    /*overflow: hidden;*/
    /*position: relative;*/
    width: 100%;

    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 3rem;

    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.wizard > .content .mx-auto
{
    padding-left: 0px;
    padding-right: 0px;
}

.wizard.vertical > .content
{
    display: inline;
    float: left;
    margin: 0 2.5% 0.5em 2.5%;
    width: 65%;
}

.wizard > .content > .body
{
    float: left;
    /*position: absolute;*/
    width: 100%;
    height: 100%;
    /*padding: 2.5%;*/
}

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

.wizard > .content > .body input
{
    display: block;
    border: 1px solid #ccc;
}

.wizard > .content > .body input[type="checkbox"]
{
    display: inline-block;
}

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

.wizard > .content > .body label
{
    display: inline-block;
    margin-bottom: 0.5em;
}

.wizard > .content > .body label.error
{
    color: #8a1f11;
    display: inline-block;
    margin-left: 1.5em;
}

.wizard > .actions
{
    position: relative;
    display: block;
    flex: 0 0 43%;
    max-width: 43%;
    bottom: 6rem;

    margin: 0 auto;
}

.wizard.vertical > .actions
{
    display: inline;
    float: right;
    margin: 0 2.5%;
    width: 95%;

}

.wizard > .actions > ul
{
    float: left;
    width: 100%;
}

.wizard > .actions > ul > li
{
    margin: 0.5em 0;
    width: 100%;
}
.wizard > .actions > ul > li.disabled{
    display: none;
}

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

.wizard > .actions a,
.wizard > .actions a:hover,
.wizard > .actions a:active
{
    background: #33b0ba;
    color: #ffffff;
    font-weight: 500;
    font-size: 20px;
    display: block;
    padding: 0.5em 1em;
    text-decoration: none;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
}

.wizard > .actions .disabled a,
.wizard > .actions .disabled a:hover,
.wizard > .actions .disabled a:active
{
    background: #eee;
    color: #aaa;
}

.wizard > .loading
{
}

.wizard > .loading .spinner
{
}
