@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');
:root{
  --primary-color: #99cd73;
  --secondary-color:#0096af;
  --alternative-color:#f2dbbe;
  --violet-color:#9d63a9;
  --pink-color:#e9599a;
  --yellow-color:#f8e915;
  --green-light-color:#c2d94c;
  --orange-color:#faa61b;
  --blue-light-color:#12c0df;
  --grey-color:#c7c2bd;
  --light-color:#c6b09d;
  --dark-color:#9c7655;
  --green-color:#7ea55d;
  --red-color:#d14f64;
  --white-color:#f6f6f6;
  --success-color:#10aa8d;
  --success-color-dark:#0c937a;
  --success-color-ultra-dark:#106b5a;
  --dark-blue:#203d5a;
}

*{
  margin: 0;
  padding: 0;
}

body{
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    font-family: 'Dosis', sans-serif;
}
h1, h3, h4, h5, h6{
  font-weight: 400;
  text-align: center;
}
h2.title{
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  text-align: center;
}
.text-white{
  color: #fff!important;
}
.text-bold{
  font-weight: 600;
}
.text-uppercase{
  text-transform: uppercase;
}
.bg-primary, .bg-text, .bg-text-white{
  background-color: var(--primary-color);
  background-image: url(../assets/iconos/textura.png);
  background-size: cover;
  background-position: center bottom;
}
.bg-text{
  background-color: rgba(255,255,255,0.5);
}
.bg-text-white{
  background-color: rgba(255,255,255,0.9);
}
.rounded{
  border-radius: 1em;
}
.border-bg-secondary{
  border: 3px solid var(--dark-blue);
}
.p-2{
  padding: 1em;
}
.p-1{
  padding: 0.5em;
  box-sizing: border-box;
}
.pleg{
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 10;
  transition: 1s;
  filter: brightness(0);
  cursor: pointer;
}
.des{
  transform: rotate(180deg);
}
.type-card .relative h4 {
    cursor: pointer;
}

canvas{
  width: 100% !important;
}
.header-home{
  width: 100%;
  display: flex;
  gap:20px;
  justify-content:center;
  align-items: center;
  padding: 20px;
}

