/* https://codepen.io/himanshu/pen/syLAh */

/*
*, *:after, *:before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Open Sans";
}
*/

/* Form.step-progress */
.step-progress {
	padding: 0;
	margin: 0;
}
.step-progress .circle,
.step-progress .bar {
	display: inline-block;
	background: #fff;
	width: 40px; height: 40px;
	border-radius: 40px;
	border: 1px solid #d5d5da;
	text-align: center;
}
.step-progress .bar {
	position: relative;
	width: 48px;
	height: 6px;
	top: -33px;
	margin-left: -5px;
	margin-right: -5px;
	border-left: none;
	border-right: none;
	border-radius: 0;
}
.step-progress .circle .label {
	display: inline-block;
	width: 32px;
	height: 32px;
	line-height: 32px;
	border-radius: 32px;
	margin-top: 3px;
	color: #b5b5ba;
	font-size: 17px;
}
.step-progress .circle .title {
	color: #b5b5ba;
	font-size: 13px;
	line-height: 30px;
	margin-left: -5px;
}

/* Done / Active */
.step-progress .bar.done,
.step-progress .circle.done {
	background: #eee;
}
.step-progress .bar.active {
	background: linear-gradient(to right, #EEE 40%, #FFF 60%);
}
.step-progress .circle.done .label {
	color: #FFF;
	background: #c0c0c0;
	box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.step-progress .circle.done .title {
	color: #444;
}
.step-progress .circle.active .label {
	color: #FFF;
	background: #98d53d;
	box-shadow: inset 0 0 2px rgba(0,0,0,.2);
}
.step-progress .circle.active .title {
	color: #0c95be;
}
.step-progress .circle {
	cursor: pointer;
}
