.leca-popup-news-ticker {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 100vw;
	box-sizing: border-box;
	z-index: var(--lp-nt-z-index, 9990);
	display: flex;
	align-items: center;
	height: var(--lp-nt-height, 36px);
	min-height: var(--lp-nt-height, 36px);
	background: var(--lp-nt-bg, #1e293b);
	color: var(--lp-nt-color, #fff);
	font-size: 0.875rem;
	line-height: 1;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.leca-popup-news-ticker--top {
	top: 0;
}

.leca-popup-news-ticker--bottom {
	bottom: 0;
}

.leca-popup-news-ticker.is-hidden {
	display: none;
}

.leca-popup-news-ticker__icon {
	position: absolute;
	left: 0.75rem;
	top: 50%;
	z-index: 2;
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	height: 1.25rem;
	opacity: 0.9;
	transform: translateY(-50%);
	pointer-events: none;
}

.leca-popup-news-ticker__svg {
	display: inline-flex;
	width: 100%;
	height: 100%;
}

.leca-popup-news-ticker__svg svg {
	display: block;
	width: 100%;
	height: 100%;
}

.leca-popup-news-ticker__dashicon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.125rem;
	height: 1.125rem;
	font-size: 1.125rem;
	line-height: 1.125rem;
}

.leca-popup-news-ticker__media {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
	object-fit: contain;
}

.leca-popup-news-ticker__media svg {
	display: block;
	width: 100%;
	height: 100%;
}

.leca-popup-news-ticker__viewport {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	min-height: inherit;
	overflow: hidden;
	padding-left: 2.75rem;
	padding-right: 2.75rem;
	box-sizing: border-box;
}

.leca-popup-news-ticker--no-icon .leca-popup-news-ticker__viewport {
	padding-left: 0.75rem;
}

.leca-popup-news-ticker--no-close .leca-popup-news-ticker__viewport {
	padding-right: 0.75rem;
}

.leca-popup-news-ticker__viewport-inner {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.leca-popup-news-ticker__track {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	align-self: center;
	gap: var(--lp-nt-item-gap, 2rem);
	width: max-content;
	height: 100%;
	will-change: transform;
}

.leca-popup-news-ticker__part {
	display: inline-flex;
	flex-wrap: nowrap;
	flex-shrink: 0;
	align-items: center;
	align-self: center;
	gap: var(--lp-nt-item-gap, 2rem);
	height: 100%;
	white-space: nowrap;
	box-sizing: border-box;
}

.leca-popup-news-ticker__join {
	display: none;
}

.leca-popup-news-ticker__item {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	align-self: center;
	height: 100%;
	min-height: var(--lp-nt-height, 36px);
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: inherit;
	line-height: 1.25;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	vertical-align: middle;
	-webkit-appearance: none;
	appearance: none;
}

.leca-popup-news-ticker__item--link:hover,
.leca-popup-news-ticker__item--trigger:hover {
	text-decoration: underline;
}

.leca-popup-news-ticker__item--trigger:focus-visible,
.leca-popup-news-ticker__close:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.leca-popup-news-ticker__item-icon {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	margin-inline-end: 0.375rem;
	opacity: 0.92;
	pointer-events: none;
}

.leca-popup-news-ticker__item-icon .leca-popup-news-ticker__svg {
	width: 1em;
	height: 1em;
}

.leca-popup-news-ticker__item-icon .leca-popup-news-ticker__dashicon {
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
}

.leca-popup-news-ticker__item-icon .leca-popup-news-ticker__media {
	width: 1em;
	height: 1em;
}

.leca-popup-news-ticker__item-label {
	display: inline;
}

.leca-popup-news-ticker__close {
	position: absolute;
	right: 0.35rem;
	top: 50%;
	z-index: 2;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0.25rem;
	background: transparent;
	color: inherit;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	opacity: 0.85;
	transform: translateY(-50%);
}

.leca-popup-news-ticker__close:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.08);
}

.leca-popup-news-ticker--anim-marquee-css:not(.leca-popup-news-ticker--speed-static) .leca-popup-news-ticker__track {
	animation-name: leca-nt-marquee;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.leca-popup-news-ticker--speed-slow .leca-popup-news-ticker__track {
	animation-duration: 45s;
}

.leca-popup-news-ticker--speed-normal .leca-popup-news-ticker__track {
	animation-duration: 30s;
}

.leca-popup-news-ticker--speed-fast .leca-popup-news-ticker__track {
	animation-duration: 18s;
}

.leca-popup-news-ticker--anim-marquee-css:not(.leca-popup-news-ticker--speed-static) .leca-popup-news-ticker__track.is-marquee-ready {
	animation-play-state: running;
}

.leca-popup-news-ticker--anim-marquee-css:not(.leca-popup-news-ticker--speed-static) .leca-popup-news-ticker__track:not(.is-marquee-ready) {
	animation-play-state: paused;
}

.leca-popup-news-ticker--pause-on-hover.leca-popup-news-ticker--anim-marquee-css:not(.leca-popup-news-ticker--speed-static):hover .leca-popup-news-ticker__track.is-marquee-ready {
	animation-play-state: paused;
}

@keyframes leca-nt-marquee {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

body.leca-nt-body-padding-top {
	padding-top: var(--leca-nt-body-offset, 0);
}

body.leca-nt-body-padding-bottom {
	padding-bottom: var(--leca-nt-body-offset, 0);
}

@media (prefers-reduced-motion: reduce) {
	.leca-popup-news-ticker--anim-marquee-css .leca-popup-news-ticker__track {
		animation: none;
		transform: none;
	}
}
