/*Force all items into a single row */
.hmove { display: flex; }
.hitem { width: 300%; flex-shrink: 0; }
.hwrap { overflow: hidden; }

/*Move items from right to left */
@keyframes tickerh {
	0% { transform: translatex(100%); }
	100% { transform: translatex(-300%); }
}
.hmove { animation: tickerh linear 60s infinite; }
.hmove:hover { animation-play-state: paused; }