.marquee-container-1049 {
	overflow: hidden;
	white-space: nowrap;
	width: 100%;
	display: flex;
}

.marquee-content-1049 {
	display: inline-block;
	animation: scroll_1049 20s linear infinite;
}

.marquee-text-1049 {
	padding-right: 20px;
}

@keyframes scroll_1049 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}