.container{
  display: block;
  height: 100vh;
  position: fixed;
  top: 0;
  background: transparent;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  pointer-events: auto;
}
.pantalla-inicio{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 245, 245, 0.5);
  backdrop-filter: blur(4px);
  position: absolute;
  top: 0;
}
.image-container{
  /* display: block; */
  height: 100vh;
  position: fixed;
  top: 0;
  background: transparent;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  pointer-events: auto;
}
#title-espacio h2{
  position: absolute;
  z-index: 1000;
  background-color: var(--primary-color);
  padding: 0.2em 0.7em 0.2em 0.7em;
  border-radius: 0 20px 20px 0;
  top:20px;
  color: var(--secondary-color);
  font-size: 1em;
  font-weight: 500;
}
.p-relative{
  position: relative;
}
.containerActividad{
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.contenedorVideo{
  width: 100%;
  background: black;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 4;
}

.containerVideo{
    overflow: hidden;
    position: absolute;
    height: 90vh;
    
  }

.containerVideo video{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.etiqueta-reaccion{
  display: flex;
  position: relative;
  background-color: aliceblue;
  bottom: 100px;
  flex-direction: column;
}

.d-none{
    display: none !important;
}
.collapse{
  overflow: hidden;
  max-height: 1000px;
  transition: max-height 0.5s ease;
}
.info-collapse.collapse {
  max-height: 0;
}
.preguntas{
    display: flex;
    justify-content: center;
    align-items: center;
}

.preguntas form, .contAct, .container-body{
      margin: 1em;
      padding: 1em;
      border-radius: 1em;
      text-align: center;
}
.contAct{
  border-radius: 10px;
  padding: 1em;
  box-sizing: border-box;
  text-align: center;
}
.contAct h3.title{
  color: white;
  font-size: 1.1em;
}

.preguntas h3{
    margin-bottom: 2em;
}

.preguntas form p{
    margin: 1em 0em;
}

.respuesta{
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    margin: 0 15px 20px 15px;

}
.checkboxes .respuestas{
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      max-height: 60%;
}

.preguntas form.checkboxes{
    max-height: 45%;
}

.pdf{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    background-color: black;
}

.pdf iframe{
    width: 80%;
    height: 80%;

}

.pdf button{
    width: 30%;
    margin-top: 10px;
    padding: 10px;
}

.d-block{
  display: block;
  width: 100%;
}
.hotspot{
  display: flex;
  justify-content: center;
  padding: 2em;
  border-radius: 0.5em;
  max-width: 60%;
  background-color: var(--primary-color);
  background-image: url(../assets/iconos/textura.png);
  background-size: cover;
  background-position: center bottom;
  border: 4px solid #c3e1a2;
  backdrop-filter: blur(10px);
  text-align: center;
  margin: auto;
}

.hotspot-imagen{
  display: flex;
  max-height:350px;
  border-radius: 10px;
}
.img-hotspot{
  max-width: 280px;
  margin:0.5em 0;
}
.img-pan{
  max-width: 100%;
  margin:0.5em 0;
  opacity: 1;
  transition: 0.5s;
  transform: scale(1);
  cursor: pointer;
}
.img-pan:hover{
  opacity: 0.7;
  transform: scale(1.05);
}
.d-flex{
  display: flex;
  justify-content: space-between;
}
.hotspot-cross{
  display: flex;
}

/* Sortable */
#CuestJugo{
  margin: 2em;
  padding: 4em;
  background : radial-gradient(50% 50%, rgba(199, 194, 189, 1) 0%, rgba(198, 176, 157, 1) 100%);
  border-radius: 20px;
  max-width: 70%;
  position: relative;
}
.respuestaSortable{
  display: block;
  padding: 5px;
  width: 22%;
  cursor: pointer;
}
.respuestaSortable img{
  max-width: 80%;
  height: auto;
  border-radius: 10px;
}
.inactivo img{
  opacity: 0.5;
  filter: grayscale(100%);
}
.columnasSortable{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap:10px;
}

.respuestasSortable{
  display: flex;
      flex-wrap: wrap;
      align-content: center;
      justify-content: space-around;
      align-items: center;
}
.img-tabla{
  max-width: 100%;
  height: auto;
  border-radius: 10px;

}
.respuestasSortable .item{
  max-width: 20%;
}
.respuestasSortable .item, .zonaRTA .item, .lista .item{
  margin:10px;
  padding: 10px;
  background-color: var(--white-color);
  border-radius: 10px;
  transition: 0.3s;
  background-image: url(../assets/03_iconos/1x/iconos-mover-ver02.png);
  background-repeat: no-repeat;
  background-position: 10px center;
  padding-left: 35px;
  cursor: pointer;
}
.respuestasSortable .item:hover{
  cursor:pointer;
  background-color: var(--dark-color);
  background-image: url(../assets/03_iconos/1x/iconos-mover-ver02-i.png);
  color: #fff;
}
.zonaRTA{
  display: flex;
  min-height: 70px;
  border: 2px solid, var(--dark-color);
  border-radius: 15px;
  margin-top: 10px;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-evenly;
}
.image-relative{
  position: relative;
  max-width: 80%;
  margin: auto;
}
.image-relative img{
  width: 100%;
  height: auto;
}
.image-container svg, .highlight-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: 'auto';
}
.highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Ensure the highlight svg does not interfere with clicks */
}

.highlight polygon {
  fill: none;
  stroke: red;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px red);
  stroke-dasharray: 5, 5; /* Makes the stroke dashed for a more curved appearance */
}

