.panel-header {
	--surface-foreground: var(--primary-color-700);
	--surface-background: var(--primary-color-900);
	--surface-mobile-nav: var(--primary-color-200);
	--text: white;
	--text-alt: var(--gray-900);
	position: absolute;
	width: 100%;
	height: 60px;
	color: var(--text);
	z-index: 10;
}

.panel-header:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 120px;
	opacity: 0.5;
	background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0) 100%);
	pointer-events: none;
}

@media (max-width: 64em) {
	.panel-header.mobile-active {
		background-color: var(--dark-blue);
	}
}

.panel-header .secondary-nav-container {
	display: none;
	padding: 0 20px;
	background-color: var(--surface-background);
}

@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 var(--space-5);
	height: 100%;
	position: relative;
	overflow: hidden;
}

.panel-header.active .inner-panel {
	pointer-events: none;
}
.panel-header.active .search-cont.active,
.panel-header.active .nav-grid {
	pointer-events: all;
}

@media (min-width: 64em) {
	.panel-header .primary-content-container {
		overflow: visible;
	}
	.panel-header .primary-content-container {
		padding: 0 25px;
	}
}

.panel-header .toggle-mobile {
	position: absolute;
    top: 10px;
    right: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: white;
	background: transparent;
}

.panel-header .menu-toggle-sticky.toggle-mobile {
    top: 13px;
    right: -50px;
    background-color: #e1a498;
    background-color: #356f66;
    padding: 8px;
    border-radius: 2px;
}

button.menu-toggle-sticky.toggle-mobile {}

.panel-header .menu-toggle-sticky.toggle-mobile.sticky {
	position: fixed;
	right: 10px;
}

.panel-header .toggle-mobile .icon {
	width: 30px;
	height: 18px;
	background: var(--mobile-toggle) center / contain no-repeat;
}

.panel-header .toggle-mobile .icon i {
	display: none;
}

.panel-header .toggle-mobile.active .icon {
	background: none;
}

.panel-header .toggle-mobile.active .icon i {
	display: inline-block;
}

.panel-header .magazine {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark-blue);
	text-decoration: none;
	padding: 8px 6px;
	background-color: white;
	border-radius: 20px;
	font-size: 13px;
	font-weight: normal;
	font-family: var(--font-body-condensed);
}

.panel-header .magazine i {
	margin-right: 4px;
}

@media (min-width: 40em) {
	.panel-header .magazine { width: 170px; }
}

@media (min-width: 64em) {
	.panel-header .toggle-mobile {
		display: none;
	}

	.panel-header {
		height: 158px;
		min-height: 90px;
		padding-top: 20px;
		position: fixed;
	}
	.panel-header.no-sticky {
		position: absolute;
	}
	.panel-header:before {
	    height: 200px;
	}

	.panel-header .magazine {
		padding: 0;
		background-color: transparent;
		color: white;
		font-size: 14px;
		line-height: 13px;
		width: auto;
		margin: 0 15px 0 30px;
		text-transform: uppercase;
		width: 170px;
		max-width: 110px;
	}

	.panel-header .magazine i {
		margin-right: 8px;
		font-size: 18px;
	}
}

.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
	padding: 10px 0;
	width: 150px;

}

.panel-header .primary-content-container .contentRender_name_plugins_common_logo img {
	width: 100%;
}

.panel-header .main-nav-widgets-container {
	display: grid;
	align-items: stretch;
	grid-template-columns: min-content;
	gap: var(--space-5);
}

@media (min-width: 64em) {
	.panel-header .main-nav-widgets-container {
		display: flex;
		justify-content: flex-end;
	}
	.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
		width: 250px;
	}
}

.panel-header .main-nav-widgets-container > *:not(.widgets) {
	display: flex;
	align-items: center;
}

.panel-header .main-nav-widgets-container .widgets {
	display: none;
	align-items: center;
}

@media (min-width: 64em) {
	.panel-header .main-nav-widgets-container .widgets {
		position: relative;
		display: flex;
	}

	.panel-header .main-nav-widgets-container .widgets::before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 1px;
		height: 60%;
		background-color: white;
	}

	.panel-header.microsites .main-nav-widgets-container .widgets::before {
		display: none;
	}
}

.panel-header .mobile-nav-container {
	position: absolute;
	z-index: 10;
	display: none;
	width: 100%;
	position: fixed;
}

.panel-header .mobile-nav-container.active {
	display: flex;
	justify-content: flex-end;
}

@media (min-width: 64em) {
	.panel-header .mobile-nav-container.active {
		display: none;
	}
}

.panel-header .mobile-nav-container .mobile-nav {
	max-width: 420px;
	width: 100%;
	background-color: #f2ece3;
}

.panel-header .mobile-nav .widgets {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-flow: dense;
	padding: 15px 20px;
}

.panel-header .mobile-nav .widgets > *:not(.search-cont) {
	align-self: center;
	justify-self: center;
}

.panel-header .mobile-nav .widgets .mobile-widgets {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	grid-column: 1 / 3;
	width: 100%;
}
