@charset "UTF-8";

.btn-label {
	position: relative;
	left: -12px;
	display: inline-block;
	padding: 6px 12px;
	background: rgba(0, 0, 0, 0.15);
	border-radius: 3px 0 0 3px;
}

.btn-labeled {
	padding-top: 0;
	padding-bottom: 0;
}

.alt-option {
	margin: 0;
	text-align: center;
	display: inline-block;
	position: relative;
	width: 100%;
	z-index: 1;
}

.alt-option:before {
	position: absolute;
	left: 0;
	top: 50%;
	height: 1px;
	width: 100%;
	background: #e6e6e6;
	content: "";
	z-index: -1;
}

.alt-option span {
	background: #fff;
	color: #888;
	padding: 5px 15px;
}

.progressbar {
	position: relative;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.progressbar li {
	position: relative;
	list-style-type: none;
	text-align: center;
	text-transform: uppercase;
	width: 33.333%;
	color: #999999;
	font-weight: bold;
	counter-increment: steps;
}
.progressbar li:before {
	display: block;
	width: 26px;
	height: 26px;
	margin: 7px auto 20px auto;
	content: '';
	line-height: 26px;
	font-size: 12px;
	text-align: center;
	border-radius: 50%;
	background-color: #F5F5F5;
	content: counter(steps);
}
.progressbar li:after {
	position: absolute;
	z-index: -1;
	top: 15px;
	left: -50%;
	width: 100%;
	height: 2px;
	content: '';
	background-color: #F5F5F5;
}
.progressbar li:first-child:after {
	content: none;
}
.progressbar li.active,
.progressbar li.complete{
	color: #0070BD;
}
.progressbar li.active:before,
.progressbar li.complete:before {
	background-color: #0070BD;
	color: #FFF;
}
.progressbar li.active:after,
.progressbar li.complete:after {
	background-color: #0070BD;
}