@-webkit-keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-140px * 11));
	}
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-140px * 11));
	}
}
.slider .slide-track {
	-webkit-animation: scroll 24s linear infinite;
	animation: scroll 24s linear infinite;
	/* quantidade vezes largura */
	width: calc(140px * 22);
}