.trikona-global-ticker {
	background: transparent;
	border: 0;
	color: #000000;
	left: 50%;
	margin-top: 0;
	position: fixed;
	top: 110px;
	transform: translateX(-50%);
	width: 50%;
	z-index: 9998;
}

.trikona-global-ticker__content {
	align-items: center;
	display: flex;
	gap: 12px;
	min-height: 32px;
	padding: 0;
	width: 100%;
}

.trikona-global-ticker__viewport {
	align-items: center;
	display: flex;
	flex: 1;
	height: 32px;
	min-width: 0;
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.trikona-global-ticker__item {
	animation-name: trikonaTickerMarquee;
	animation-duration: 8s;
	animation-fill-mode: both;
	animation-play-state: paused;
	animation-timing-function: linear;
	color: #000000;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(100%, -50%);
	white-space: nowrap;
}

.trikona-global-ticker__item,
.trikona-global-ticker__item * {
	color: inherit;
	font-weight: 700;
}

.trikona-global-ticker__item.is-active {
	animation-play-state: running;
	opacity: 1;
	transform: translate(0, -50%);
}

.trikona-global-ticker.is-paused .trikona-global-ticker__item.is-active {
	animation-play-state: paused !important;
}

.trikona-global-ticker__item a {
	color: inherit;
	text-decoration: underline;
}

.trikona-global-ticker__item a:hover {
	color: inherit;
}

.trikona-global-ticker__close {
	background: transparent;
	border: 0;
	color: #000000;
	cursor: pointer;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	padding: 0 4px;
}

.trikona-global-ticker__close:hover {
	color: #000000;
}

@keyframes trikonaTickerMarquee {
	0% {
		transform: translate(100%, -50%);
	}

	100% {
		transform: translate(-120%, -50%);
	}
}

@media (max-width: 767px) {
	.trikona-global-ticker {
		left: 0;
		transform: none;
		width: 100%;
	}

	.trikona-global-ticker__content {
		min-height: 30px;
		width: 100%;
	}

	.trikona-global-ticker__viewport {
		height: 30px;
	}

	.trikona-global-ticker__item {
		font-size: 13px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.trikona-global-ticker__item,
	.trikona-global-ticker__item.is-active {
		animation: none !important;
		left: 0;
		opacity: 1;
		transform: translate(0, -50%);
	}
}
