/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  color: #6C757D;
  opacity: 0.7;
}

#progressbar .active {
  opacity: 1.0;
  color: #144976;
}

#progressbar li {
  text-align: center;
  list-style-type: none;
  font-size: 12px;
  width: 20%;
  float: left;
  position: relative;
}

/*Icons in the ProgressBar*/
#progressbar #i1:before {
  font-family: FontAwesome;
  content: "1";
}

#progressbar #i2:before {
  font-family: FontAwesome;
  content: "2";
}

#progressbar #i3:before {
  font-family: FontAwesome;
  content: "3";
}

#progressbar #i4:before {
  font-family: FontAwesome;
  content: "4";
}

#progressbar #i5:before {
  font-family: FontAwesome;
  content: "5";
}

/*ProgressBar before any progress*/
#progressbar li:before {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 18px;
  background: #6C757D;
  color: white;
  opacity: 1;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

/*ProgressBar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  opacity: 0.5;
  background: #6C757D;
  color: white;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before,
#progressbar li.active:after {
  background:  #144976;
  opacity: 1;
  color:white;
}
