.panel-header {
	--surface-foreground: var(--blue-33);
	--surface-background: var(--primary-color-900);
	--surface-mobile-nav: var(--blue-33);
	--text: var(--white);
	--text-alt: var(--gray-900);
	color: var(--text);
	position: absolute;
	width: 100%;
	/* top: 0;
	left: 0; */
	z-index: 1;
}

.panel-header .secondary-nav-container {
	display: none;
	padding: 0 20px;
}

@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 25px 0 15px;
	background: rgb(0,27,59);
	background: linear-gradient(180deg, rgba(0,27,59,0.6) 0%, rgba(0,0,0,0) 100%);
	z-index: 11;
	position: relative;
}

.panel-header.mobile-active .primary-content-container {
	background: transparent;
}

.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
	padding: 5px 0 10px;
	width: 75px;
}

.panel-header .main-nav-widgets-container {
	display: grid;
	align-items: stretch;
	grid-template-columns: min-content;
	gap: var(--space-5);
	padding-top: 10px;
}

.microsite .nav-container .menu-toggle.active::after {
	top: -25px;
}

@media (min-width: 64em) {
	.panel-header .main-nav-widgets-container {
		grid-template-columns: min-content min-content;
		display: flex;
		flex-direction: column;
		padding-top: 13px;
		gap: 0px;
	}
}

.panel-header .main-nav-widgets-container > *:not(.widgets) {
	display: flex;
	align-items: center;
}

.panel-header .main-nav-widgets-container .top-row {
	display: none;
}

.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%;
}

.panel-header .mobile-nav-container.active {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.panel-header .mobile-nav-container.active::after {
	content: '';
	pointer-events: none;
	position: absolute;
	right: 0;
	top: -60px;
	display: block;
	width: 100%;
	height: calc(100% + 60px);
	background-image: url(https://assets.simpleviewinc.com/simpleview/image/upload/v1/clients/fishermanswharfca-redesign/itineraries_bg_e1931ac3-ac1c-4ffd-b4b8-bdbd946584b6.png);
	/* background-repeat: no-repeat; */
	background-position: top left;
	background-size: 260%;
	z-index: -1;
	max-width: 420px;
}

@media (min-width: 64em) {
	.panel-header .mobile-nav-container.active {
		display: none;
	}	
}

.panel-header .mobile-nav-container .mobile-nav {
	max-width: 420px;
	width: 100%;
	padding-bottom: 15px;
}

.panel-header .mobile-nav .widgets {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-flow: dense;
	padding: 9px 20px 8px 40px;
	color: var(--text-alt);
	border: 2px solid var(--blue-44);
	border-left:  none;
	border-right: none;
	background-color: var(--blue-33);
	margin-top: -1px;
}

.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 .weather-wrapper {
	display: none;
}

.panel-header.mobile-active .weather-wrapper {
	display: block;
}

@media screen and (min-width: 64em) {
	.panel-header .primary-content-container {
		padding: 0 40px 0 40px;
	}
	.panel-header .primary-content-container .contentRender_name_plugins_common_logo {
		width: 180px;
		padding: 15px 0;
	}
	.panel-header .main-nav-widgets-container .top-row {
		display: flex;
		justify-content: flex-end;
	}

	.panel-header .secondary-nav-container {
		padding: 0 22px 0 0;
		border-bottom: 1px solid var(--blue-8d);
	}

	.panel-header .top-row .weather-wrapper {
		display: inline-block;
	}

	.panel-header .bottom-row .weather-wrapper {
		display: none;
	}
    .panel-header.search-active .primary-content-container {
    	background-color: var(--blue-36);
    }

    .panel-header.search-active .navigation,
    .panel-header.search-active .secondary-nav-container,
    .panel-header.search-active .top-row .weather-wrapper {
    	display: none;
    }
}