@charset "UTF-8";

.loader_protector
{
	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: 1060;
}
.loader_protector .animation
{
	animation: spin 0.6s linear infinite;
	border: 0.3em solid #000;
	border-radius: 50%;
	border-top-color: #fff;
	height: 4em;
	width: 4em;
}
@keyframes spin
{
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
