/* CSS Document */

.contenitore-loader {
	position: fixed;
	background: #0000008c;
	width: 100%;
	height: 100%;
	top: 0px;
	bottom: 0px;
	z-index: 5;
}

.loader-contenuto {
	border: 4px solid #656565;
	border-radius: 50%;
	border-top: 4px solid #3498db;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 1.2s linear infinite;
	margin-left: auto;
	margin-right: auto;
	margin-top: 32px;
	position: fixed;
	top: 50%;
	left: 50%;
}

.loader {
	border: 4px solid #656565;
	border-radius: 50%;
	border-top: 4px solid #3498db;
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 1.2s linear infinite;
	margin-left: auto;
	margin-right: auto;
	margin-top: 54px;
}


/* INIZIO ANIMAZIONE LOADER */


/* Safari */
@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}


/* FINE ANIMAZIONE LOADER */