.loading {
	z-index: 100000000;
	position: fixed;
	top: 0;
	left:0;
	right: 0;
	bottom:0;
	width: 100%;
	height: 100%;
    background-color: rgba(0,0,0,0.7);
}
.loading-content {
	position: absolute;
	border: 5px solid #f3f3f3; /* Light grey */
	border-top: 5px solid #EA1D77; /* Blue */
	border-radius: 50%;
	width: 90px;
	height: 90px;
	top: 50%;
	left:calc(50% - 45px);
	animation: spin 2s linear infinite;
}
.loading-content-porcent {
	position: absolute;
	width: 90px;
	height: 90px;
	top: 50%;
    left:calc(50% - 45px);
    color: white;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}