.w3media-news-ticker-wrapper {
	overflow: hidden;
}

.w3media-news-ticker-wrapper .news-ticker-content {
	display: flex;
}


.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items {
	animation: slide 20s linear infinite;
	display: flex;
	flex: 0 0 auto;
}

.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items:last-child {
	margin-left: 60px;
}

.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items .item {
	font-size: 40px;
	font-weight: 500;
	flex: 0 0 auto;
}

.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items .item.text::after {
	content: "/";
	margin-left: 60px;
	color: var(--w3-black);
	opacity: .25;
}

.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items .item:not(:last-of-type) {
	margin-right: 60px;
}

@keyframes slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-100% - 60px))
	}
}

@media (max-width: 767px) {
	.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items {
		margin-left: 35px;
	}

	.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items .item::after {
		content: "/";
		margin-left: 35px;
	}

	.w3media-news-ticker-wrapper .news-ticker-content .news-ticker-items .item:not(:last-of-type) {
		margin-right: 35px;
	}
}