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

/* Steps */
.step {
  position: relative;
  min-height: 2.5em;
  color: #D9D9D9;
}
.step + .step {
  margin-top: .8em;
  margin-bottom: .8em
}
.step > div:first-child {
  position: static;
  height: 0;
}
.step > div:not(:first-child) {
  margin-left: 1.5em;
  padding-left: 1em;
}
.step.step-active {
  color: #337ab7 !important
}
.step.step-active .circle {
  background-color: #000;
  color: #fff;
}
.step.step-inactive {
  color: #ffffff !important
}
.step.step-inactive .circle {
  background-color: #0b5a9f;
  color: #fff;
}

/* Circle */
.circle {
  background: white;
  position: relative;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  border-radius: 100%;
  color: #000;
  text-align: center;
  box-shadow: 0 0 0 3px #ccc;
  z-index: 2;
	font-weight: bold;
}

/* 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: rgb(255, 255, 255) !important;
  z-index: 1;
  color: white
}
.circledone {
  background: #0b5a9f;
  position: relative;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  border-radius: 120%;
  color: white;
  text-align: center;
  box-shadow: 0 0 0 3px white;
  z-index: 2;
  padding-top: 1px;
  margin-right: 10px;

}

.circlelast {
  background: black;
  position: relative;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  border-radius: 120%;
  color: white;
  text-align: center;
  box-shadow: 0 0 0 3px white;
  z-index: 2;
  padding-top: 1px;
  margin-right: 10px;

}

.circledone:after {
  content: ' ';
  position:absolute;
  display: block;
  top: 0px;
  right: 50%;
  bottom: -10px;
  left: 50%;
  height: 100%;
  width: 1px;
  transform: scale(1, 2);
  transform-origin: 50% -100%;
  background-color: rgb(255, 255, 255) !important;
  z-index: 0;
  color: white;
  height: 25px;
}

.circlepass {
  background: #fff;
  position: relative;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7em;
  border-radius: 120%;
  color: black;
  text-align: center;
  box-shadow: 0 0 0 3px #ccc;
  z-index: 2;
  padding-top: 1px;
  margin-right: 10px;
}


.step:last-child .circle:after {
  display: none
}

/* Stepper Titles */
.title {
  line-height: 1.5em;
}
.caption {
  font-size: 0.8em;
}