.vue3-marquee {
	overflow-x: hidden !important;
	display: flex !important;
	flex-direction: row !important;
	position: relative;
	width: 100%;
}
.vue3-marquee:hover div {
	animation-play-state: var(--pauseOnHover);
}
.vue3-marquee:active div {
	animation-play-state: var(--pauseOnClick);
}
.vue3-marquee > .marquee {
	flex: 0 0 auto;
	min-width: var(--min-width);
	z-index: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	animation: scroll var(--duration) linear var(--delay) var(--loops);
	animation-direction: var(--direction);
	color: #ddd !important;
}
@keyframes scroll {
	0% {
		transform: translate(0);
	}
	to {
		transform: translate(-100%);
	}
}
.vue3-marquee > .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
}
.vue3-marquee > .transparent-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
}
.vue3-marquee > .overlay:before,
.vue3-marquee > .overlay:after {
	background: linear-gradient(to right, var(--gradient-color));
	content: "";
	height: 100%;
	position: absolute;
	width: var(--gradient-width);
	z-index: 2;
}
.vue3-marquee > .overlay:after {
	right: 0;
	top: 0;
	transform: rotate(180deg);
}
.vue3-marquee > .overlay:before {
	left: 0;
	top: 0;
}
