/*Wizard Jquery Steps
------------------------------------*/
/*Common*/
.wizard {
    width: 100%;
    display: block;
    overflow: hidden;
}

.wizard ul {
	/* margin: 0;
	padding: 0; */
	list-style: none;
}
.wizard ul > li {
	padding: 0;
	display: inline-block;
}

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

/*Wizard Steps*/
.wizard > .steps {
    width: 100%;
    display: block;
    position: relative;
}

.wizard > .steps .number {
    float: left;
	font-size: 16px;
	margin-right: 15px;
	/* border:1px solid #fff; */
	border-radius:15px;
	font-weight:600;
	width:30px;
	height:30px;
	text-align:center;
	background:#faa21b;
	font-family: 'VAG Rounded LT W01 Bold', sans-serif;
	padding-top: 4px;
}

.wizard > .steps > ul > li {
    width: 31.2%;
    margin-left: 30px;
    position: relative;
}

.wizard > .steps > ul > li:first-child {
	margin-left: 0;
}

@media (max-width: 991px) {
	.wizard > .steps > ul > li {
		width: 100%;
		margin: 0 0 15px 0;
	}
}

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

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

.wizard > .steps h2 {
	font-size: 24px;
	margin: 0 0 10px;
	font-family: 'Futura LT W01 Bold';
	line-height: 28px;
}

.wizard > .steps p {
	/* opacity: 0.6; */
	font-size: 16px;
	font-family: 'Futura LT W01 Book';
	line-height: 18px;
	color: #687074;
}

.wizard > .steps i {
	top: 15px;
	right: 20px;
	width: 40px;
	height: 40px;
	padding: 8px;
	color: #c4c4c4;
	font-size: 20px;
	text-align: center;
	position: absolute;
	display: inline-block;
	/* border: 2px dashed #e0e0e0; */
}

/*Disabled*/
.wizard > .steps .disabled a,
.wizard > .steps .disabled a:hover,
.wizard > .steps .disabled a:active {
	color: #fff;
	cursor: default;
    background: inherit;
	border: 1px solid #ddd;
	-webkit-transition: all 0.3s ease-in-out;
   	-moz-transition: all 0.3s ease-in-out;
   	-o-transition: all 0.3s ease-in-out;
   	transition: all 0.3s ease-in-out;
}

.wizard > .steps .disabled .number {
	color: #18ba9b;
}

/*Current*/
.wizard > .steps .current a,
.wizard > .steps .current a:hover,
.wizard > .steps .current a:active {
	color: #fff;
    background: #18ba9b;
    -webkit-transition: all 0.3s ease-in-out;
   	-moz-transition: all 0.3s ease-in-out;
   	-o-transition: all 0.3s ease-in-out;
   	transition: all 0.3s ease-in-out;
}

.wizard > .steps .current .number,
.wizard > .steps .current h2,
.wizard > .steps .current p,
.wizard > .steps .current i {
	color: #fff;
}

.wizard > .steps .current i {
	border-color: #fff;
	/* border: 1px solid #e68a00; */
}

/*Done*/
.wizard > .steps .done a,
.wizard > .steps .done a:hover,
.wizard > .steps .done a:active {
    color: #fff;
    background: #2cd5b6;
    -webkit-transition: all 0.3s ease-in-out;
   	-moz-transition: all 0.3s ease-in-out;
   	-o-transition: all 0.3s ease-in-out;
   	transition: all 0.3s ease-in-out;
}

.wizard > .steps .done .number {
	color: #a6a6a6;
	background:#fff;
}

.wizard > .steps .done p {
	color: #fff;
}

.wizard > .steps .done h2 {
	color: #fff;
}

.wizard > .steps .done i {
	color: #fff;
	border-color: #fff;
}

/*Error*/
.wizard > .steps .error a,
.wizard > .steps .error a:hover,
.wizard > .steps .error a:active {
    color: #fff;
    background: #c9253c;
    -webkit-transition: all 0.3s ease-in-out;
   	-moz-transition: all 0.3s ease-in-out;
   	-o-transition: all 0.3s ease-in-out;
   	transition: all 0.3s ease-in-out;
}

.wizard > .content > .body em.invalid {
    display: block;
    color: #8a1f11;
    font-weight: 400;
    display: none !important;
    -webkit-transition: all 0.3s ease-in-out;
   	-moz-transition: all 0.3s ease-in-out;
   	-o-transition: all 0.3s ease-in-out;
   	transition: all 0.3s ease-in-out;
}

.wizard > .content > .body input.invalid {
	color: #8a1f11;
	font-weight: 400;
	border: 1px solid #e60000 !important;
	-webkit-transition: all 0.3s ease-in-out;
   	-moz-transition: all 0.3s ease-in-out;
   	-o-transition: all 0.3s ease-in-out;
   	transition: all 0.3s ease-in-out;
}

.wizard > .content > .body input.invalid.form-control::-moz-placeholder {
	color: #8a1f11;
}

.wizard > .content > .body input.invalid.form-control:-ms-input-placeholder {
	color: #8a1f11;
}

.wizard > .content > .body input.invalid.form-control::-webkit-input-placeholder {
	color: #8a1f11;
}

/*Small Input Field*/
.wizard > .content > .body .input-small-field input {
	width: 20%;
	float: left;
	margin-right: 10px;
}

.wizard > .content > .body .input-small-field input.invalid {
	margin-right: 10px;
}

.wizard > .content > .body .input-small-field span.slash {
	color: #888;
	float: left;
	font-size: 20px;
	margin-right: 8px;
}

/*Content*/
.wizard > .content {
	overflow: hidden;
    position: relative;
}

.wizard > .content {
	margin-top: 35px;
	padding-top: 35px;
	border-top: 2px solid #ccc;
}

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

/*Actions*/
.wizard > .actions {
    text-align: right;
}

.wizard > .actions > ul {
    display: inline-block;
}

.wizard > .actions > ul > li {
    margin-left: 30px;
}

.wizard > .actions > ul > li:first-child {
	margin-left: 0;
}

.wizard > .actions a {
    color: #fff;
    display: block;
    font-size: 16px;
    min-width: 90px;
    padding: 8px 10px;
    text-align: center;
    background: #18ba9b;
    text-decoration: none;
    text-transform: uppercase;
}

.wizard > .actions .previous {
    background:  #fff;
    border:none;
    box-shadow: 0 3px 0 #9b1893;
    padding-bottom: 2px;
    border-radius:0px;
    padding:8px 0px 0px;
    min-width: 60px;
    font-family: "VAG Rounded LT W01 Bold",sans-serif;
    color: #9b1893;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wizard > .actions .previous:hover {
	background: #fff;
	color: #9b1893;
	box-shadow: 0 3px 0 #fff;
}

.wizard > .actions a:hover {
	background: #2cd5b6;
}

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

