﻿@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,600);

#steps {
  width: 95%;
  margin: 30px auto;
}

.step {
  width: 40px;
  height: 40px;
  background-color: white;
  display: inline-block;
  border: 4px solid;
  /*border-color: transparent;*/
  border-color: grey;
  border-radius: 50%;
  color: #cdd0da;
  font-weight: 600;
  text-align: center;
  line-height: 28px;
}

.step:first-child {
  line-height: 31px;
}

.step:nth-child(n+2) {
  margin: 0 0 0 50px;
  transform: translate(0, -4px);
}

.step:nth-child(n+2):before {
  width: 30px;
  height: 3px;
  display: block;
  /*background-color: white;*/
  background-color: grey;
  transform: translate(-50px, 18px);
  content: '';
}

.step:after {
  width: 90px;
  display: block;
  transform: translate(-27px, 3px);
  color: #818698;
  content: attr(data-desc);
  font-weight: 400;
  font-size: 13px;
}

.step:first-child:after {
  transform: translate(-29px, -1px);
}

.step.active {
  border-color: #ff6801;
  color: #ff6801;
}

.step.active:before {
  background: linear-gradient(to right, #ffd000 0%, #ff6801 100%);
}

.step.active:after {
  color: #ff6801;
}

.step.done {
  background-color: #ffd000;
  border-color: #ffd000;
  color: white;
}

.step.done:before {
  background-color: #ffd000;
}
