  .piel-quiz {
    padding: 1rem;
    display: none;
  }
  .piel-quiz *{
    box-sizing: border-box;
  }
  
  .question-grid{
    display: grid;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
  }

  .piel-quiz .question-title {
    padding: 1rem 0;
    font-weight: bold;
    font-size: 4.3rem;
    text-align: center;
    grid-row: span 3;
    margin-bottom: 1rem;
  }
  .piel-quiz .question-option {
    width: 500px;
    max-width: 90%;
    padding: 1.4rem 2rem;
    margin: 0.3rem;
    font-size: 1.5rem;
    border: solid 1px rgba(100, 100, 130, 0.5);
    cursor: pointer;
    text-align: center;
  }

  .piel-quiz .question-option input{
    cursor: pointer;
    pointer-events: none;
    height: 1rem;
    width: 1rem;
  }
  
  .piel-quiz .question-option:hover {
    background-color: rgba(100, 100, 130, 0.1);
  }
  
  .qshow {
    display: grid;
  }
  .qhide {
    display: none;
  }
  
  .steps{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    align-items: center;
    margin: 1rem 0;
  }
  
  .point{
    height: 1rem;
    background-color: rgb(236, 236, 236);
  }
  .steps-1.active{
    background-color: #baa5d0;
  }
  .steps-2.active{
    background-color: #ff86b4;
  }
  .steps-3.active{
    background-color: #4dc0a1;
  }
  .steps-4.active{
    background-color: #ffc03b;
  }
  .steps-5.active{
    background-color: #383838;
  }
  .steps-6.active{
    background-color: #ebebeb;
  }


 a.quiz-finalizar {
    background: #ffc03b !important;
    width: 250px;
    height: 50px;
    line-height: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border: 0;
    border-radius: 0;
    text-align: center;
    color: #fff;
    padding: 0;
    transition: all 0.1s;
  }