
.spinner{
	height: 100px;
	width: 100px;
	border: 15px solid #F2F3F8;
	border-top-color: #83AD38;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	animation: spin 1s infinite linear;
}

@keyframes spin{
	100%{
		transform: rotate(360deg);
	}
}