.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); }
}

.cargando .fa-circle-notch {
	font-size: 50px;

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