@keyframes spinner {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

#content-chunk-loader {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#content-chunk-loader::before {
	content: '';
	width: 40px;
	height: 40px;
	background-image: url(https://starlight.seventy9.co.uk/static/images/interface/status_spinner.svg?v=);
	animation: spinner 2s linear infinite;
}