/*--- Generado por Grúas Golim's en el Área de Informática (Tecnologías de la Información y Computación) Page Style ---*/


.loader-section {
	width: 100vw;
	height: 100vh;
	max-width: 100%;
	position: fixed;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0,0,0,0.5);
	z-index: 999;
	transition: all 1s 2s ease-out;
	opacity: 1;
}

.loaded {
	opacity: 0;
	z-index: -1;
	transition-duration: 2s;
}

.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #623ddb;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}

	/*--- EndOfFile ---*/