/* Estilos para el SVG */
.highlight-svg path {
  stroke-width: 5; /* Aumentar el grosor del trazo */
  filter: drop-shadow(0 0 5px #84ea42); /* Aplicar el efecto de glow */
}
.highlight-svg path.sel{
  stroke-width: 2;
  filter: drop-shadow(0 0 5px #f5faf2); /* Aplicar el efecto de glow */
}
#consigna{
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1em;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
button{
  font-family: 'Dosis',sans-serif;
}

#contador, .btn-espacio,.count-circle{
  z-index: 1000;
  display: flex;
  position: absolute;
  right: 10px;
  top:10px;
  height: 60px;
  width: 60px!important;
  border-radius: 50%;
  background: var(--success-color);
  padding: 9px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: fit-content;
  box-sizing: border-box;
  font-weight: 600;
  color:var(--white-color);
}
.count-circle{
  position: static;
  margin: auto;
  margin-top: 30px;
}
#contador span{
  margin: 0 2px;
}
.btn-espacio{
  top:10px;
  right: 100px;
  width: 60px;
}
.btn-espacio:hover{
  cursor: pointer;
}
.video-laboratorio.flex{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);

}
.video-laboratorio video{
  width: 60% !important;
  height: auto;
}
.respuestas.imagenes {
  display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      align-content: center;
      gap: 10px;
}
.respuestas.imagenes .respuesta{
  display: flex;
  flex-direction: column;
}
.respuesta img{
  max-height: 70px;
  opacity: 0.7;
  border:2px solid #00b3b6;
  padding: 0.2em;
  padding-right: 0.5em;
}
.respuesta img:hover{
  cursor: pointer;
}
.respuesta img.selected{
  opacity: 1;
  background-color: #00597c54;
  border-radius: 0.5em;
  border:2px solid #fff;
}
.enviado .respuesta.correcta img.selected{
  background-image: url('../assets/03_iconos/1x/icono-correcto02.png');
  background-repeat: no-repeat;
  background-position: 98% 90%;
}
.enviado .respuesta.incorrecta img.selected{
  background-image: url('../assets/03_iconos/1x/icono-incorrecto.png');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 98% 90%;
}
.listo{
  border: 5px solid var(--primary-color);
}
.selector-container{
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.selector-container img{
  max-width: 200px;
}
.soluciones-reacciones{
  width: 90%;
}
.soluciones-reacciones img{
  border-radius: 0.5em;
}
.soluciones-reacciones h4{
  color: var(--secondary-color);
  background : radial-gradient(50% 50%, rgba(199, 194, 189, 1) 0%, rgba(198, 176, 157, 1) 100%);
  border-radius: 0.3em;
  display: inline-block;
  padding: 0.3em 0.5em;
  position: relative;
  top: -20px;
  box-shadow: 1px 1px rgba(0, 0, 0, 0.3);
}
.soluciones-reacciones img{
  max-width: 350px;
}
.soluciones-reacciones img:hover{
  cursor: pointer;
  opacity: 0.8;
}
.btn-container{
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: center;
  gap: 25px;
}


a.close{
  cursor: pointer;
}
a.close:hover img{
  transform: scale(0.9);
}
a.close img{
  transition: 0.2s;

}
.btn.btn-primary{
  background-color: var(--secondary-color);
  color: var(--white-color);
  border: none;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
}
.btn.btn-secondary{
  background-color: var(--primary-color);
  border: none;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
}
.panolens-infospot{
  background-color: var(--secondary-color);
  padding: 0.3em 0.5em;
  color: var(--light-color);
  border-radius: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.8em;
}
input[type="checkbox"]{
  margin-right: 10px;
}
.preguntas form{
  position: relative;
}
.close{
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 25px;
  z-index: 100;
}
.btn-volver{
  width: 50px;
  height: 50px;
  position: absolute;
  background:url(../assets/iconos/1x/iconos-volver.png);
  background-size: cover;
  border: 0;
  top: 90vh;
  cursor: pointer;
  left: 15px;
}
.btn-primary.pan{
  font-weight: 600;
  transition: 0.5s;
}
.btn.btn-secondary.verify,.btn.btn-primary.next, .btn.btn-primary.confirm, .btn.btn-primary.verify,.btn.btn-primary.close-btn,.btn.btn-primary.back {
  background-image: url(../assets/iconos/1x/iconos-next.png);
  background-repeat: no-repeat;
  background-position: 85% center;
  padding-right: 50px;
  transition: 0.5s;
  font-weight: 600;
}
.btn-primary.pan:hover{
  font-weight: 600;
  transition: 0.5s;
  background-color: var(--blue-light-color);
}
#consigna .hotspot .btn.btn-primary.next{
  padding-right: 50px;
  background-image: url(../assets/iconos/1x/iconos-next.png);
  font-weight: 600;
  background-color: var(--orange-color);
  background-size: 15px;
}
#consigna .btn.btn-primary.next.selected{
  background-color: var(--secondary-color);
  color: var(--grey-color);
  background-image: url(../assets/iconos/1x/iconos-cancelar.png);
}
.contAct.success{
  text-align: center;
}
.btn.btn-primary.confirm{
  padding-right: 50px;
  background-image: url(../assets/iconos/1x/icono-check.png);
}
.avanzar .btn.btn-primary.confirm, .avanzar .btn.btn-primary.next, #btn-consigna{
  padding-right: 50px;
  background-image: url(../assets/iconos/1x/iconos-next04.png)!important;
  color: var(--success-color);
  background-color: #fff;
  background-size: 10px;
  box-shadow: 2px 2px rgba(0,0,0,0.1);
}
.btn.btn-primary.close-btn{
  padding-right: 50px;
  background-image: url(../assets/03_iconos/1x/icono-cerrar-azul_1.png);
}
.btn.btn-secondary.verify:hover,.btn.btn-primary.next:hover,.btn.btn-primary.confirm:hover,.btn.btn-primary.verify:hover,.btn.btn-primary.close-btn:hover {
  background-position: 90% center;
  background-color: var(--blue-light-color);
}
.avanzar .btn.btn-primary.confirm:hover, .avanzar .btn.btn-primary.next:hover, #btn-consigna:hover{
  background-color: var(--success-color-dark);
  background-image: url(../assets/03_iconos/1x/iconos-next.png)!important;
  color: #fff;
}
.btn.btn-secondary.verify{
  padding-right: 50px;
  /*background-image: url(../assets/iconos/1x/icono-check.png);*/
}
.btn.btn-primary.back{
  padding-right: 15px;
  padding-left: 50px;
  background-position: 20px center;
  background-image: url(../assets/03_iconos/1x/iconos-back.png);
}
.btn.btn-primary.back:hover{
  background-position: 10px center;
}
.error{
  background: var(--red-color);
  border-radius: 0.5em;
  padding: 0.2em 0.5em;
  color: white;
  display: inline-block;
  margin-bottom: 10px;
}
.text-center{
  text-align: center;
}
.mt-2{
  margin-top: 1em;
}
.mt-1{
  margin-top: 0.5em;
}
.mb-2{
  margin-bottom: 1em;
}
.mb-1{
  margin-bottom: 0.5em;
}
.mr-2{
  margin-right: 1em;
}
.felicitaciones{
  position: absolute;
  top:75vh;
  text-align: center;
  width: 100%;
}
.felicitaciones#btn-fin{
  top: 94vh;
  z-index: 2;
}
.felicitaciones.fin-renovar{
  top: 84vh;
}
.felicitaciones.fin-renovar h2{
  font-size: 0.95em;
}
.felicitaciones.fin-renovar .p-2{
  padding: 0.6em;
}
.felicitacionesD{
  position: absolute;
  text-align: center;
  width: 100%;
}
.container-middle{
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
table{
    margin: 1em auto;
    background: var(--alternative-color);
}
td{
  padding: 0.3em;
}
th{
    padding: 0.3em;
    background: var(--secondary-color);
}
.pantalla-cierre{
  position: absolute;
  text-align: center;
  width: 100%;
  backdrop-filter: blur(10px);
  height: 100vh;
  background: rgba(255,255,255,0.7);
  z-index: 1;
}
.pantalla-cierre.bg-30{
  backdrop-filter: blur(1px);
  background: rgba(255,255,255,0.1);
}
.pantalla-cierre.bg-50{
  backdrop-filter: blur(1px);
  background: rgba(255,255,255,0.4);
}
.relative{
  position: relative;
}
.section-container{
  background : radial-gradient(50% 50%, rgba(199, 194, 189, 1) 0%, rgba(198, 176, 157, 1) 100%);
  padding: 1.5em;
  border-radius: 0.5em;
  opacity: 1;
  transition: 0.3s;
}
.section-container:hover{
  cursor: pointer;
  opacity: 0.9;
}
.section-container h3{
  font-weight: bold;
  position: absolute;
  left: 28%;
  background: radial-gradient(50% 50%, rgba(195, 230, 228, 1) 0%, rgba(119, 203, 196, 1) 100%);
  padding: 0.3em 0.5em;
  border-radius: 0.5em;
  color: var(--secondary-color);
  box-sizing: border-box;
}
#pantallaCaminos .section-container h3 {
  width: 80%;
  left: 10%;
}
.section-container img{
  max-width: 300px;
}
input[type="radio"]{
  margin-right: 7px;
}
button:disabled,
button[disabled]{
  opacity: 0.4;
}
.logos{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin-bottom: 1em;
}
.logos img:nth-child(1){
  width: 200px;
}
.logos img:nth-child(2){
  width: 150px;
  margin-top: 3px;
}
.inicio{
  text-align: center;
}
.inicio h1{
  background: var(--primary-color);
  padding: 0.5em;
  display: inline-block;
  border-radius: 0.5em;
  margin-bottom: 0.3em;
  font-size: 1.4em;
  font-weight: 600;
}
.inicio h3{
  font-size: 1.5em;
}
.contenido{
  max-width: 90%;
  margin: auto;
  font-size: 1em;
}
.inicio .contenido{
  font-size: 1.2em;
}
#btn-inicio, #btn-bienvenida {
  font-size: 1em;
  padding-right: 50px;
  margin-top: 1em;
}
.img-fluid{
  max-width: 100%;
}
#final{
  text-align: center;
  height: 100vh;
  position: absolute;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.mt-4{
  margin-top: 1.5em;
}
.mb-2{
  margin-bottom: 1em;
}
a.btn.btn-primary{
  text-decoration: none;
  font-size: 0.8em;
  background-color: var(--primary-color);
  color: #fff;
  background-image: url(../assets/03_iconos/1x/iconos-back02.png)!important;
}
.container-body{
  max-width: 80%;
  overflow-y: auto;
  padding: 1em;
}
#final p{
  font-size: 1em;
  margin: 1em 0;
  color: var(--secondary-color);
  font-weight: 500;
}
.container-titulo{
  width: 100%;
  text-align: center;
  position: relative;
  top: -10px;
}
#final h2{
  background: var(--secondary-color);
  color: #fff;
  padding: 0.5em;
  display: inline-block;
  border-radius: 0.5em;
  margin-bottom: 0.3em;
}
.container-logos{
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  margin: 1em 0;
}

