﻿/*
    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;
	margin: 0 2rem 0 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.vertical > .steps {
	display: inline;
	float: left;
	width: 30%;
}
.wizard > .steps .number {
	font-size: 1em;
}
.wizard > .steps > ul > li {
	width:calc(100%/5);
	text-align: center;
}
.wizard > .steps > ul > li, .wizard > .actions > ul > li {
	float: left;
	position: relative;
			margin-left:-25px;
}
.wizard > .actions > ul > li {
	float:right;
}
.wizard > .steps > ul > li:first-child,
.wizard > .actions > ul > li:first-child {
        float: left;
        position: relative;
        margin-left:0px;
}

.wizard > .steps > ul > li:last-child , .wizard > .actions > ul > li:last-child {
	        overflow: hidden;
        
}
.wizard > .actions > ul > li:last-child {
	display: none !important;
}

.wizard.vertical > .steps > ul > li {
	float: none;
	width: 100%;
}
.wizard > .steps a, .wizard > .steps a:hover, .wizard > .steps a:active {
	display: block;
	width: auto;
	padding: 0.5rem 2rem;
	text-decoration: none;
	/* -webkit-border-radius: 5px; */
	font-weight: bold;
	-moz-border-radius: 5px;
	font-size: 1.2rem;/* border-radius: 5px; */
	margin-right:10px;
}
.wizard > .steps a:after,
.wizard > .steps a:hover:after,
.wizard > .steps a:active:after
{
	content: "";
	border-top: 1.4rem solid transparent;
	border-bottom: 1.4rem solid transparent;
	border-left: 1rem solid #eee;
	position: absolute; 
	right: 0rem;
	top: 0;
	z-index: 100;
}
.wizard > .steps a:before,
.wizard > .steps a:hover:before,
.wizard > .steps a:active:before {
	content: "";  
	border-top: 1.4rem solid transparent;
	border-bottom: 1.4rem solid transparent;
	border-left: 1rem solid #fff;
	position: absolute; left: 0; top: 0;
}

.wizard > .steps li:first-child a:before,
.wizard > .steps li:first-child a:hover:before,
.wizard > .steps li:first-child a:active:before {
	content: "";  
	border-top: none;
	border-bottom: none;
	border-left: none;
	position: absolute; left: 0; top: 0;
}


.wizard > .steps .disabled a, .wizard > .steps .disabled a:hover, .wizard > .steps .disabled a:active {
	background: #eee;
	color: #aaa;
	cursor: default;
}
.wizard > .steps li[aria-disabled="false"].current a, .wizard > .steps li[aria-disabled="false"].current a:hover, .wizard > .steps li[aria-disabled="false"].current a:active {
	background: #fdc126;
	color: #fff;
	cursor: default;
}
.wizard > .steps li[aria-disabled="false"].current a, .wizard > .steps li[aria-disabled="false"].current a:hover, .wizard > .steps li[aria-disabled="false"].current a:active {
	background: #fdc126;
	color: #fff;
	cursor: default;
}

.wizard > .steps li[aria-disabled="false"].current a:after, .wizard > .steps li[aria-disabled="false"].current a:hover:after, .wizard > .steps li[aria-disabled="false"].current a:active:after {
	content: "";
	border-top: 1.4rem solid transparent;
	border-bottom: 1.4rem solid transparent;
	border-left: 1rem solid #fdc126;
	position: absolute;
	right: 0rem;
	top: 0;
}

/* */

.wizard > .steps li[aria-disabled="false"] a, .wizard > .steps li[aria-disabled="false"] a:hover, .wizard > .steps li[aria-disabled="false"] a:active {
	background: #9dc8e2;
	color: #fff;
}
.wizard > .steps li[aria-disabled="false"] a:after,
.wizard > .steps li[aria-disabled="false"] a:hover:after,
.wizard > .steps li[aria-disabled="false"] a:active:after
{
	content: "";
	border-top: 1.4rem solid transparent;
	border-bottom: 1.4rem solid transparent;
	border-left: 1rem solid #9dc8e2;
	position: absolute;
	right: 0rem;
	top: 0;
}

.wizard > .steps li[aria-disabled="false"] a:after,
.wizard > .steps li[aria-disabled="false"] a:hover:after,
.wizard > .steps li[aria-disabled="false"] a:active:after {
        content: "";
        border-top: 1.4rem solid transparent;
        border-bottom: 1.4rem solid transparent;
        border-left: 1rem solid #9dc8e2;
        position: absolute;
        right: 0rem;
        top: 0;
}


.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
	background: #ff3111;
	color: #fff;
}
.wizard > .content {
	display: block;
	overflow: hidden;
	position: relative;
	width: auto;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	min-height: 120px;
	margin-top: 10px;
}
.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: 95%;
	height: 95%;
	padding: 1.5rem 2rem;
}
.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 {
	display: inline-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: 0.5rem 1rem;
}
.wizard > .content > .body label.error {
	color: #8a1f11;
	display: inline-block;
	margin-left: 1.5em;
}
.wizard > .actions {
        position: absolute;
        display: block;
        text-align: center;
        width: 20%;
        bottom: 0%;
        right: 0;
}
.wizard.vertical > .actions {
	display: inline;
	float: right;
	margin: 0 2.5%;
	width: 95%;
}
.wizard > .actions > ul {
	display: block;
	text-align: right;
}
.wizard > .actions > ul > li {
	margin: 0;
}
.wizard.vertical > .actions > ul > li {
	margin: 0 0 0 1em;
}
.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
	background: #4d93cc;
	color: #fff;
	display: block;
	padding: 0.3em 1em;
	text-decoration: none;
	
}
.wizard > .actions .disabled a, .wizard > .actions .disabled a:hover, .wizard > .actions .disabled a:active {
	background: #eee;
	color: #aaa;
}
.wizard > .loading {
}
.wizard > .loading .spinner {
}
/*
    Tabcontrol
*/

.tabcontrol > .steps {
	position: relative;
	display: block;
	width: 100%;
}
.tabcontrol > .steps > ul {
	position: relative;
	margin: 6px 0 0 0;
	top: 1px;
	z-index: 1;
}
.tabcontrol > .steps > ul > li {
	float: left;
	margin: 5px 2px 0 0;
	padding: 1px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	position: relative;
}
.tabcontrol > .steps > ul > li:hover {
	background: #edecec;
	border: 1px solid #bbb;
	padding: 0;
}
.tabcontrol > .steps > ul > li.current {
	background: #fff;
	border: 1px solid #bbb;
	border-bottom: 0 none;
	padding: 0 0 1px 0;
	margin-top: 0;
}
.tabcontrol > .steps > ul > li > a {
	color: #5f5f5f;
	display: inline-block;
	border: 0 none;
	margin: 0;
	padding: 10px 30px;
	text-decoration: none;
	position: relative;
}
.tabcontrol > .steps > ul > li > a:hover {
	text-decoration: none;
}
.tabcontrol > .steps > ul > li.current > a {
	padding: 15px 30px 10px 30px;
}
.tabcontrol > .content {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 35em;
	overflow: hidden;
	border-top: 1px solid #bbb;
	padding-top: 20px;
}
.tabcontrol > .content > .body {
	float: left;
	position: absolute;
	width: 95%;
	height: 95%;
	padding: 2.5%;
}
.tabcontrol > .content > .body ul {
	list-style: disc !important;
}
.tabcontrol > .content > .body ul > li {
	display: list-item;
}
