#fsc_stepDisplay {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
#fsc_stepDisplay #fsc_layer1 {
  position: absolute;
  top: 15px;
  left: 50px;
  height: 1px;
  width: calc(100% - 100px);
  background: #3B3B3B;
}
#fsc_stepDisplay #fsc_layer2 {
  display: flex;
  justify-content: space-between;
}
#fsc_stepDisplay .fsc_step {
  width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#fsc_stepDisplay #fsc_layer2 .fsc_stepNumber {
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 1px solid #3B3B3B;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}
#fsc_stepDisplay #fsc_layer2 .fsc_stepNumber[class*='current'] {
  background: #13B582;
  border-color: #13B582;
  color: white;
}
#fsc_stepDisplay #fsc_layer2 .fsc_stepDescription {
  margin-top: 5px;
  text-align: center;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  #fsc_stepDisplay #fsc_layer1 {
    top: 25px;
    left: 100px;
    width: calc(100% - 200px);
  }
  #fsc_stepDisplay .fsc_step {
    width: 200px;
  }
  #fsc_stepDisplay #fsc_layer2 .fsc_stepNumber {
    width: 50px;
    height: 50px;
  }
  #fsc_stepDisplay #fsc_layer2 .fsc_stepDescription {
    font-size: 14px;
  }
}