.sws-marquee {
	--sws-marquee-slide: 1.2s;
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #111111;
	color: #ffffff;
	height: 36px;
	font-size: 14px;
}

.sws-marquee-item {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 1rem;
	white-space: nowrap;
	transform: translateX(100%);
	transition: none;
}

.sws-marquee-item.is-current {
	transform: translateX(0);
	z-index: 2;
}

.sws-marquee-item.is-leaving {
	transform: translateX(-100%);
	z-index: 1;
}

.sws-marquee.is-ready .sws-marquee-item.is-current,
.sws-marquee.is-ready .sws-marquee-item.is-leaving {
	transition: transform var(--sws-marquee-slide) ease-in;
}

.sws-marquee-item a {
	color: inherit;
	text-decoration: underline;
}
