:root {
	--verde: #83c635;
	--rojo: #f01b18;
	--azul: #a1bf34;
	--tamano: 50px;
	--tam-sonar: 25px;
	--color-OK: #83c635;
	--color-noOK: #f01b18;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	/* Usado para trabajar con definición 'em' */
	font-size: 16px;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 0.8em;
	line-height: 1.65em;
	text-align: left;
	color: #000;
	font-weight: 400;
	margin: 2em;
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	-o-user-select: none;
}

.esquema {
	box-shadow: 0 0 0 10px #fff, 0 15px 50px;
}

.no-disponible {
	margin-top: 55vh;
	
	font-size: 1.0rem;
	text-align: center;
	position:relative;
	left: 50%;
	
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	color: #f00;
	display: none;

}

.esquema .encabezado {
	margin-bottom: 10px;
}

.esquema .encabezado .info {
	background-color: var(--azul);
	color: #fff;
	text-align: right;
	padding: 10px 20px;
	margin-top: 20px;
}

.esquema .encabezado .titulo {
	padding: 0;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.esquema .encabezado .titulo .headings-int {
	color: #000;
	font-size: 1.8em;
	text-align: left;
	margin-top: 20px;
}

.esquema .encabezado .instrucciones {
	padding: 0;
}

.estilosinstruccion {
	background-color: var(--azul);
	color: #fff;
	padding: 5px 10px;
	margin-top: 3px;
}

#etiquetaRespuesta {
	margin-left: 5px;
}

hr.separador {
	height: 2px;
	border-width: 0;
	color: gray;
	background-color: gray;
	margin: 2px 2px !important;
}

input[type="text"]:focus {
	outline-width: 2px;
	border-radius: 4px;
}

.ir-arriba {
	display: none;
	padding: 15px;
	background: #a1bf34;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 50%;
	z-index: 10000;
}

.pager {
	text-align: center;
	margin-top: 20px;
}

.esquema .reactivos {
	display: flex;
	justify-content: center;
}

/*aqui ajusto el recuadro que contiene la imagen, asi no se pierden las coordenadas*/
.esquema .reactivos .pregunta {
	position: relative;
	width: 85%;
}

img.img_fondo {
	border: 1px solid #000;
	position: relative;
	z-index: 0;
	width: 800px;
	/* box-shadow: 0 0 0 10px #fff, 0 15px 50px; */
}

/* SECCION CASILLAS DROP, AQUI AJUSTAMOS COORDENADAS */
/* CEREBRO */
.esquema .reactivos .pregunta .casilla#cas0 {
	top: 1%;
	left: 1%;
}

.esquema .reactivos .pregunta .casilla#cas1 {
	top: 29%;
	left: 70%;
}

.esquema .reactivos .pregunta .casilla#cas2 {
	top: 46%;
	left: 84%;
}

.esquema .reactivos .pregunta .casilla#cas3 {
	top: 60%;
	left: 81%;
}

.esquema .reactivos .pregunta .casilla#cas4 {
	top: 62%;
	left: 42%;
}

.esquema .reactivos .pregunta .casilla#cas5 {
	top: 57%;
	left: 59%;
}

.esquema .reactivos .pregunta .casilla#cas6 {
	top: 51%;
	left: 13%;
}

.esquema .reactivos .pregunta .casilla#cas7 {
	top: 1%;
	left: 28%;
}

/* MAPA */
.esquema .reactivos .pregunta .casilla#cas0 {
	top: 48%;
	left: 18%;
}

.esquema .reactivos .pregunta .casilla#cas1 {
	top: 70%;
	left: 81%;
}

.esquema .reactivos .pregunta .casilla#cas2 {
	top: 79%;
	left: 15%;
}

.esquema .reactivos .pregunta .casilla#cas3 {
	top: 24%;
	left: 61%;
}
.esquema .reactivos .pregunta .casilla#cas4 {
	top: 85%;
	left: 45%;
}
.esquema .reactivos .pregunta .casilla#cas5 {
	top: 56%;
	left: 18%;
}

.esquema .reactivos .pregunta .casilla#cas6 {
	top: 79%;
	left: 81%;
}

.esquema .reactivos .pregunta .casilla#cas7 {
	top: 87%;
	left: 15%;
}

