.loader {
	display: inline-block;
	border-image-slice: 1;
	border-top: 0.1em solid #C2A;
	border-left: 0.1em solid transparent;
	border-right: 0.1em solid transparent;
	border-bottom: 0.1em solid transparent;
	border-radius: 50%;
	width: 0.6em;
	height: 0.6em;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Copied from https://www.w3schools.com/howto/howto_css_loader.asp */
