.cls-6042-wrapper {
	overflow: hidden;
	width: 100%;
	display: flex;
}

.cls-6042-track {
	display: flex;
	align-items: center;
	width: max-content;
	animation: cls-6042-scroll var(--animation-duration, 20s) linear infinite;
	/* Gap is handled via Elementor controls */
}

.cls-6042-pause-hover:hover {
	animation-play-state: paused;
}

.cls-6042-logo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cls-6042-logo a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cls-6042-logo img {
	max-width: none;
	object-fit: contain;
}

@keyframes cls-6042-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		/* Assuming the first set of items takes up half the track width (due to duplication) */
		transform: translateX(calc(-50% - (var(--gap, 0px) / 2)));
	}
}
