﻿ol.stepper {
	background-color: transparent;
	position: relative;
	overflow: hidden;
	counter-reset: wizard;
}

li.stepper {
	font-size: 18px;
	list-style-type: none;
	position: relative;
	float: left;
	width: 12.5%;
	text-align: center;
	color: #797979;
}

li.has-reach-final-review {
	cursor: pointer;
}

span.step-name {
	font-size: 13px;
	font-weight: 500;
}

.current ~ li.stepper {
	color: #797979;
}

li.stepper:before {
	counter-increment: wizard;
	content: "✓";
	font-weight: bold;
	display: block;
	color: white;
	background-color: #00313C;
	border: 5px solid #fff;
	text-align: center;
	width: 2.5em;
	height: 2.5em;
	line-height: 2em;
	border-radius: 2em;
	position: relative;
	left: 50%;
	margin-top: 5px;
	margin-bottom: 0.5em;
	margin-left: -1em;
	z-index: 1;
	box-shadow: 0 0 0 2px #00313C;
}

.current ~ li.stepper:before {
	background-color: white;
	color: #91A7AB;
	border: 5px solid white;
	box-shadow: 0 0 0 2px #91A7AB;
}

li.stepper + li.stepper:after {
	content: "";
	display: block;
	width: 100%;
	background-color: #00313C;
	height: 3px;
	position: absolute;
	left: -50%;
	top: 1.3333333333em;
	z-index: 0;
}

li.current:before {
	content: counter(wizard);
	font-weight: normal;
}

li.current ~ *:before {
	content: counter(wizard);
	font-weight: bolder;
}

li.current ~ *:after {
	background-color: #91A7AB !important;
}
