#top-bar-wrap.jubo-topbar-wrap {
	position: relative;
	background: #67646c;
	border-bottom: 0;
	z-index: 100;
}

#top-bar-wrap.jubo-topbar-wrap::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(183, 137, 10, 0), rgba(183, 137, 10, 0.55), rgba(231, 231, 217, 0.22), rgba(183, 137, 10, 0.55), rgba(183, 137, 10, 0));
	pointer-events: none;
}

#top-bar-wrap.jubo-topbar-wrap #top-bar {
	max-width: 100%;
	padding: 0;
}

.jubo-topbar {
	--jubo-topbar-background: #67646c;
	--jubo-topbar-text: #e7e7d9;
	--jubo-topbar-hover: #b7890a;
	--jubo-topbar-height-desktop: 38px;
	--jubo-topbar-height-mobile: 34px;
	position: relative;
	width: 100%;
	color: var(--jubo-topbar-text);
	background: var(--jubo-topbar-background);
	font-size: 13px;
	letter-spacing: 0.055em;
	font-weight: 500;
}

.jubo-topbar__desktop,
.jubo-topbar__mobile {
	width: 100%;
}

.jubo-topbar__desktop {
	display: block;
}

.jubo-topbar__slides {
	position: relative;
	min-height: var(--jubo-topbar-height-desktop);
}

.jubo-topbar__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.jubo-topbar__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.jubo-topbar__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: var(--jubo-topbar-height-desktop);
	padding: 8px 22px;
	color: var(--jubo-topbar-text);
	text-decoration: none;
	text-align: center;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: color 0.25s ease, text-shadow 0.25s ease, background-color 0.25s ease;
}

.jubo-topbar__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, rgba(255, 255, 255, 0) 28%, rgba(255, 255, 255, 0.16) 49%, rgba(255, 255, 255, 0) 70%);
	opacity: 0;
	transform: translateX(-10%);
	transition: opacity 0.3s ease, transform 0.45s ease;
	pointer-events: none;
}

.jubo-topbar__item.is-link:hover,
.jubo-topbar__item.is-link:focus,
.jubo-topbar__item.is-link:focus-visible {
	color: var(--jubo-topbar-hover);
	text-shadow: 0 0 18px rgba(183, 137, 10, 0.2);
	outline: none;
}

.jubo-topbar__item.is-link:hover::after,
.jubo-topbar__item.is-link:focus::after,
.jubo-topbar__item.is-link:focus-visible::after {
	opacity: 0.42;
	transform: translateX(10%);
}

.jubo-topbar__text {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
}

.jubo-topbar__mobile {
	display: none;
}

@media (max-width: 767px) {
	.jubo-topbar {
		font-size: 12px;
		letter-spacing: 0.045em;
	}

	.jubo-topbar__desktop {
		display: none;
	}

	.jubo-topbar__mobile {
		display: block;
	}

	.jubo-topbar__mobile .jubo-topbar__item {
		min-height: var(--jubo-topbar-height-mobile);
		padding: 7px 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.jubo-topbar__slide,
	.jubo-topbar__item,
	.jubo-topbar__item::after {
		transition: none;
	}
}
