.panel-header {
	--surface-foreground: var(--gray-200);
	--surface-background: var(--gray-200);
	--surface-mobile-nav: var(--tertiary-color-100);
	--text: var(--gray-100);
	--text-alt: var(--gray-900);
	
	position: relative;
	color: var(--text);
	background-color: var(--surface-background);
	z-index: 4;
}

.panel-header .header-inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 15px 22px 15px 18px;
}

@media screen and (min-width: 64em) {
	.panel-header .header-inner {
		padding: 27px 28px 27px 28px;
	}
}

@media screen and (min-width: 90em) {
	.panel-header .header-inner {
		padding: 27px 46px 27px 58px;
	}
}

.panel-header .header-inner .logo-cont {
	display: flex;
	justify-content: center;
	align-items: center;
}

.panel-header .header-inner .logo-cont img {
	width: 219px;
}

@media screen and (min-width: 64em) {
	.panel-header .header-inner .logo-cont img {
		width: 305px;
	}
}

@media screen and (min-width: 90em) {
	.panel-header .header-inner .logo-cont img {
		width: 365px;
	}
}

.panel-header .header-inner .nav-widgets-cont {
	display: flex;
}

.panel-header .header-inner .main-nav-widgets-cont {
	display: flex;
	justify-content: flex-end;
}

.panel-header .header-inner .top-cont,
.panel-header .header-inner .widgets {
	display: none;
}

.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;
		padding: 0 30px 0 0;
	}
}

.panel-header .primary-content-container {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.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);
}

@media (min-width: 64em) {
	.panel-header .header-inner .nav-widgets-cont {
		flex-direction: column;
	}

	.panel-header .header-inner .top-cont,
	.panel-header .header-inner .widgets {
		display: flex;
	}

	.panel-header .header-inner .top-cont {
		justify-content: flex-end;
	}

	.panel-header .header-inner .widgets {
		justify-content: center;
		align-items: center;
	}

	.panel-header .header-inner .top-cont.search-active .secondary-nav-container,
	.panel-header .header-inner .top-cont.search-active .weather-wrapper {
		opacity: 0;
	}
}

.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 {
		display: flex;
	}
}

.panel-header .mobile-nav-container {
	position: absolute;
	z-index: 10;
	display: none;
	width: 100%;
	pointer-events: none;
}

.panel-header .mobile-nav-container.active {
	display: flex;
	justify-content: flex-end;
}

.panel-header .mobile-nav-container .mobile-main-nav {
	padding-top: 18px;
}

@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: var(--gray-200);
}

.panel-header .mobile-nav-container .mobile-secondary-nav {
	background-color: var(--surface-mobile-nav);
	padding: 12px 0;
}

.panel-header .mobile-nav-container .mobile-footer-nav {
	padding: 11px 0;
}

.panel-header .mobile-nav-container .mobile-footer-nav .navigation-footer {
	display: block;
	margin: 0;
}

.panel-header .mobile-nav-container .mobile-footer-nav .navigation-footer .item {
	padding: 7px 20px;
}

.panel-header .mobile-nav-container .mobile-footer-nav .navigation-footer a {
	font-size: 0.8125rem;
	font-weight: 500;
}

.panel-header .mobile-nav-container .mobile-footer-nav .navigation-footer .item::after {
	display: none;
}

.panel-header .mobile-nav-container.active .mobile-nav {
	pointer-events: all;
}

.panel-header .mobile-nav .widgets {
	grid-auto-flow: dense;
	padding: 10px 14.5px;
	color: var(--text-alt);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--tertiary-color-100);
}

.panel-header .mobile-nav .search-cont {
	grid-column: 1 / -1;
}

.panel-header .mobile-nav .widgets > *:not(.search-cont) {
	align-self: center;
	justify-self: center;
}

.panel-header .mobile-nav .social .social-links {
	gap: 36px;
	padding: 36px 0 18px;
}

.panel-header .mobile-nav .social .social-links a {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--gray-800);
	border-radius: 50%;
	height: 34px;
	width: 34px;
	text-decoration: none;
	font-size: 1rem;
}

.panel-header .mobile-nav .social .social-links a i {
	color: var(--gray-200);
}

.panel-header .mobile-nav .decoration {
	display: block;
	background-color: var(--secondary-color-100);
	padding: 12px 0;

	background-image: url(/includes/public/assets/shared/decorations/line-dots-white.svg);
    background-repeat: repeat-x;
    background-size: auto;
	background-position: center;
    display: block;
}