.img-fondo{
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position:absolute;
}

.img-final{
  border-radius: 0.5em;
}
.container-logos img:nth-child(1){
  max-width:150px;
}
.container-logos img:nth-child(2){
  max-width:100px;
  margin-top: 3px;
}
.ad-panel{
  padding: 0.3em 1em;
  display: inline-block;
}
.ad-panel h3{
  color: #b75b0f;
  margin-bottom: 0.1em;
  font-size: 1em;
}
.ad-warning{
  background: #ffffff5e;
  border-radius: 0.5em;
  color: #fff !important;
  margin-top: 1em;
  border: 2px solid #fa7f1b;
}
.ad-panel p{
  font-size: 0.9em;
  font-style: italic;
  color: #b75b0f;
  font-weight: 600;
}
.preguntas{
  flex-direction: column;
  z-index: 1000;
  position: relative;
}
.trivias{
  display: flex;
  background-color: var(--primary-color);
  background-image: url(../assets/iconos/textura.png);
  background-size: cover;
  background-position: center bottom;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
}
.trivias h3{
  color: var(--dark-blue);
  font-weight: bold;
}
.correcto, .incorrecto{
    padding: 0.5em;
    border-radius: 0.5em;
    border: 2px solid #fff;
    text-align: center;
    max-width: 350px;
    background-color: var(--success-color);
    color: white;
    margin: 1em auto !important;
}
.incorrecto{
  background-color: var(--red-color);

}
.rs{
  position: absolute;
    display: flex;
    gap: 10px;
    color: white;
    justify-content:flex-end;
    width: 98%;
    margin-top: 1em;
    z-index: 2;
}
.rs div{
  text-align: center;
  opacity: 1;
}
.rs div.inactivo{
  opacity: 0.3;
}
.rs h4{
  font-size: 0.8em;
}
.rs img{
  width: 50px;
}
#actividad-r .container-middle{
  flex-direction: column;
}
#contenedor-zonas-r{
  display: flex;
  width: 100%;
}
.w-80{
  width: 80%;
  margin: auto;
}
.bg-white-80{
  background-color: rgba(255,255,255,0.7);
}
.respuestaSortable img{
  max-width: 100px;
}
.respuestaSortable h2{
  font-size: 1em;
}
.respuestaSortable .feedback p{
  font-size: 0.9em;
}
.texto-destacado{
  background-color: rgba(255, 255, 255, 0.4);
  border: 3px solid var(--secondary-color);
  font-size: 1.1em;
  background-image: url(../assets/iconos/textura.png);
  background-size: cover;
}
#textoConsigna{
    background: #272b4f4f;
    padding: 0.3em 0.5em;
    border-radius: 0.5em;
    opacity: 0;
}
.fade {
  animation: fadeIn 0.5s ease-in-out 3s forwards;
}
.fade-out {
  animation: fadeOut 1s ease-in-out forwards;
}
#decision-espacios{
  bottom: 0px;
}
#fondo-enfardado{
  background-image: url(../assets/fotos-centro-verde/foto-centro-verde.jpg);
  background-position: center center;
  background-size: cover;
}
.scrollable{
  max-height: 85vh;
  overflow-y: auto;
  justify-content: flex-start!important;
}
table {
  border-collapse: separate; /* Permite el espacio entre celdas */
  border-spacing: 5px 5px; /* 20px de separación horizontal (entre columnas), 10px vertical */
  border-radius: 6px 6px 6px 6px;
  -moz-border-radius: 6px 6px 6px 6px;
  -webkit-border-radius: 6px 6px 6px 6px;
  box-shadow: 0 1px 1px #CCCCCC;
}
table th {
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  color: #fff;
}

