@import url("color.css");

.pngboxshadow {
  filter: drop-shadow(0px -1px 2px var(--color--blanco));
}

/*WAVES*/
.header {
  position: relative;
  text-align: center;
  background: linear-gradient(60deg, rgb(255, 255, 255) 0%, var(--color--primario));
  color: white;
}

.inner-header {
  height: 65vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  min-height: 100px;
  max-height: 150px;
}

/* Animation */
.parallax>use {
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }

  100% {
    transform: translate3d(85px, 0, 0);
  }
}

/* MODULO USER PERFIL */
.userPerfil {
  padding: 0px 300px
}

@media (max-width: 768px) {
  .userPerfil {
    padding: 0px 0px 0px 0px;
  }
}

/* QUIZ */
.circle-number {
  display: inline-block;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #ccc;
  text-align: center;
  line-height: 25px;
  margin-right: 10px;
}



.form-check-horizontal .form-check label {
  display: block;
  margin: 5px 0px 5px 5px;
  padding: 0px 0px 0px 5px;
  border: 1px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1em;
}

.form-check-input {
  margin-top: 5px;
}

.form-check-horizontal .form-check input[type="radio"]:checked+label,
.form-check-horizontal .form-check label:hover {
  border-color: #646464;
  background-color: #525252;
  color: #fff;
}



/* REPORTE DE PREGUNTA */

/* HOVER */
.reporte_pregunta:hover {
  color: #1b948a;
  /* mostrar texto al pasar el mouse    "REPORTA PREGUNTA"     */
  cursor: pointer;

}

.reporte_pregunta {
  position: relative;
}

.reporte_pregunta::after {
  content: "REPORTA PREGUNTA";
  color: #ff0022;
  font-weight: bold;
  position: absolute;
  font-size: 10px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  padding: 5px 10px;
  border-radius: 5px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.3s;
}

.reporte_pregunta:hover::after {
  visibility: visible;
  opacity: 1;
}

/* PAGINACION DE LA PREGUNTAS */
.paginacion_pregunta {
  display: flex;
  justify-content: center;
  align-items: center;
  /* BOLD */
  font-weight: bold;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  font-size: 0.8em;
}

.pagination li {
  width: 10%;
  text-align: center;
}

/* ESTILOS PARA LAS OPCIONES */
/* PREGUNTAS Y OPCIONES  */

.contenedor_cronometro {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.contenedor_preguntas {
  margin: 1.5rem !important;
}

.contenedor_opciones {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}



@media (max-width: 768px) {
  .contenedor_cronometro {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
    margin-bottom: 0.2rem !important;
  }

  .contenedor_opciones {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
  }

  .contenedor_preguntas {
    margin: 0rem !important;
  }

  .paginacion_pregunta {
    margin-top: 0.4rem !important;
  }
}

/* RULETA */
.img_ruleta {
  height: 19rem;
}

@media (max-width: 768px) {
  .img_ruleta {
    /* ajuste a la pantalla  */
    width: 100%;
    height: 100%;
  }
}



/* Tu archivo de estilos CSS */

.ultimo-registro {
  background-color: #c8f4c8;
  /* un brillo que avande de un lado a otro */
  animation: brillo 1s ease-in-out infinite alternate;

}

@keyframes brillo {
  from {
    background-color: #c8f4c8;
  }

  to {
    background-color: #50eb50da;
  }
}

/* BANCO DINAMICO */


.form_check_horizontal .form-check label {
  display: block;
  margin: 5px 0px 5px 5px;
  padding: 1px 0px 1px 5px;
  /* border: 1px solid transparent; */
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.5em;
}

.form_check_horizontal .form-check label:hover {
  border-color: #8f8e8e;
  background-color: #777777;
  color: #fff;
}

/* Clase para cambiar el color del radio button cuando es la respuesta correcta */
.form_check_horizontal .form-check .input_correct:checked+label {
  background-color: green;
  color: #fff;
}

.form_check_horizontal .form-check .input_incorrect:checked+label {
  background-color: red;
  color: #fff;
}

.hidden-radio {
  display: none;
}

/* JUEGOS */


/* Cambia el color de fondo del contenido del modal  container: 'fondoAlerta',
                        popup: 'fondoAlerta', */
.fondoAlerta {
  background-color: #000000 !important;
}

.fondoAlerta {
  background-color: #000000 !important;
  border: 1px solid #000000;
  border-radius: 10px;
  color: #ffffff;
}

/* TAMAÑO DE ESTRELLAS */
.width_start {
  width: 70px;
  height: 70px;
  font-size: 30px;
}