﻿/*
    Common 
*/

.wizard,
.tabcontrol
{
    display: block;
    width: 100%;
    overflow: hidden;
}
.steps a,
.wizard a,
.tabcontrol a
{
    outline: 0;
}
.steps ul,
.wizard ul,
.tabcontrol ul
{
    list-style: none !important;
    padding: 0;
    margin: 0;
}
.steps ul > li,
.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
*/
.steps,
.wizard > .steps
{
    position: relative;
    display: block;
    width: 100%;
}


.steps a,
.wizard > .steps a{
    text-decoration: none !important;
    display: block;
    width: 70px;
    text-align: center;
    position: relative;
    z-index:2;
}

.steps ul,
.wizard > .steps ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.steps ul::after, 
.wizard > .steps ul::after {
    content: "";
    position: absolute;
    width: 93%;
    height: 2px;
    background-color: #D9AF85;
    margin: auto;
    left: 0;
    right: 0;
    top: 13px;
}
.steps ul .done::after,
.steps ul .current::after, 
.wizard > .steps ul .done::after,
.wizard > .steps ul .current::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #FF8000;
    margin: auto;
    left: 38px;
    top: 13px;
    z-index: 1;
}
.steps ul li a .number,
.wizard > .steps ul li a .number{
    width: 28px;
    height: 28px;
    background: #D9AF85;
    display: block;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    margin: auto;
}
.steps ul li a .step-number,
.wizard > .steps ul li a .step-number{
    width: 52px;
    font-weight: 700;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.04em;
    color: #D9AF85;
}

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

.wizard > .content{
    display: block;
    margin: 0.5em;
    min-height: 41em;
    overflow: hidden;
    position: relative;
    width: auto;
}

.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: 24px 15px 15px;
}

.wizard > .content > .body select,
.wizard > .content > .body input{
    display: block;
    border: 1px solid #DADADA;
    height: 55px;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #C7C7C7;
}
.wizard > .content > .body select:focus,
.wizard > .content > .body input:focus{
    border: 1px solid #000C2E;
    color: #353841;
    outline: 0;
    box-shadow: none !important;
}
.wizard > .content > .body label.form-label {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #535968;
    background-color: #fff;
    padding: 0 10px;
    position: absolute;
    text-transform: uppercase;
    top: -10px;
    left: 20px;
}

.wizard > .content > .body .error label.form-label{
    color: #E5645C;
}
.wizard > .content > .body .error select,
.wizard > .content > .body .error input{
    border: 1px solid #E5645C;
    color: #E5645C;
    outline: 0;
    box-shadow: none !important;
}

.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;
}

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

.wizard > .actions > ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.wizard.vertical > .actions > ul > li{
    margin: 0 0 0 1em;
}
.wizard > .actions a{
    width: 260px !important;
    text-transform: capitalize;
}
.wizard > .actions ul li a.active,
.wizard > .actions ul li:nth-child(2) a,
.wizard > .actions ul li:nth-child(3) a{
    background-color: #15234a;
    color: #fff;
}

.wizard > .loading{
}

.wizard > .loading .spinner{
}

.admin-registration-forms .steps ul li{
    position: relative;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.admin-registration-forms .steps ul li:first-child{
    justify-content: flex-start;
}
.admin-registration-forms .steps ul li:last-child{
    justify-content: flex-end;
}

.admin-registration-forms .steps ul li:last-child::after{
    width: 65%;
}

.admin-registration-forms .steps ul li:nth-child(2) a{
    left: -45px;
}

.admin-registration-forms .steps ul li.current a .number{
    background-color: #FF8000;
}
.admin-registration-forms .steps ul li.current a .step-number{
    color: #FF8000;
}
.admin-registration-forms .steps ul li.done a .number{
    background-color: #FF8000;
}
.admin-registration-forms .steps ul li.done a .step-number{
    color: #FF8000;
}



