.wt-store-notices-bar {
	--wt-store-notices-transition: 600ms;
	--wt-store-notices-bg: #121212;
	--wt-store-notices-color: #fff;
	background: var(--wt-store-notices-bg);
	color: var(--wt-store-notices-color);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 30;
}

.wt-store-notices-track {
	align-items: center;
	display: flex;
	min-height: 42px;
	position: relative;
}

.wt-store-notice {
	align-items: center;
	box-sizing: border-box;
	display: flex;
	inset: 0;
	justify-content: center;
	min-height: 42px;
	opacity: 0;
	padding: 10px 24px;
	position: absolute;
	transform: translateX(100%);
	transition:
		transform var(--wt-store-notices-transition) ease,
		opacity var(--wt-store-notices-transition) ease;
	width: 100%;
}

.wt-store-notice.is-active {
	opacity: 1;
	transform: translateX(0);
}

.wt-store-notice.is-next {
	opacity: 1;
	transform: translateX(100%);
}

.wt-store-notice.is-exiting {
	opacity: 0;
	transform: translateX(-100%);
}

.wt-store-notice a,
.wt-store-notice span {
	color: inherit;
	display: inline-block;
	max-width: min(980px, 100%);
	text-decoration: none;
}

.wt-store-notice a:hover,
.wt-store-notice a:focus {
	text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
	.wt-store-notice {
		transition: none;
	}
}
