.gx-marquee-wrapper-b925b6ea {
	display: flex;
	overflow: hidden;
	user-select: none;
	width: 100%;
}
.gx-marquee-content-b925b6ea {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: space-around;
	animation-name: gx-marquee-scroll-left-b925b6ea;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.gx-marquee-item-b925b6ea {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}

/* Direction - Right to Left */
.gx-marquee-dir-rtl-b925b6ea .gx-marquee-content-b925b6ea {
	animation-name: gx-marquee-scroll-right-b925b6ea;
}

/* Pause on hover */
.gx-marquee-pause-yes-b925b6ea:hover .gx-marquee-content-b925b6ea {
	animation-play-state: paused;
}

/* Animations */
@keyframes gx-marquee-scroll-left-b925b6ea {
	from { transform: translateX(0); }
	to { transform: translateX(-100%); }
}
@keyframes gx-marquee-scroll-right-b925b6ea {
	from { transform: translateX(-100%); }
	to { transform: translateX(0); }
}
