.loader 
{
	border: 4px solid rgb(0,64,0);/*#f3f3f3; */ /* Heller Rand */
	border-top: 4px solid rgb(0,255,0);/*#3498db; */ /* Farbiger Rand */
	border-radius: 50%; /* Kreisform */
	width: 20px;
	height: 20px;
	animation: spin 1s linear infinite; /* Animation */
}

/* Keyframes für die Drehbewegung */
@keyframes spin 
{
	0% 
	{
		transform: rotate(0deg);
	}
	
	100% 
	{
		transform: rotate(360deg);
	}
}
