/* GENERAL 
================================*/

.centrado{
  padding: 20px 5% 20px 5%;
  justify-content: center;
  align-items: center;
}


/* Quiz section
==========================*/

.class-quiz{
  padding: 60px 5% 20px 5%
}

#quiz-section{
    font-family: "montserrat-bold", sans-serif;
    color: #151515;
    font-style: normal;
    text-rendering: optimizeLegibility;
    margin-bottom: 2.1rem;
    line-height: 1.2;
}

#previous{
    display: none;
}

/* Para mobile*/
@media screen and (max-width: 700px) {
  .question{
    font-size: 2vh;
    margin-bottom: 10px;
    color: white;
  }
}

/* Para PC */
@media screen and (min-width: 701px) {
  .question{
    font-size: 5vh;
    margin-bottom: 10px;
    color: white;
  }
  .answers label{
    font-size: 16px;
  }

}


  .answers {
    text-align: left;
    display: inline-block;
    color: rgb(230, 230, 230);
  }
  .answers label{
    display: block;
    margin-bottom: 5px;
    color: white;
  }
  button{
    font-family: 'Work Sans', sans-serif;
      font-size: 16px;
      background-color: #279;
      color: #fff;
      border: 20px;
      border-radius: 3px;
      cursor: pointer;
      margin-bottom: 20px;
      display: block;
  }
  button:hover{
      background-color: #38a;
  }
  
  
  #results{
      color:black;
      font-size: 30px;
      font-family:  "montserrat-bold", sans-serif; 
  }
  
  
  .slide{
   /* position: absolute;
    left: 0px;
    top: 0px;*/
    width: 100%;
    max-height: 200px;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
    display: none;
  }
  .active-slide{
    opacity: 1;
    z-index: 2;
    display: block;
  }
  .quiz-container{
    position: relative;
    height: 240px;
    margin-top: 40px;
    margin-bottom: 20px;
  }


  /* SECTION RESULTADOS 
  =============================*/

  .resultados-section{
      background-color: white;
      padding: 40px;
      line-height: normal;
  }

  #link-rf{
    padding-top: 10px;
    display: none;
  }


  .class-question{
    padding-top: 50px;
    display: block;
    position: relative;

  }