/*#soy-svg {
	outline: 1px dotted red;
}
*/
.svg-container {
	overflow: auto;
}
.soy-svg {
	min-width: 1200px;
	max-height: 75vh;
}
.dotterline {
	stroke: #2b2a29;
	stroke-dasharray: 2px, 2px;
	stroke-width: 2px;
}
.soy-svg polyline:hover {
	cursor: pointer;
}
.grafica-alumnos {
	/*border: 1px dotted red;*/
	overflow-x: auto;
	overflow-y: hidden;
	position: relative;
	z-index: 1;
}
.grafica-alumnos::-webkit-scrollbar {
	/* width: 3px; */
}
.grafica-alumnos::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	/* width of the entire scrollbar */
}
.grafica-alumnos::-webkit-scrollbar-track {
	background: #e7e7e7;
	/* color of the tracking area */
	border-radius: 3px;
}
.grafica-alumnos::-webkit-scrollbar-thumb {
	background-color: #2b2a29;
	/* color of the scroll thumb */
	border-radius: 20px;
	/* roundness of the scroll thumb */
	border: 1px solid #e7e7e7;
	/* creates padding around scroll thumb */
}
.flexer {
	display: flex;
	justify-content: space-between;
}
.rect-multi {
	fill: #fff;
	rx: 5px;
	ry: 5px;
	transform: translate(30px, 75px);
	opacity: 0;
}
.rect-multi.show {
	opacity: 1;
}
.alumno {
	border: 4px solid #ffc800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	position: relative;
	background-color: #fff;
}
#newLine .alumno {
	border: 0.25px solid #2b2a29;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	position: relative;
	background-color: #fff;
}
.alumno::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 30px solid #ffc800
}
#newLine .alumno::after {
	content: "";
	position: absolute;
	top: 100%;
	width: 0;
	height: 50%;
	border-left: 0.25px solid #2b2a29;
	border-right: none;
	border-top: none
}
.anyo {
	font-size: 0.75rem;
	background-color: #000;
	color: #fff;
	padding: 3px;
	position: relative;
	border-radius: 5px;
	white-space: nowrap;
	margin: 0 auto;
}
#newLine .anyo {
	font-size: 0.75rem;
	background-color: transparent;
	color: #2b2a29;
	padding: 3px;
	position: relative;
	border-radius: 5px;
	white-space: nowrap;
	margin: 0 auto;
}
.anyo::before {
	content: "";
	width: 15px;
	height: 15px;
	border-radius: 15px;
	background-color: #ffc800;
	position: absolute;
	top: -12px;
	left: 50%;
	border: 2px solid #fff;
	transform: translateX(-50%);
}
.mover {
	margin-bottom: 0;
	position: relative;
	margin-top: auto;
	text-align: center;
	display: block;
	transition: all 2s ease-in-out;
	bottom: 0;
	opacity: 0;
	animation: fadein 1s ease-in-out forwards;
	/* outline: 0.2px dotted red; */
}
.mover:nth-child(1) {
	animation-delay: 100ms;
}
.mover:nth-child(2) {
	animation-delay: 200ms;
}
.mover:nth-child(3) {
	animation-delay: 300ms;
}
.mover:nth-child(4) {
	animation-delay: 400ms;
}
.mover:nth-child(5) {
	animation-delay: 500ms;
}
.mover:nth-child(6) {
	animation-delay: 600ms;
}
.mover:nth-child(7) {
	animation-delay: 700ms;
}
.mover:nth-child(8) {
	animation-delay: 800ms;
}
.mover:nth-child(9) {
	animation-delay: 900ms;
}
.mover:nth-child(10) {
	animation-delay: 1ms;
}
.mover:nth-child(11) {
	animation-delay: 1100ms;
}
.mover:nth-child(12) {
	animation-delay: 1200ms;
}
.mover:nth-child(13) {
	animation-delay: 1300ms;
}
.mover:nth-child(14) {
	animation-delay: 1400ms;
}
.mover:nth-child(15) {
	animation-delay: 1500ms;
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#iam_the_line {
	position: absolute;
	top: 0;
	z-index: 0;
	display: none;
}
#iam_the_line line {
	fill: #fff;
	stroke: #ffc800;
	stroke-miterlimit: 20;
	stroke-width: 4px;
}
#newLine #iam_the_line line {
	fill: #fff;
	stroke: #2b2a29;
	stroke-miterlimit: 20;
	stroke-width: 0.25px;
}
#iam_the_line line {
	stroke-dasharray: 200;
	stroke-dashoffset: 200;
}
/*Estatistica de puntos*/
.dotter {
	width: fit-content;
}
#dotti .big-tipo {
	color: #0069e6;
}
.dot {
	background-color: #ffc800;
	width: 14px;
	height: 14px;
	border-radius: 7px;
	display: inline-block;
	margin-right: 7px;
	opacity: 0;
	transition: opacity 250ms ease-in-out;
}
.dot.show {
	opacity: 1;
	transition: opacity 250ms ease-in-out;
}
.new-line {
	width: 14px;
	margin-right: 14px;
	display: inline-block;
}
.blue {
	background-color: #2b2a29;
}
.red {
	background-color: #0069e6;
}
.dotter .red-text {
	color: #0069e6;
	text-align: left;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}
