/*Oculta las flechitas de los input type number*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

/* -------------//-------------- */


hr {
	border-top: 1px solid rgba(0, 0, 0, 0.9);
	border-bottom: 1px solid rgb(255, 255, 255, 0.2);
}

.jumbotron {
	padding: 1rem 1rem;
}

span {
	color: rgb(0, 217, 255);
	font-size: 1.4em;
	/*text-shadow: white 1px 1px 0px;*/
	margin-left: 5px;
}

.txt_azul {
	text-size: 1em;
	color: rgb(0, 217, 255);
}


.logoies {
	border-radius: 50%;
	width: 70px;
	height: 70px;
}

.sombrainterior {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.notaKO {
	color: rgb(255, 102, 102);
	font-size: 0.9em;
	/*text-shadow: white 1px 1px 0px;*/
}

.notaOK {
	color: #0C0;
	font-size: 0.9em;
	/*text-shadow: white 1px 1px 0px;*/
}

p.nfinal span#totalFasegeneral span.notaOK,
p.nfinal span#totalFasegeneral span.notaKO {
	font-size: 0.7em;
}

#botonBorrar,
#mostrarInfo,
.textocentrado {
	text-align: center;
}

input[type="number"] {
	width: 70px;
	font-size: 1.5em;
}


/* -------------------- */
/* ---- https://codepen.io/raubaca/pen/ONzBxP -------- */
/* -- Botones de elección de ponderaciones -- */


/* Desaparece el botón por defecto */
input[type="radio"] {
	position: absolute;
	opacity: 0;
	z-index: -1;
}

/*   */
#selectorFE1 label,
#selectorFE2 label {
	position: relative;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
	padding-left: 30px;
	padding-right: 10px;
	line-height: 36px;
	cursor: pointer;
	z-index: 1;
	/*border: 2px solid green;
	border-radius: 6px;*/
}

/* Crea un círculo azul que sustituye al radio por defecto */
#selectorFE1 label::before,
#selectorFE2 label::before {
	content: " ";
	position: absolute;
	top: 6px;
	left: 0;
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid #009df5;
	/*border-radius: 50%;*/
	z-index: -1;
}

#selectorFE1 input[type="radio"]+label::before,
#selectorFE2 input[type="radio"]+label::before {
	border-radius: 50%;

}

/* Checked */
#selectorFE1 input[type="radio"]:checked+label,
#selectorFE2 input[type="radio"]:checked+label {
	padding-left: 10px;
	color: #fff;
}

#selectorFE1 input[type="radio"]:checked+label::before,
#selectorFE2 input[type="radio"]:checked+label::before {
	top: 0;
	width: 100%;
	height: 100%;
	background: #009df5;
	border-radius: 18px;
}

/* Transition */
#selectorFE1 label,
#selectorFE1 label::before,
#selectorFE2 label,
#selectorFE2 label::before {
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}


/* Snackbar que informa de valores por exceso */
#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	background-color: rgb(78, 0, 0);
	color: rgb(255, 255, 255);
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 1;
	left: 50%;
	top: 40%;
	font-size: 17px;
	border: 1px solid white;
	border-radius: 5px;
}

#snackbar.showSnackbar {
	visibility: visible;
	-webkit-animation: fade-in 0.5s, fade-out 0.5s 2.5s;
	animation: fade-in 0.5s, fade-out 0.5s 2.5s;
}

@-webkit-keyframes fade-in {
	from {
		top: 0;
		opacity: 0;
	}

	to {
		top: 40%;
		opacity: 1;
	}
}

@keyframes fade-in {
	from {
		top: 0;
		opacity: 0;
	}

	to {
		top: 40%;
		opacity: 1;
	}
}

@-webkit-keyframes fade-out {
	from {
		top: 40%;
		opacity: 1;
	}

	to {
		top: 0;
		opacity: 0;
	}
}

@keyframes fade-out {
	from {
		top: 40%;
		opacity: 1;
	}

	to {
		top: 0;
		opacity: 0;
	}
}

/* Fin del snackbar que informa del resultado del diálogo */
/*Correcciones cyborg*/
h1 {
	font-size: 2em;
}

h4 {
	font-size: 1em;
}




/*Necesario para ocultar/mostrar capas:*/
.oculto {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	/*transition: max-height 1000ms, opacity 1000ms;*/
	-webkit-transition: .25s all ease;
	-o-transition: .25s all ease;
	transition: .25s all ease;
}

.oculto.activo {
	max-height: 3000px;
	opacity: 1;
	/*transition: max-height 1000ms, opacity 1000ms;*/
}