.esquema .reactivos .pregunta .casilla#cas8 {
	top: 32%;
	left: 61%;
}
.esquema .reactivos .pregunta .casilla#cas9 {
	top: 93%;
	left: 45%;
}


/* FIN SECCION CASILLAS DROP, AQUI AJUSTAMOS COORDENADAS */

.mostrar {
	display: "";
}

.ocultar {
	display: none;
}

.boton {
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	border-radius: 4px;
}

.boton,
.boton:hover,
.boton:active,
.boton:focus {
	background-color: var(--azul);
	color: #fff;
}

.boton:hover {
	background-color: #565902;
}

.respuestas .lista-respuestas {
	line-height: 1.5em;
	background-color: #eaeaea;
	background: transparent;
	-moz-border-radius: 8px;
	border-radius: 8px;
	padding: 10px;
}

.esquema .reactivos .pregunta .casilla.seleccion-rapida {
	border-color: rgba(175, 238, 238, 0.3);
}

.esquema .reactivos .pregunta .casilla {
	position: absolute;
	background-color: white;
	display: inline-block;
	text-align: center;
	border: 2px solid #AAAAAA;
}

.esquema .reactivos .pregunta .casilla sup {
	color: var(--azul);
	font-style: italic;
}
/* CEREBRO */
.esquema .reactivos .pregunta .casilla {
	width: 6%;
	height: 8%;
}
/* MAPA */
.esquema .reactivos .pregunta .casilla {
	width: 17%;
	height: 4.5%;
}

.esquema .reactivos .pregunta .casilla.ocupado {
	top: 0;
}

.esquema .reactivos .pregunta .casilla.ocupado.correcto {
	top: 0;
	border: 2px solid var(--verde);
	background: var(--verde);
}

.esquema .reactivos .pregunta .casilla.ocupado.incorrecto {
	top: 0;
	border: 2px solid var(--rojo);
	background: var(--rojo);
}

.esquema .reactivos .pregunta .casilla.dragOver {
	border-color: #aaa;
	background-color: #aaa;
	z-index: 0;
}

.esquema .reactivos .pregunta .casilla.ocupado.dragOver {
	border-color: #aaa;
	background-color: white;
}

.esquema .reactivos .pregunta .casilla.ocupado.correcto.dragOver {
	color: #030;
}

.barraInferior {
	text-align: center;
	clear: both;
}

.headings {
	color: #b1b1b1;
	letter-spacing: 1px;
	font-size: 1em;
	margin: 0;
}

.actividad {
	max-width: 250px;
	background: #b1b1b1;
	padding: 5px;
	border-radius: 20px;
	text-align: center;
	color: #fff !important;
	margin-bottom: 15px !important;
}

.under-li {
	border-bottom: solid #dbdbdb;
	border-width: 3px;
	padding-bottom: 9px;
	width: 80%;
}

p {
	font-size: 1.1em;
	line-height: 1.8em;
	text-align: left;
}

.sinRespuesta {
	background-color: var(--azul) !important;
	opacity: 1;
}

.preguntas {
	flex-direction: row;
	margin-left: -10px;
	display: flex;
	flex-wrap: wrap;
}

.palomita {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	left: 0;
	background: var(--verde);
	opacity: 0.3;
}

.tache {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	left: 0;
	background: var(--rojo);
	opacity: 0.3;
}

.blink {
	animation: blink 1.3s linear infinite;
	-webkit-animation: blink 1.3s linear infinite;
}

@keyframes blink {
	70% {
opacity: 0.7;
	}
}

@-webkit-keyframes blink {
	70% {
opacity: 0.7;
	}
}

/* ------------------ CLASES PARA RETROALIMENTACIONES TOOLTIP ------------------ */
.tooltip {
	filter: drop-shadow(2px 4px 10px #444);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.tooltip-inner {
	font-size: 1.1em;
	text-align: left;
	min-width: 280px;
	padding: 10px;
	z-index: 1000001;
}

@media (min-width: 992px) {
	/*  lg  BS4   >= 992 px	*/
	.tooltip-inner {
		min-width: 480px;
	}
}

.tooltip.show {
	opacity: 1;
}

.tooltip.primary .tooltip-inner {
	background-color: #337ab7;
}

.tooltip.info .tooltip-inner {
	background-color: #31b0d5;
}

.tooltip.success .tooltip-inner {
	background-color: var(--color-OK);
}

.tooltip.warning .tooltip-inner {
	background-color: #ec971f;
}

.tooltip.danger .tooltip-inner {
	background-color: var(--color-noOK);
}

.success.bs-tooltip-end .tooltip-arrow:before {
	border-right-color: var(--color-OK);
}

.danger.bs-tooltip-end .tooltip-arrow:before {
	border-right-color: var(--color-noOK);
}

.success.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.success.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: var(--color-OK);
}

