html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-font-smoothing: antialiased;
	background: #f5fcff;
}
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
	font-weight: 400;
  color: #555;
}
.md-stepper-horizontal {
	display: table;
	width: 100%;
	margin: 0 auto;
}
.md-stepper-horizontal .md-step {
	display:table-cell;
	position:relative;
	padding:18px;
}
.md-stepper-horizontal .md-step:hover, .md-stepper-horizontal .md-step:active {}
.md-stepper-horizontal .md-step:active {
	border-radius: 15% / 75%;
}
.md-stepper-horizontal .md-step:first-child:active {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.md-stepper-horizontal .md-step:last-child:active {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.md-stepper-horizontal .md-step:hover .md-step-circle {
	background-color:#757575;
}
.md-stepper-horizontal .md-step:first-child .md-step-bar-left, .md-stepper-horizontal .md-step:last-child .md-step-bar-right {
	display:none;
}
.md-stepper-horizontal .md-step .md-step-circle {
	width: 67px;
	height: 67px;
	margin: 0 auto;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	color:#fff;
	border: 1px solid #b1b1b1;
}
.md-stepper-horizontal.green .md-step.active .md-step-circle {
	background-color:#00AE4D;
}
.md-stepper-horizontal.orange .md-step.active .md-step-circle {
	background-color: #fff;
	border: 1px solid #b1b1b1;
}
.md-stepper-horizontal .md-step.active .md-step-circle {
	background-color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.md-stepper-horizontal .md-step.done .md-step-circle:before {
	font-family:'FontAwesome';
	font-weight:100;
	content: "\f00c";
}
.md-stepper-horizontal .md-step.done .md-step-circle *, .md-stepper-horizontal .md-step.editable .md-step-circle * {
	display:none;
}
.md-stepper-horizontal .md-step.editable .md-step-circle {
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}
.md-stepper-horizontal .md-step.editable .md-step-circle:before {
	font-family:'FontAwesome';
	font-weight:100;
	content: "\f040";
}
.md-stepper-horizontal .md-step .md-step-title, .md-stepper-horizontal .md-step .md-step-optional {
	text-align: center;
}
.md-stepper-horizontal .md-step.active .md-step-title {
	color:rgba(0,0,0,.87);
	margin-top: 12px;
}
.md-stepper-horizontal .md-step.active.done .md-step-title, .md-stepper-horizontal .md-step.active.editable .md-step-title {}
.md-stepper-horizontal .md-step.active .md-step-optional {
	color:rgba(0,0,0,.54);
}
.md-stepper-horizontal .md-step .md-step-bar-left, .md-stepper-horizontal .md-step .md-step-bar-right {
	position:absolute;
	top: 58px;
	height:1px;
	border-top:1px solid #b1b1b1;
}
.md-stepper-horizontal .md-step .md-step-bar-right {
	right: 0;
	left: 60%;
	margin-left:30px;
}
.md-stepper-horizontal .md-step .md-step-bar-left {
	left: 0;
	right: 60%;
	margin-right:30px;
}
@media screen and (max-width: 425px) {
	.md-stepper-horizontal .md-step {
    display: initial;
	}
	.md-stepper-horizontal .md-step .md-step-bar-right {
		left: 65%;
	}
	.md-stepper-horizontal .md-step .md-step-bar-left {
		right: 65%;
	}
}