.ols-marquee {
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: 7px;
	margin-bottom: -7px;
}

.ols-track {
	display: flex;
	width: max-content;
	will-change: transform;
}

.ols-track.ols-is-ready {
	animation: ols-marquee var(--ols-duration, 25s) linear infinite;
}

.ols-group {
	display: flex;
	flex-shrink: 0;
	align-items: center;
}

.ols-group img {
	display: block;
	flex-shrink: 0;
	height: 80px;
	width: auto;
	margin-right: 60px;
	max-width: none;
}

@keyframes ols-marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-1 * var(--ols-shift, 50%)));
	}
}

@media (prefers-reduced-motion: reduce) {
	.ols-track.ols-is-ready {
		animation: none;
	}
}
