/* -------------------------------------------------------------------------
  VERTICAL STEPPERS
-------------------------------------------------------------------------- */

/* Steps */
.step {
  position: relative;
  min-height: 1em;
  color: gray;
}
.step + .step {
  margin-top: 1.5em
}
.step > div.left{text-align: left; margin-left: 55%;}
.step > div.right{text-align:right; margin-right: 55%;}
.step > div:first-child {
  position: static;
  height: 0;
}
/*.step > div:not(:first-child) {
  margin-left: 2.5em;
  padding-left: 1.5em;
}*/
.step.step-active {
  color: #4285f4
}
.step.step-active .circle {
  background-color: #f58220;
	float: none; margin: 0 auto;
}

/* Circle */
.circle {
	background: gray;
	position: relative;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	border-radius: 100%;
	color: #fff;
	text-align: center;
	box-shadow: 0 0 0 3px #fff;
}

/* Vertical Line */
.circle:after {
  content: ' ';
  position: absolute;
  display: block;
  top: 1px;
  right: 50%;
  bottom: 1px;
  left: 50%;
  height: 100%;
  width: 1px;
  transform: scale(1, 2);
  transform-origin: 50% -100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: -1;
}
.step:last-child .circle:after {
  display: none
}

/* Stepper Titles */
.title {
  line-height: 1.5em;
  font-weight: bold;
color: #252525;
	font-size: 22px;
}
.caption {
  font-size: 0.8em;
}

@media (max-width:767px) {
.step > div.left, .step > div.right{text-align: left; margin: 0;}
.step > div:not(:first-child) {
margin-left: 2.5em;
padding-left: 1.5em;
}
.step.step-active .circle {
float: left;
}
}