.panel-header {
	--surface-foreground: var(--white);
	--surface-background: var(--primary-color-900);
	--surface-mobile-nav: var(--primary-color-200);
	--text: var(--gray-100);
	--text-alt: var(--gray-900);
	
	position: relative;
	color: var(--text);
	z-index: 4;
}

@media (min-width: 1024px) {
	.panel-header.sticky.active {
		position: fixed;
		width: 100%;
	}
}

#sticky-observer-point {
	position: absolute;
	top: 75px;
	left: 25%;
	z-index: -5;
	opacity: 0;
	height: 10px;
	width: 20px;
}

.panel-header .header-inner {
	display: flex;
	flex-direction: column-reverse;
}

.panel-header .secondary-nav-container {
	display: none;
	padding: 0 10px;
	background-color: var(--surface-foreground);
}

.panel-header .nav-cont {
	display: flex;
	position: relative;
}

@media (min-width: 64em) {
	.panel-header.sticky .nav-cont {
		padding-right: 50px;
	}
}

.panel-header .nav-cont-upper {
	display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media (min-width: 40em) {
	.panel-header .secondary-nav-container {
		display: block;
	}
}

.panel-header .primary-content-container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 0 0 0 var(--space-8);
	background-color: var(--surface-foreground);
}

@media (min-width: 40em) {
	.panel-header.sticky .primary-content-container {
		align-items: center;
	}
}

@media (min-width: 64em) {
	.panel-header.sticky .primary-content-container {
		height: 88px;
	}
}

@media (max-width: 1024px) {
	.panel-header.mobile-nav-active .primary-content-container {
		background-color: var(--black);
	}
}

.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
	padding: var(--space-4) 0;
}

.panel-header .main-nav-widgets-container {
	display: grid;
	align-items: stretch;
	grid-template-columns: min-content;
	gap: var(--space-5);
}

.panel-header .custom-header-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-2) var(--space-1) var(--space-2) var(--space-2);
	font-family: var(--font-display);
	font-size: 10px;
	font-weight: 700;
	line-height: normal;
	height: 100%;
	max-width: 53px;
	aspect-ratio: 53 / 72;
}

.panel-header .custom-header-link.orange {
	background-color: var(--orange);
	color: var(--white);
}

.panel-header .custom-header-link.yellow {
	background-color: var(--gold);
	color: var(--black);
}

.panel-header .header-left {
	display: none;
}

.panel-header .logo img {
	max-width: 80px;
}

.panel-header .logo .mobile {
	display: none;
}

@media (max-width: 64em) {
	.panel-header.mobile-nav-active .logo .mobile {
		display: block;
	}
	
	.panel-header.mobile-nav-active .logo .default {
		display: none;
	}
}

@media (min-width: 64em) {
	.panel-header .main-nav-widgets-container {
		grid-template-columns: min-content min-content;
		margin-left: auto;
	}
	.panel-header .header-left {
		display: flex;
		flex-direction: column;
	}
	.panel-header .custom-header-link + .decoration.hide-desktop,
	.panel-header .custom-header-link.hide-desktop {
		display: none;
	}

	.panel-header.sticky .custom-header-link.hide-desktop {
		display: flex;
	}

	.panel-header:not(.sticky) .custom-header-link {
		aspect-ratio: 0;
		max-width: none;
		padding: 8px;
		font-size: 16px;
		min-width: 160px;
	}

	.panel-header .logo img {
		max-width: 105px;
	}
}

.panel-header .main-nav-widgets-container > *:not(.widgets) {
	display: flex;
	align-items: center;
}

.panel-header .widgets {
	display: flex;
	flex-direction: row;
}

.panel-header .widgets .contentRender_name_plugins_common_header_link .decoration {
	display: none;
}

@media (min-width: 64em) {
	.panel-header .widgets {
		flex-direction: row-reverse;
	}
}


@media (min-width: 64em) {
	.panel-header.sticky .widgets {
		flex-direction: column;
		position: fixed;
		right: 0;
		top: 0;
	}

	.panel-header.sticky .widgets .contentRender_name_plugins_common_header_link {
		flex-direction: column;
	}

	.panel-header.sticky .widgets .contentRender_name_plugins_common_header_link a {
		height: 88px;
		width: 53px;
	}

	.panel-header.sticky .widgets .contentRender_name_plugins_common_header_link:last-child a {
		height: 75px;
	}

	.panel-header.sticky .widgets .contentRender_name_plugins_common_header_link:last-child .decoration {
		display: block;
	}
}

@media (min-width: 64em) and (max-width: 78.125em) {
	.panel-header .primary-content-container {
		padding-left: var(--space-2);
	}
	.panel-header:not(.sticky) .custom-header-link {
		font-size: 13px;
		min-width: 120px;
	}
}

.panel-header .widgets > * {
	display: flex;
	height: 100%;
	align-items: center;
	/* justify-content: flex-end; */
}

.panel-header .menu-toggle.mobile {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 53 / 72;
	max-width: 53px;
	background-color: var(--black);
	outline: none;
}

.panel-header .menu-toggle.mobile span {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 35px;
	height: 35px;
	font-size: 0;
	color: white;
	background: url('/includes/public/assets/shared/menu-search-icon.svg') center / contain no-repeat;
}

.panel-header .menu-toggle.mobile .fa-times {
	display: none;
}

.panel-header .menu-toggle.mobile.active .fa-times {
	display: block;
	font-size: 20px;
}

.panel-header .menu-toggle.mobile.active span {
	background: none;
}

@media (min-width: 64em) {
	.panel-header .menu-toggle.mobile {
		display: none;
	}
}

.panel-header .mobile-nav-container {
	position: absolute;
	z-index: 10;
	display: none;
	width: 100%;
	pointer-events: none;
}

.panel-header.mobile-nav-active .mobile-nav-container {
	display: flex;
	justify-content: flex-end;
	pointer-events: all;
}

.panel-header .mobile-nav-container .mobile-nav {
	max-width: 420px;
	width: 100%;
	background-color: var(--black);
	padding: var(--space-6) 0;
}

.panel-header .mobile-nav-container .mobile-nav > * {
	padding-left: var(--space-5);
	padding-right: var(--space-5);
}

.panel-header .mobile-nav-container .mobile-nav .mobile-secondary-nav {
	background-color: var(--white);
}

.panel-header.microsites .mobile-nav-container .mobile-nav .mobile-secondary-nav {
	background-color: var(--black);
}

.panel-header .mobile-nav-container.active .mobile-nav {
	pointer-events: all;
}

.panel-header .mobile-nav .widgets {
	display: flex;
	flex-direction: column;
	grid-auto-flow: dense;
	color: var(--text-alt);
}

.panel-header .mobile-nav .search-cont {
	width: 100%;
    max-width: 335px;
    height: 40px;
    margin-left: auto;
}

.panel-header .mobile-nav .widgets > *:not(.search-cont) {
	align-self: flex-end;
	justify-self: center;
}

@media (min-width: 64em) {
	.panel-header .mobile-nav-container {
		display: none !important;
	}	
}