.stepper-wrapper {
  font-family: Arial;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.stepper-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;

  @media (max-width: 768px) {
    font-size: 12px;
  }
}

.stepper-item::before {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: -50%;
  z-index: 2;
}

.stepper-item::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #ccc;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 2;
}

.stepper-item .step-counter {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ccc;
  margin-bottom: 6px;
  color:white;
}

.step-counter a:link, .step-counter a:visited, .step-counter a:hover, .step-counter a:active{
  color: #FFFFFF;
  text-decoration: none;
}

.step-name a:link, .step-name a:visited, .step-name a:hover, .step-name a:active{
  color: black;
  text-decoration: none;
}

/*.stepper-item.active {
  font-weight: bold;
  
}*/

.stepper-item.completed {
  font-weight: bold;
  
}

.stepper-item.active .step-counter {
  background-color: #4bb543;
  
}

.stepper-item.completed .step-counter {
  background-color: green;
}

.stepper-item.completed::after {
  position: absolute;
  content: "";
  border-bottom: 2px solid #4bb543;
  width: 100%;
  top: 20px;
  left: 50%;
  z-index: 3;
}

.stepper-item:first-child::before {
  content: none;
}
.stepper-item:last-child::after {
  content: none;
}

.step-name{
  text-align: center;
  font-size: 14px;
  color:rgba(2, 0, 0, 0.61);
}