.spinner {
	background: none !important;
	animation: spinner infinite 1.5s linear;
	border-radius: 100%;
	border-style: solid;
	border-width: 2px;
	display: inline-block;
	border-color: transparent #000 transparent #000;
}

#spinner {
	position: fixed !important;
	top: 50%;
	left: 50%;
	margin-left: -16px;
	margin-top: -16px;
}

@keyframes spinner {
	0% {
		transform: rotate(0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	25% {
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	50% {
		transform: rotate(1800deg);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	75% {
		transform: rotate(900deg);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	100% {
		transform: rotate(0deg);
	}
}