td, th {
  padding: 5px; /* Espacio entre el contenido y el borde de la celda */
}
.espacio{
  width: 45%;
  text-align: center;
  margin-top: 1em;
}
.seleccion-espacios{
  justify-content: space-around;
}
.contenido-decision{
    max-width: 85%;
}
.text-slide{
  width: 90%;
  font-size: 1rem;
  color: #333;
  line-height: 1.2;
  margin: 0 auto;
}
#obtencion-r{
  z-index: 3;
}
#obtencion-r .bg-primary{
    max-width: 85%;
    margin: auto;
}
.rs.fin-rs{
  color: #000;
}
@media screen and (max-width:58em) {
  .felicitaciones#btn-fin {
    top: 84vh;
  }
  .felicitaciones.fin-renovar{
    top: 74vh;
  }
  #pantalla-inicio{
    align-items:flex-start;
    padding-top: 25px;
  }
  #contenedor-duplicable img{
    max-width: 50px;
  }
  #contenedor-duplicable h4{
    font-size: 0.8em;
    margin-top: -5px;
  }
  .zonaRTA{
    min-height: 50px;
  }
  .respuestaSortable h2 {
    font-size: 0.85em;
  }
  .espacio{
    width: 80%;
  }
  #actividad-r .container-middle {
    display: block!important;
    margin-top: 100px;
  }
  #feedback-r{
    height: 250px;
    overflow-y: scroll;
  }
  .d-none-mobile{
    display: none;
  }
  .felicitaciones{
    width: 95%;
    margin-left: 2.5%;
  }
  .felicitaciones#continuar-dialogo-cientifico, .felicitaciones#continuar-final{
    top:65vh;
  }
  .inicio h3 {
      font-size: 1.3em;
      margin-bottom: 0;
  }
  #textoConsigna{
    font-size: 1.4em;
  }
  #final p {
    font-size: 0.9em;
  }
  #final h2 {
    font-size: 1.1em;
  }
  .containerVideo a.close {
    top: 40px;
    right:10px;
  }
  .preguntas form, .contAct, #CuestJugo{
    margin: 0.5em;
    padding: 1.3em;
  }
  h3, .preguntas h3{
    font-size: 1em;
    margin-bottom: 1em;
  }
  a.close img {
    transition: 0.2s;
    width: 18px;
    height: 18px;
  }
  .close {
    position: absolute;
    right: -4px;
    top: -15px;
    background: var(--alternative-color);
    padding: 7px;
    border-radius: 50%;
    width: 20px;
    box-shadow: 1px 1px rgba(0, 0, 0, 0.3);
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .respuestaSortable{
    width: 100%;
  }
  .preguntas{
    align-items: flex-start;
  }
  #relacion-conceptos .preguntas{
    align-items: center;
  }
  .respuesta label{
    font-size: 0.95em;
  }
  .btn{
    font-size: 0.7em;
  }
  h1{
    font-size: 1em;
  }
  .inicio{
    width: 90%;
  }
  .inicio h1{
    font-size: 1.3em;
  }
  .logos img:nth-child(1) {
    width: 150px;
  }
  .logos img:nth-child(2) {
    width: 100px;
    margin-top: 3px;
  }
  #contador, .btn-espacio, .count-circle {
    height: 50px;
    width: 50px !important;
  }
  .btn-espacio{
    right: 75px;
  }
  .success, .error{
    font-size: 0.95em;
  }
  .respuesta {
    margin: 0 5px 20px 0px;
  }
  #consigna{
    left: 0;
    margin-top: 50px;
  }
  #consigna .contAct{
    max-width: 95%!important;
    padding: 0.7em 0.3em 0.3em 0.3em;
  }
  .contAct h3.title {
    font-size: 0.95em;
  }
  .hostspot-body img{
    max-width: 100%;
    height: auto;
  }
  .hotspot{
    max-width: 70%;
    position: absolute;
    top: 25px;
    left: 4%;
  }
  .hostspot-body{
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .btn-container{
    display: block;
    margin: auto;
  }
  .btn.btn-primary.back {
    margin-bottom: 20px;
  }
  .contAct{
    position: relative;
  }
  .container-middle, .bg-primary{
    width: 95%;
    margin: auto;
  }
  .container-middle.bg-white-80{
    width: 100%;
  }
  .seleccion-espacios{
    flex-direction: column;
    width: 95%;
    margin: auto;
    overflow-y: auto;
    align-items: center;
  }
  .text-bold{
    font-size: 0.9em;
  }
  .logos {
    margin-bottom: 0.5em;
  }
  #btn-inicio{
    margin-top: 0.5em;
  }
  .respuestas-sortable img {
    max-width: 100%;
  }
}
@media screen and (max-width:1400px){
  .d-none-mobile{
    display: none;
  }
}
@media screen and (min-width:59em){
  .felicitaciones.fin-renovar {
    top: 86vh;
  }
  #obtencion-r .bg-primary{
    max-width: 35%;
    margin: auto;
  }
  .logos img:nth-child(1){
    width: 150px;
  }
  .logos img:nth-child(2){
    width: 100px;
    margin-top: 3px;
  }
  .contenido{
    max-width: 500px;
  }
  .container-body{
    width: 70%;
  }
  #final p{
    width: 70%;
    margin: 1em auto;
  }
  #final .img-final{
    max-width: 70%;
  }
  #textoConsigna{
    display: inline-block;
  }
  .hotspot{
    max-width: 900px;
    box-sizing: border-box;
  }
}
@media screen and (min-width:1600px){
  #obtencion-r .bg-primary{
    max-width: 30%;
    margin: auto;
  }
  .correcto, .incorrecto {
    max-width: 550px;
  }
  body{
    font-size:1.4em;
  }
  .btn{
    font-size: 0.85em;
  }
  .logos img:nth-child(1){
    width: 200px;
  }
  .logos img:nth-child(2){
    width: 150px;
    margin-top: 3px;
  }
  .contenido {
    max-width: 900px;
  }
  .slide img {
    max-width: 500px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}