.manchas {
  background-image: url("https://image.comunicacion.axa.es/lib/fe38157075640475731478/m/7/MANCHAS.png");
  background-position: center 525px;
  background-size: 100%;
  background-repeat: no-repeat;
}

#juego {
  position: relative;
  border-radius: 6px;
  border: 2px solid #E5E5E5;
  background-color: white;
  margin: auto;
  margin-top: 30px;
  width: 850px;
  height: 424px;
  padding: 15px;
  box-sizing: border-box;
  background-image: url("https://image.comunicacion.axa.es/lib/fe38157075640475731478/m/7/fondo_juego_desktop.png");
  background-position: center center;
  background-repeat: no-repeat;
  /* La imagen de fondo se reescala automáticamente con el cambio del ancho de ventana del navegador */
  background-size: cover;
}

#juego #fondo_juego_mobil {
  display: none;
}


#head_juego {
  color: var(--primary-blue);
  display: grid;
  grid-template-areas: "tiempo puntos";
  grid-template-columns: 50% 50%;
}

#head_juego #tiempo {
  grid-area: tiempo;
  padding: 10px;
}

#head_juego #puntos {
  grid-area: puntos;
  padding: 10px;
  text-align: right;
}



#juego #pregunta {
  position: absolute;
  z-index: 1;
  top: 55px;
  left: 530px;
  transform: translate(-50%, -50%) scale(1);
  text-align: center;
  color: white;
  border-radius: 4px;
  width: 225px;
  height: auto;
  letter-spacing: 1px;
  text-align: center;
}

#preguntas {
  position: absolute;
  z-index: 1;
  top: 240px;
  left: 295px;
  transform: translate(-50%, -50%) scale(1);
  width: 550px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  gap: 10px;
}



.modal_juego {
  position: absolute;
  z-index: 1;
  top: 50%;
  background: rgba(255, 255, 255, 95%);
  padding: 3rem 2rem;
  border: solid 2px #E5E5E5;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  min-width: 70%;
  min-height: 40%;
  color: #E5E5E5;
  border-radius: 4px;
  letter-spacing: 1px;
  /* display: none; */
}

.modal_juego hr{
  width: 50%;
  color: #e5e5e5;
  margin: auto;
}

.modal_final{
  width: 100%;
  height: 100%;
  padding: 10px;
  border: 0px;
}

.modal_juego h3 {
  font-size: 2em;
}

.modal_juego input {
  padding: var(--padding-2);
  border: 1px solid var(--primary-blue);
  border-radius: 6px;
  width: auto;
  min-width: 50%;
}


#acierto,
#fallo,
#final_juego_ok,
#final_juego_ko  {
  display: none;
}

#acierto {
  border-color: #668980;
}


#fallo {
  border-color: #FF1721;

}

#correguir {
  position: absolute;
  z-index: 1;
  top: 260px;
  left: 700px;
  transform: translate(-50%, -50%) scale(1);
  box-sizing: border-box;
  display: block;
  padding: 10px;
}

#outer-dropzone {
  height: 140px;
}

#inner-dropzone {
  height: 80px;
}

.dropzone {
  background-color: transparent;
  border: dotted 4px transparent;
  border-radius: 10px;
  margin: 10px auto 30px;
  padding: 10px;
  width: 250px;
  transition: background-color 0.3s;
}

.dropzone img {
  border-radius: 10px;
}

.drop-active {
  border-color: #FAD6DE;
}

.drop-target {
  background-color: #29e;
  border-color: #fff;
  border-style: solid;
}

.drag-drop {
  display: inline-block;
  max-width: 94px;
  padding: 6px;
  /* margin: 1rem 0 0 1rem; */
  color: #fff;
  background-color: #FAD6DE;
  border-radius: 6px;
  /*border: solid 2px #fff; */

  touch-action: none;
  transform: translate(0px, 0px);
  transition: background-color 0.3s;
  touch-action: none;
  user-select: none;
}

.drag-drop.can-drop {
  color: #000;
  background-color: #4e4;
}


@media (max-width: 992px) {
  .manchas {
    background-image: none;
    min-height: 0px;
    /* margin-top: 10px; */
  }

  #juego hr{
    display: none;
  }

  #juego {
    background-image: none;
    width: 100%;
    height: auto;
    padding: 0px;
    border: 0px;
  }

  #juego #fondo_juego_mobil {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  #head_juego {
    position: absolute;
    z-index: 1;
    top: 25%;
    left: 80%;
    transform: translate(-50%, -50%) scale(1);
    width: 38%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    gap: 6px;
    color: var(--primary-blue);
    text-align: right;
    border: 2px dotted var(--tosca);
    border-radius: 6px;
    font-size: 0.8em;
  }
  
  #head_juego #tiempo {
    padding: 5px;
  }
  
  #head_juego #puntos {
    padding: 5px;
    
  }
  
  #juego #pregunta {
    top: 5%;
    left: 50%;
    width: 85%;
    height: auto;
    font-size: 0.9em;
  }
  
  #preguntas {
    position: absolute;
    z-index: 1;
    top: 55%;
    left: 30%;
    transform: translate(-50%, -50%) scale(1);
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    gap: 6px;
  }


  .drag-drop {
    max-width: 40%;
    padding: 0px;
  }

  #correguir {
    top: 55%;
    left: 75%;
  }

  #correguir img{
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .dropzone {
    width: 50%;
  }

  .modal_juego {
    padding: 1rem;
    gap: 1rem;
    width: 100%;
    min-height: 60%;
  }
  
  .modal_juego h3 {
    font-size: 1.4em;
  }

  .modal_final{
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 0px;
    gap: 0rem;
    border: 2px solid #E5E5E5;
  }
}


