#basket-info .icon-cart {
	transition: color .3s !important;;
}

.spinner {
	width: 2rem;
	height: 2rem;
	border-top: 3px solid #000;
	border-right: 3px solid transparent;
	border-radius: 50%;
	animation: rotation .8s linear infinite;
	transition: none !important;
}

@keyframes rotation{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}
