@charset "UTF-8";

.load_protection
{
	align-items: center;
	background-color: rgba(0,0,0,0.75);
	cursor: wait;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1050;
}
.load_protection .animation
{
	animation: spin 0.75s linear infinite;
	border: 0.5em solid rgb(0,0,0);
	border-radius: 50%;
	border-top-color: rgb(255,255,255);
	height: 6em;
	width: 6em;
}
@keyframes spin
{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
