/* CSS Document */



.smpl-step {
	margin-top: 40px;
}
.smpl-step {
	border-bottom: solid 1px #e0e0e0;
	padding: 0 0 10px 0;
}

.smpl-step > .smpl-step-step {
	padding: 0;
	position: relative;
}   

.smpl-step > .smpl-step-step .smpl-step-num {
	font-size: 17px;
	margin-top: -20px;
	margin-left: 47px;
}

.smpl-step > .smpl-step-step .smpl-step-info {
	font-size: 14px;
	padding-top: 27px;
}

.smpl-step > .smpl-step-step > .smpl-step-icon {
	position: absolute;
	width: 40px;
	height: 40px;
	display: block;
	background: #5CB85C;
	top: 40px;
	left: 50%;
	margin-top: -20px;
	margin-left: -15px;
	border-radius: 50%;
}

.smpl-step > .smpl-step-step > .progress {
	position: relative;
	border-radius: 0px;
	height: 8px;
	box-shadow: none;
	margin-top: 37px;
}

.smpl-step > .smpl-step-step > .progress > .progress-bar {
   width: 0px;
   box-shadow: none;
   background: #428BCA;
}

.smpl-step > .smpl-step-step.complete > .progress > .progress-bar {
	width: 100%;
}

.smpl-step > .smpl-step-step.active > .progress > .progress-bar {
	width: 50%;
}

.smpl-step > .smpl-step-step:first-child.active > .progress > .progress-bar {
	width: 0%;
}

.smpl-step > .smpl-step-step:last-child.active > .progress > .progress-bar {
	width: 100%;
}

.smpl-step > .smpl-step-step.disabled > .smpl-step-icon {
	background-color: #f5f5f5;
}

.smpl-step > .smpl-step-step.disabled > .smpl-step-icon:after {
	opacity: 0;
}

.smpl-step > .smpl-step-step:first-child > .progress {
	left: 50%;
	width: 50%;
}

.smpl-step > .smpl-step-step:last-child > .progress {
	width: 50%;
}

.smpl-step > .smpl-step-step.disabled a.smpl-step-icon {
	pointer-events: none;
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
  -webkit-transition: width .6s ease;
  -o-transition: width .6s ease;
  transition: width .6s ease;
}
@media screen and (max-width: 555px) {
	.smpl-step{
		min-width : auto !important;
	}
	.smpl-step > .smpl-step-step .smpl-step-num {
		font-size: 10px;
		margin-top: -20px;
		margin-left: 10px;
	}
	.smpl-step > .smpl-step-step > .smpl-step-icon {
		position: absolute;
		width: 20px;
		height: 20px;
	}
	.smpl-step > .smpl-step-step > .progress {
		height: 2px;
	}
	.smpl-step > .smpl-step-step > .progress {
		margin-top: 41px;
	}
	.smpl-step-icon > .fa-check{
		font-size: 11px !important;
	}
}