.StepsList {
  position: relative;
}
.StepsList__item {
  position: relative;
  display: block;
  padding-left: 48px;
  padding-bottom: 12px;
}
.StepsList__item:before,
.StepsList__item:after {
  content: "";
  display: block;
  position: absolute;
}
.StepsList__item:before {
  z-index: 2;
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
          border-radius: 50%;
  border: 1px solid #3ba6d2;
  left: 0;
  top: 0;
  background: #fff;
  -webkit-transition: background ease 0.25s, -webkit-box-shadow ease 0.5s;
  transition: background ease 0.25s, -webkit-box-shadow ease 0.5s;
  -o-transition: background ease 0.25s, box-shadow ease 0.5s;
  -moz-transition: background ease 0.25s, box-shadow ease 0.5s, -moz-box-shadow ease 0.5s;
  transition: background ease 0.25s, box-shadow ease 0.5s;
  transition: background ease 0.25s, box-shadow ease 0.5s, -webkit-box-shadow ease 0.5s, -moz-box-shadow ease 0.5s;
  -webkit-box-shadow: 0 0 0 #3ba6d2;
     -moz-box-shadow: 0 0 0 #3ba6d2;
          box-shadow: 0 0 0 #3ba6d2;
}
.StepsList__item:after {
  z-index: 1;
  border-left: 1px solid #d7d7d7;
  top: 0%;
  bottom: 0%;
  left: 9px;
}
.StepsList__item__title {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  -webkit-transition: color ease 0.25s;
  -o-transition: color ease 0.25s;
  -moz-transition: color ease 0.25s;
  transition: color ease 0.25s;
}
.StepsList__item__content {
  font-size: 16px;
}
.StepsList__item:nth-last-child(1):after {
  display: none;
}
.StepsList__item.__active:before {
  background: #3ba6d2;
  -webkit-box-shadow: 0 0 100px rgba(59, 166, 210, 0);
     -moz-box-shadow: 0 0 100px rgba(59, 166, 210, 0);
          box-shadow: 0 0 100px rgba(59, 166, 210, 0);
  border-color: #fff;
}
.StepsList__item.__active .StepsList__item__title {
  color: #3ba6d2;
}
