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


.loading:before {
		content:"";
		position:absolute;
		z-index:50;
		top:15%;
		left:50%;
		height:40px;
		width:40px;
		margin-top: -20px;
		margin-left: -20px;
		border-radius: 50%;
		border: 3px solid rgb(192, 192, 192);
		border-top-color: rgb(57, 57, 153);
		animation: spinner 0.7s linear infinite;
	}