@font-face {
  font-family: 'Intro Regular Alt';
  src: url('../fonts/Intro-Regular-Alt.woff2') format('woff2'),
      url('../fonts/Intro-Regular-Alt.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
    height: 100%;
    margin: 0;
  }
  
  .wizard-container {
    display: flex;
    height: calc(100vh - 120px);
    padding: 20px;
  }

  .step-counter {
    position: absolute;
    left: 8rem;
    transform: translateX(-50%);
    font-size:2.5rem;
    color: #FF2C31;
    cursor: pointer;
    font-family: 'Intro Regular Alt';
  }
  
  
  
  .stepper-vertical div {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
   /*  transition: all 0.3s; */
    z-index: 1;
    
  }
  
  .stepper-vertical .active {
    background-color: #FF2C31;
    border: #fff 5px solid;
    width: 28px;
    height: 28px;
    color: #FF2C31;
  }
  
  .stepper-vertical::before {
    content: "";
    position: absolute;
    width: 8px;
    /* height: 100%; */
    background-color: #fff;
    left: 10px;
    top: 20px;
    bottom: 20px;
    z-index: 0;
  }
  .stepper-vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
    max-height: 100vh;
  }

  .step-indicator {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
  }

  .step-indicator.active {
  
  }
  .steps-container {
    flex-grow: 1;
    margin-left: 20px;
    overflow: hidden;
    
  }
  
  .steps-wrapper {
    position: relative;
    transition: transform 0.5s ease-in-out;
  }
  
  .step {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5rem;
}
  
  .step h2 {
    color: #344767;
    font-weight: 600;
  }
  
  .step .card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 850px;
  }
  
  .step .card p {
    color: #67748e;
  }
  
  .btn-nav {
    margin-top: 20px;
  }
  
  .btn.btn-primary {
    color: #000;
    text-align: center;
    border-radius: .75rem;
    margin-left: .25rem;
    margin-right: .25rem;
    padding: .45rem 1.5rem;
    font-weight: 600;
    transition: background-color .1s, box-shadow .1s, transform .1s;
    transform: translate(0, -6px);
    box-shadow: 0 6px #000;
    border: 3px solid #000;
  }
  
  .btn {

  }
  
  

  h3.titulo-pregunta {
    color: #000 !important;
  }

