.stepper {
    display: flex;
    justify-content: space-between;
  }
  
  .step1 {
    padding: 10px;
    border: none;
    width: 100%;
    color: #686868;
    text-align: center;
    border-bottom: 2px solid #DBDFE2;
    border-left: 2px solid #DBDFE2;
  }
  
  .step1:first-child {
    border-left: 0px solid #DBDFE2;
  }
  
  .step1.active {
    color: #7F0045;
    border-bottom: 3px solid #7F0045;
  }
  
  .numberStep {
    font-size: 20px;
    font-weight: bold;
  }
  
  .titleSpep {
    font-size: 16px;
  }
  
  
  .nextStep {
    position: absolute;
    right: 10px;
  }
  
  .botonStep {
    margin-top: 10px;
    height: 35px;
    border-radius: 5px;
    border: none;
    background: #7F0045;
    color: white;
  }
  
  .botonStep:hover {
    background: #F37032;
  
    transition: all .2s ease-in-out;
  }
  
  .botonStep:disabled {
    opacity: 0.5;
    pointer-events: none;
  }
  
  