#SuperHeaderBar_wrapper {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 99999;
}

#SuperHeaderBar_wrapper .shb-spacer {
	height: 0;
	margin: 0;
	padding: 0;
}

#SuperHeaderBar_wrapper + * {
	margin-top: 0 !important;
}

#SuperHeaderBar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	min-height: var(--shb-min-height, 120px);
	background: var(--shb-background, #3399ff);
	color: var(--shb-text, #0b2540);
	font-family: "Segoe UI", Tahoma, sans-serif;
}

#SuperHeaderBar.shb-has-shadow {
	box-shadow: 0 10px 24px rgba(10, 38, 66, 0.2);
}

#SuperHeaderBar.shb-no-shadow {
	box-shadow: none;
}

#SuperHeaderBar * {
	box-sizing: border-box;
}

#SuperHeaderBar a {
	color: var(--shb-link, #0b2540);
}

#SuperHeaderBar .shb-close {
	position: absolute;
	top: 8px;
	right: 14px;
	z-index: 3;
	border: 0;
	background: transparent;
	color: var(--shb-text, #0b2540);
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
	padding: 0;
}

#SuperHeaderBar .shb-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 26px 20px 18px;
	text-align: center;
}

#SuperHeaderBar .shb-rotator {
	width: 100%;
	max-width: 960px;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

#SuperHeaderBar .shb-slide {
	display: none;
	width: 100%;
}

#SuperHeaderBar .shb-slide.is-active {
	display: block;
}

#SuperHeaderBar .shb-slide > :first-child {
	margin-top: 0;
}

#SuperHeaderBar .shb-slide > :last-child {
	margin-bottom: 0;
}

#SuperHeaderBar .shb-share {
	display: flex;
	width: 100%;
	max-width: 960px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 10px;
	text-align: center;
}

#SuperHeaderBar .shb-share-label {
	width: 100%;
	margin: 0;
	font-size: 12px;
	font-style: italic;
	font-weight: 700;
	letter-spacing: 0.04em;
}

#SuperHeaderBar .shb-share-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border: 1px solid currentColor;
	border-radius: 999px;
	background: transparent;
	font-size: 12px;
	line-height: 1.2;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

#SuperHeaderBar .shb-share-link:hover,
#SuperHeaderBar .shb-share-link:focus {
	opacity: 0.85;
	transform: translateY(-1px);
}

@media (max-width: 640px) {
	#SuperHeaderBar .shb-inner {
		gap: 12px;
		padding: 26px 14px 14px;
	}

	#SuperHeaderBar .shb-rotator {
		min-height: 0;
	}
}
