.cargando {
	position: absolute;
	text-align: center;
	top: 45%;
	left: 45%;
	width: 80px;
	height: 80px;
	z-index: 999;
}

/* Safari */
@-webkit-keyframes cargando {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes cargando {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
.logo-int {
	width: 70%;
	margin-top: 12%;
}
.logo-ext {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	left: 0%;
	top: 5%;

	animation: cargando 4s linear infinite;
	-webkit-animation: cargando 4s linear infinite;
}