.success.bs-tooltip-bottom .tooltip-arrow::before {
	border-bottom-color: var(--color-OK);
}

.danger.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.danger.bs-tooltip-top .tooltip-arrow::before {
	border-top-color: var(--color-noOK);
}

.danger.bs-tooltip-bottom .tooltip-arrow::before {
	border-bottom-color: var(--color-noOK);
}


/* Slideshow container */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas {
	position: relative;
	background: #f1f1f1;
	margin: 20px -15px 0 -15px;
}

/* Slides */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .mySlides {
	padding: 30px;
	text-align: center;
	/* margin: 0 50px; */
}

/* Next & previous buttons */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .dot-container a.prev,
.esquema .carrusel-respuestas .dot-container a.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	padding: 16px;
	color: #888;
	user-select: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f1f1f1;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.esquema .carrusel-respuestas .dot-container a.prev {
	left: 5px;
}

/* Position the "next button" to the right */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .dot-container a.next {
	right: 5px;
}

/* On hover, add a black background color with a little bit see-through */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .dot-container a.prev:hover,
.esquema .carrusel-respuestas .dot-container a.next:hover {
	background-color: #cccbcb;
	color: white;
	text-decoration: none;
	-webkit-transform: scale(1.2, 1.2);
	-moz-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	-o-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}

/* The dot/bullet/indicator container */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .dot-container {
	text-align: center;
	padding: 15px 0;
	background: #f1f1f1;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* The dots/bullets/indicators */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .dot-container .dot {
	cursor: pointer;
	height: 12px;
	width: 12px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores */
.esquema .carrusel-respuestas .dot-container .dot.active {
	background-color: #717171;
	width: 20px;
	height: 15px;
	border-radius: 15px;
	/* JLBG Agosto 25, 2021; ajuste para slide de respuestas */
}

.esquema .carrusel-respuestas .dot-container .dot:hover {
	background-color: #717171;
}

.ui-draggable-dragging {
	border: 2px solid #aaaaaa;
	border-radius: 4px;
	cursor: move;
	background-color: #ffffff;
}

.OK {
	color: var(--color-OK);
}

.OK:before,
.OK:after {
	background: var(--color-OK);
}

.noOK {
	color: var(--color-noOK);
}

.noOK:before,
.noOK:after {
	background: var(--color-noOK);
}

.pulso {
	width: var(--tam-sonar);
	height: var(--tam-sonar);
	position: absolute;
	margin: auto;
	/* border-radius: 50%; */
	font-size: calc(0.7 * var(--tam-sonar));
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
}

.pulso:before,
.pulso:after {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	/* border-radius: 50%; */
	z-index: 0;
	opacity: 0.7;
}

.pulso:before {
	animation: pulso 1s ease-out infinite;
}

.pulso:after {
	animation: pulso 1s 0.5s ease-out infinite;
}
.pulso i {
	font-size: var(--tam-sonar);
}

@keyframes pulso {
	100% {
		transform: scale(2.5);
		opacity: 0;
	}
}

.esquema .carrusel-respuestas .mySlides .respuesta .carrusel,
object.carrusel {
	/* JLBG Mayo 22, 2020; ajuste para colocar respuesta desde slides inferiores object.carrusel { */
	position: relative;
	min-height: 30px;
	padding: 5px;
	border: 2px solid #aaaaaa;
	cursor: move;
	background-color: #ffffff;
	display: inline-block;

	overflow: hidden;
	margin: 0px auto;
	left: 0px;
	top: 0px;
}

@media only screen and (max-width: 480px) {
	body {
        font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
        color: #777;
	}

}

@media (max-width: 992px) {
	.container {
		display: none;
	}
	.no-disponible {
		display: block;
	}
}