.dotter .blue-text {
	color: #2b2a29;
	text-align: right;
	margin-right: 14px;
	margin-bottom: 1rem;
	font-size: 1.25rem;
}
.dotter .red-text strong,
.dotter .blue-text strong {
	font-size: 3rem;
}
.big-tipo {
	font-size: 3rem;
	font-weight: 600;
}
.absoluto {
	position: absolute;
	width: 100%;
}
/* grafica circulo */
.percent {
	position: absolute;
}
.svg-circulo {
	transform: scale(2.2);
}
.svg-circulo circle {
	fill: transparent;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset .2s linear;
	stroke: #fff;
	stroke-width: 16px;
}
/*.svg-circulo circle.show {
	stroke-dashoffset: 100;
	transition: stroke-dashoffset .2s linear;
}*/
.svg-circulo .bar {
	stroke: #2C69DE;
	stroke-linecap: round;
	/* stroke-dashoffset: 0; */
	transition: all 1s ease-in-out;
	opacity: 0;
}
.svg-circulo .bar:hover {
	cursor: pointer;
}
[id^=tr_]:hover {
	cursor: pointer;
}
.svg-circulo .bar.show {
	transition: all 1s ease-in-out;
	opacity: 1;
	fill: none;
}
.grafica-circulo {
	height: auto;
	width: 220px;
	margin: 10px auto;
	position: relative;
	background-color: #e7e7e7;
	border-radius: 10px;
	padding: 10px;
}
.svg-circulo .texto-centro-multi {
	opacity: 0;
}
.svg-circulo .texto-centro-multi.show {
	opacity: 1;
	background-color: #fff;
	border-radius: 10px;
}
.svg-circulo .texto-centro {
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.svg-circulo .texto-centro.show {
	opacity: 1;
	transition: opacity 1s ease-in-out;
}
.grafica-circulo p {
	text-align: center;
	margin: 1rem 0 0;
}
.texto-centro {
	fill: #2C69DE;
}
.valor {
	position: absolute;
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
	color: #2C69DE;
}
table.table-grafica-circulo {
	width: 400px;
	margin-right: 2rem;
}
table.table-grafica-circulo tr td:nth-child(1) {
	width: 2.5rem;
	padding: 0.25rem 0;
}
table.table-grafica-circulo tr td:nth-child(2) {
	width: 225px;
}
table.table-grafica-circulo tr td:nth-child(2),
table.table-grafica-circulo tr td:nth-child(3) {
	border-top: 0.25px solid #2b2a29;
	border-bottom: 0.25px solid #2b2a29;
}
table.table-grafica-circulo tr td:nth-child(3) {
	text-align: right;
}
.lista-flechas {
	list-style: none;
	position: relative;
}
.lista-flechas li::before {
	background-image: url("data:image/svg+xml,%3Csvg version='1.1' viewBox='0 0 24 19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m14.516-0.0019531a0.48 0.48 0 0 0-0.36523 0.15234 0.48 0.48 0 0 0 0 0.69922l8.1504 8.1504h-21.801a0.5 0.5 0 0 0 0 1h21.801l-8.1504 8.1504a0.48 0.48 0 0 0 0 0.69922 0.47 0.47 0 0 0 0.34961 0.15039 0.47 0.47 0 0 0 0.34961-0.15039l8.9473-8.9473 0.0039-0.00195a0.5 0.5 0 0 0 0.13867-0.16211 0.48 0.48 0 0 0 0.0098-0.019531 0.5 0.5 0 0 0 2e-3 -0.00586 0.48 0.48 0 0 0 0.03125-0.3418 0.5 0.5 0 0 0-0.0078-0.027344 0.48 0.48 0 0 0-0.0039-0.00781 0.5 0.5 0 0 0-0.16992-0.23438l-8.9513-8.9512a0.48 0.48 0 0 0-0.33398-0.15234z' fill='%232b2a29'/%3E%3C/svg%3E");
	width: 1rem;
	height: 1rem;
	margin-top: 0.35rem;
	left: 0.5rem;
	content: ' ';
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	right: 100%;
}
.tau-accordeon-button {
	width: 100%;
	display: block;
}
.tau-accordeon-button button {
	width: 100%;
	display: flex !important;
	justify-content: space-between;
}
.txt-18 {
	font-size: 18px;
}
/*Wurstbrot*/
.weisswurst {
	fill: #ffffff00;
	stroke: #0069e6;
	stroke-width: 3px;
	animation: einblenden_weiss 500ms ease-in-out forwards 1s;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}
.gelbwurst {
	fill: #ffc80000;
	stroke: #0069e6;
	stroke-width: 3px;
	animation: einblenden_gelb 500ms ease-in-out forwards 1500ms;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}
.schwarzwurst {
	fill:  #2b2a2900;
	stroke: #0069e6;
	stroke-width:  3px;
	animation: einblenden_schwarz 500ms ease-in-out forwards 2000ms;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}
.braunwurst {
	fill:  #c2b09e00;
	stroke: #0069e6;
	animation: einblenden_braun 500ms ease-in-out forwards 2500ms;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}
.cyanwurst {
	fill:  #00c8ff00;
	stroke: #0069e6;
	stroke-width:  3px;
	animation: einblenden_cyan 500ms ease-in-out forwards 3000ms;
	stroke-dasharray: 1;
	stroke-dashoffset: 1;
}
@keyframes einblenden_schwarz {
	0% {
		fill: #2b2a2900;
		stroke:  #fff;
		stroke-dashoffset: 1;
	}
	50% {
		fill: #2b2a2900;
		stroke:  #fff;
		stroke-dashoffset: 0;
	}
	100% {
		fill: #2b2a29;
		stroke:  #0069e6;
		stroke-dashoffset: 1;
		stroke-dasharray: 0;
	}
}
@keyframes einblenden_weiss {
	0% {
		fill: #ffffff00;
		stroke:  #fff;
		stroke-dashoffset: 1;
	}
	50% {
		fill: #ffffff00;
		stroke:  #fff;
		stroke-dashoffset: 0;
	}
	100% {
		fill: #fff;
		stroke:  #0069e6;
		stroke-dashoffset: 1;
		stroke-dasharray: 0;
	}
}
@keyframes einblenden_gelb {
	0% {
		fill: #ffc80000;
		stroke:  #fff;
		stroke-dashoffset: 1;
	}
	50% {
		fill: #ffc80000;
		stroke:  #fff;
		stroke-dashoffset: 0;
	}
	100% {
		fill: #ffc800;
		stroke:  #0069e6;
		stroke-dashoffset: 1;
		stroke-dasharray: 0;
	}
}
@keyframes einblenden_braun {
	0% {
		fill: #c2b09e00;
		stroke:  #fff;
		stroke-dashoffset: 1;
	}
	50% {
		fill: #c2b09e00;
		stroke:  #fff;
		stroke-dashoffset: 0;
	}
	100% {
		fill: #c2b09e;
		stroke:  #0069e6;
		stroke-dashoffset: 1;
		stroke-dasharray: 0;
	}
}
@keyframes einblenden_cyan {
	0% {
		fill: #00c8ff00;
		stroke:  #fff;
		stroke-dashoffset: 1;
	}
	50% {
		fill: #00c8ff00;
		stroke:  #fff;
		stroke-dashoffset: 0;
	}
	100% {
		fill: #00c8ff;
		stroke:  #0069e6;
		stroke-dashoffset: 1;
		stroke-dasharray: 0;
	}
}

.puntoweiss {
	fill: #ffffff ;
	animation: showpuntos 250ms ease-in-out 3.5s forwards;
	opacity: 0;
}
.puntogelb {
	fill:  #FFC800;
	animation: showpuntos 250ms ease-in-out 4s forwards;
	opacity: 0;
}
.puntoschwarz {
	fill: #2B2A29 ;
	animation: showpuntos 250ms ease-in-out 4.5s forwards;
	opacity: 0;
}
.puntobraun {
	fill: #C2B09E  ;
	animation: showpuntos 250ms ease-in-out 5s forwards;
	opacity: 0;
}
.puntocyan {
	fill:  #00c8ff;
	animation: showpuntos 250ms ease-in-out 5.5s forwards;
	opacity: 0;
}

@keyframes showpuntos {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.weisstext {
	opacity: 0;
		animation: showpuntos 250ms ease-in-out 3.5s forwards;

}
.gelbtext {
	opacity: 0;
		animation: showpuntos 250ms ease-in-out 4s forwards;

}
.schwarztext {
	opacity: 0;
		animation: showpuntos 250ms ease-in-out 4.5s forwards;

}
.brauntext {
	opacity: 0;
		animation: showpuntos 250ms ease-in-out 5s forwards;

}
.cyantext {
	opacity: 0;
		animation: showpuntos 250ms ease-in-out 5.5s forwards;

}