// -------------------------------------------------------------------
// :: LOADER
// -------------------------------------------------------------------

@keyframes spinningLoader {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.a-loader {
	display: block;

	span[class*="icon"]:before {
		transform-origin: center center;
		animation: spinningLoader 1s infinite;
		animation-timing-function: linear;
		display: block;
		width: rem(32px);
		height: rem(32px);
		font-size: rem(32px);
		line-height: rem(32px);
		margin: 0 auto;
	}
}
