.ejef-live-banner[hidden] { display: none !important; }

.ejef-live-banner {
	--ejef-live-gap: 18px;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 14px 0;
	background: #fff;
	border-top: 1px solid rgba(0,0,0,.08);
	border-bottom: 1px solid rgba(0,0,0,.08);
}

.ejef-live-banner__inner {
	display: flex;
	align-items: center;
	gap: var(--ejef-live-gap);
	width: 100%;
	margin: 0 auto;
	padding: 0 22px;
	box-sizing: border-box;
}

.ejef-live-banner__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex: 0 0 auto;
	font-weight: 700;
	font-size: 14px;
	line-height: 1;
	letter-spacing: .04em;
	white-space: nowrap;
}

.ejef-live-banner__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #e00000;
	box-shadow: 0 0 0 0 rgba(224, 0, 0, .35);
	animation: ejef-live-pulse 1.8s infinite;
}

.ejef-live-banner__divider {
	opacity: .45;
	font-size: 18px;
	line-height: 1;
	flex: 0 0 auto;
}

.ejef-live-banner__items {
	position: relative;
	min-width: 0;
	flex: 1 1 auto;
	min-height: 46px;
}

.ejef-live-banner__item {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	text-decoration: none !important;
	color: inherit !important;
	opacity: 0;
	transform: translateY(5px);
	pointer-events: none;
	transition: opacity .35s ease, transform .35s ease;
}

.ejef-live-banner__item.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.ejef-live-banner__title {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	font-weight: 600;
}

.ejef-live-banner__cta {
	display: block;
	flex: 0 0 auto;
	margin-left: 20px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: .8;
}

.ejef-live-banner__cta::before {
	content: "-";
	display: inline-block;
	margin-right: 20px;
}

.ejef-live-banner__navigation {
	display: flex;
	align-self: stretch;
	flex: 0 0 auto;
	margin-right: -22px;
	border-left: 1px solid #e0e0e0;
}

.ejef-live-banner__nav {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	min-width: 40px;
	padding: 0;
	border: 0;
	border-right: 1px solid #e0e0e0;
	border-radius: 0;
	background: #fff;
	color: #333;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
}

.ejef-live-banner__nav:hover,
.ejef-live-banner__nav:focus-visible {
	background: #f3f3f3;
	color: #111;
	outline: none;
}

.ejef-live-banner__nav:focus-visible {
	box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .18);
}

.ejef-live-banner__nav .fa {
	font-family: FontAwesome, 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

@keyframes ejef-live-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(224, 0, 0, .35); }
	50% { box-shadow: 0 0 0 6px rgba(224, 0, 0, 0); }
}

@media (max-width: 780px) {
	.ejef-live-banner {
		padding: 12px 0;
	}

	.ejef-live-banner__inner {
		gap: 11px;
		padding: 0 15px;
	}

	.ejef-live-banner__badge {
		font-size: 12px;
		gap: 6px;
	}

	.ejef-live-banner__dot {
		width: 8px;
		height: 8px;
	}

	.ejef-live-banner__divider {
		display: none;
	}

	.ejef-live-banner__navigation {
		margin-right: -15px;
	}

	.ejef-live-banner__nav {
		width: 36px;
		min-width: 36px;
		font-size: 16px;
	}

	.ejef-live-banner__items {
		min-height: 40px;
	}

	.ejef-live-banner__item {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 4px;
	}

	.ejef-live-banner__title {
		width: 100%;
		font-size: 13px;
	}

	.ejef-live-banner__cta {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ejef-live-banner__dot,
	.ejef-live-banner__item {
		animation: none;
		transition: none;
	}
}
