

.logo {
	position: relative;
	top: 4px;
}

/* Top Bar Container */
.top-bar-container {
	background: #fdd10c;
}
.top-bar .icon {
	margin-right: 5px;
}

/* Header Container */

.header-container {
	background: #fff;
}
.header-right .list-inline, .header-right .weather-city{
	margin-bottom: 0;
}


/* Top Bar */
.top-bar {
	display: none;
}

/* Mobile Header */
.wsmobileheader img {
	display: block;
	margin: 0 auto;
	text-align: center;
	float: none;
	margin-top: 12px;
}

/* Moble Overlay */
.overlapblackbg {
	display: none;
}
.wsoffcanvasopener .overlapblackbg,
.mobile-search-overlay .overlapblackbg {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.75);
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 102;
}

/* Hamburger Menu */
@media (max-width: 767px){
	.header{
		height: 460px;
	}
}
.wsmobileheader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #fff;
	border-bottom: 1px solid #e4e4e4;
	min-height: 50px;
	z-index: 1000;
}

.animated-arrow {
	display: inline-block;
	position: fixed;
	top: 0;
	left: 0;
	background: #044b1b;
	width: 50px;
	height: 50px;
	padding: 0;
	margin: 0;
	cursor: pointer;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
.animated-arrow .menu-icon {
    top: 18px;
    left: 13px;
}
.wsoffcanvasopener .animated-arrow .menu-icon {
    top: 12px;
}
.animated-arrow .menu-icon,
.animated-arrow .menu-icon:before,
.animated-arrow .menu-icon:after {
	display: block;
	position: absolute;
	height: 2px;
	width: 23px;
	background-color: #fff;
	content: '';
	transition: all 500ms ease-in-out;
}
.animated-arrow .menu-icon:before {
    top: -7px;
}
.animated-arrow .menu-icon:after {
    bottom: -7px;
}
.animated-arrow .menu-text {
    text-align: center;
    display: block;
    margin-top: 31px;
    text-transform: uppercase;
    font-size: 11px;
    color: #fff;
}

/* Search Icon */
#wssearchtoggle {
	position: fixed;
	top: 0;
	right: 0;
	padding: 10px;
	margin: 0;
	font-size: 20px;
}

/* NEW MOBILE SEARCH */

.mobile-search-form {
    display: none;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #044b1b;
    height: 50px;
}
.mobile-search-button {
    width: 51px; /* compensate for border */
    height: 49px;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    text-align: center;
    border-left: 2px solid #eee;
}
.mobile-search-button .mobile-search-icon {
    color: #044b1b ;
    font-size: 19px;
    margin-top: 7px;
    padding-bottom: 4px;
}
.mobile-search-button .mobile-search-text {
    text-align: center;
    display: block;
    text-transform: uppercase;
    font-size: 11px;
    color: #044b1b ;
}
.mobile-search-input {
    width: 85%;
    position: relative;
    float: left;
}
.mobile-search-input-inner {
    margin: 7px;
}
.mobile-search-input input {
    width: 100%;
    height: 36px;
    text-indent: 10px;
    font-size: 16px;
    border-radius: 2px;
}
.mobile-search-input button {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
}
.mobile-search-input button .mobile-search-icon {
    color: #044B1B;
    font-size: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
}
.mobile-search-close-button {
    width: 15%;
    height: 100%;
    display: inline-block;
    text-align: center;
}
.mobile-search-close-button .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}
.mobile-search-close-button .icon img {
    width: 100%;
    height: 100%;
    margin-top: 15px;
}

/* Hamburger Menu Turns Into Close Btn */

.wsoffcanvasopener .animated-arrow .menu-icon {
	background: transparent; /* hide unused part */
}
.wsoffcanvasopener .animated-arrow .menu-icon:before,
.wsoffcanvasopener .animated-arrow .menu-icon:after {
	top: 7px;
	background-color: #fff;
}
.wsoffcanvasopener .animated-arrow .menu-icon:before {
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wsoffcanvasopener .animated-arrow .menu-icon:after {
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Mobile Menu */
.wsmain {
	position: fixed;
	top: 0;
	left: -320px; /* hide the menu from view, until opened */
	width: 320px;
	height: 100%;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
	background: none;
	z-index: 103;
}
.wsoffcanvasopener .wsmain {
	left: 0px;
	-webkit-transition: all 0.4s ease-in-out;
	-moz-transition: all 0.4s ease-in-out;
	-o-transition: all 0.4s ease-in-out;
	-ms-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}
@media only screen and (min-width : 768px) {
	.wsmenu{
		display:table;
		width:100%;
	}
	#block-portseattleflysea-main-menu{
		display: table-cell;
		vertical-align: middle;
	}
	.megamenu ul{min-height: 300px;}
	.megamenu > ul{border: 0;}
}
.wsmenu {
	overflow-y: auto;
}

/* Main Menu Links */
.wsmenu-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.wsmenu-list > li {
	position: relative;

}
.wsmenu-list > li:hover{
        background: #044b1b ;
}
.wsmenu-list > li.active {
        background: #06792b;
}
.wsmenu-list > li > a {
	display: block;
	position: static;
	padding: 12px 15px;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}

/* Main Menu Icon */
.wsmenu-click {
	position: absolute;
	width: 100%;
	height: auto;
	cursor: pointer;
}
.wsmenu-click i {
	margin-top: 10px;
	margin-right: 10px;
	float: right;
	color: rgba(255,255,255,.5);
}

/* Mega Menu */
.wsmenu-list li > .megamenu {
	-o-transform: none !important;
	-moz-transform: none !important;
	-webkit-transform: none !important;
	transform: none !important;
	background: #595959;
	display: none;
	padding: 15px;
}

/* Mega Menu Column */
.megamenu div {
	padding: 0;
}
.megamenu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-right: 1px solid #0ef170;
	padding-left: 10px;
	padding-right: 10px;
	font-family: 'Source Sans Pro', sans-serif;
}
.megamenu li a {
	text-align: left;
	display: block;
	margin: 0 15px 0 0;
	padding: 7px 15px;
	color: #fff;
	font-size: 17px;
	text-decoration: none;
	line-height: 20px;
	font-weight: normal;
	font-family:'Source Sans Pro', sans-serif;
}
.megamenu li:hover a {
	background: #044b1b ;
	text-decoration: none;
}
.megamenu li > a {
	background: none;
	padding: 8px 15px;
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: normal;
	text-transform: capitalize;
}
.megamenu .col-md-4:first-child li a{
	background-color: #fff;
	color: #044b1b;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 15px 10px 0;
}
.megamenu .col-md-4:last-child{
	border-right: none;
}

/* Mega Menu Link Icon */
.megamenu li .fa {
	margin-right: 5px;
}
.megamenu li a.fa:hover {
	background: #044b1b;
	color: #fff;
}
.megamenu img {
	width: 100%;
}

/* Mobile Header */
.header {
	width: 100%;
	display: block;
	min-height: 214px;
	padding-top: 0px;
}
.search-bar {
	background: none;
	overflow: auto;
	padding: 0 15px;
	display: none; /* hide desktop search on mobile */
}
.topmenusearch {
	display: block;
	width: 100%;
	height: 30px;
	float: right;
	position: relative;
	margin: 0;
	padding: 0;
}
.topmenusearch input {
	width: 100%;
	height: 30px;
	float: right;
	position: relative;
	top: 0;
	right: 0;
	bottom: 0;
	outline: none;
	border: 0;
	padding: 0;
	margin: 0;
	text-indent: 15px;
	color: #616365;
	background: #fff;
	z-index: 2;
}
.topmenusearch input:focus {
	color: #616365;
}
.topmenusearch button {
	width: 40px;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	cursor: pointer;
	opacity: 1;
	color: #fff;
	background: #fff;
	border: 0;
	-webkit-transition: all 0.7s ease 0s;
	-moz-transition: all 0.7s ease 0s;
	-o-transition: all 0.7s ease 0s;
	transition: all 0.7s ease 0s;
	z-index: 2;
}
.filters .search-bar .topmenusearch button {
	background: none;
	top: auto;
}
.topmenusearch input:focus ~ button,
.topmenusearch button:hover {
	opacity: 1;
}
.topmenusearch .searchicon {
	color: #044B1B;
	font-size: 20px;
}

/* Utility Nav */
.utility-nav {
	display: none;
}
.mobile-utility.utility-nav {
	display: block;
}
.mobile-utility.utility-nav ul {
    margin: 10px 0;
    padding: 5px 0;
    border-top: 2px solid #0ef170;
    border-bottom: 2px solid #0ef170;
}
.mobile-utility.utility-nav ul li a {
    color: #fff;
    padding: 7px;
    display: block;
    font-size: 18px;
}
.mobile-utility.utility-translate {

}
.mobile-utility.utility-font-size ul {
    margin: 10px 0 0 0;
    padding: 12px 0 0 0;
    list-style: none;
    border-top: 2px solid #0ef170;
    overflow: auto;
}
.mobile-utility.utility-font-size ul li {
	display: inline-block;
	float: left;
	margin-right: 7px;
}
.mobile-utility.utility-font-size ul li a {
	background: #fff;
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 27px;
	border: 1px solid #a3dbe8;
}
.mobile-utility.utility-font-size ul li.a-default a {
	font-size: 15px;
}
.mobile-utility.utility-font-size ul li.a-large a {
	font-size: 20px;
}
.mobile-utility.utility-font-size ul li.a-larger a {
	font-size: 30px;
}
.utility-nav-m {
	border-top: 1px solid #ccc;
}
.utility-nav-m > li > a {
	font-size: 12px;
}

.main-nav-container {
	background: #044b1b;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.20);
}

/* DESKTOP */

@media only screen and (min-width: 768px) {
	.nav-fixed{
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		background: #044b1b;
		z-index: 999;
	}

	.utility-weather {
		float: right;
		clear: both;
		position: relative;
		top: 15px;
	}

	.weather-city {
		margin: 0;
	}
	.weather-city .icon {
		padding: 0 5px;
	}


	/* Header (Desktop) */

	.wsmobileheader {
		display: none;
	}
	.header-desktop {
		padding: 5px 0 15px 0;
		background: #fff;
	}
	.header-left {
		float: left;
	}
	.header-right {
		float: right;
	}

	/* Utility Nav (Desktop) */

	.utility-nav-m {
		display: none;
		visibility: hidden;
	}
	.utility-nav {
		display: inline-block;
		float: left;
	}
	.utility-nav a {
		padding: 0 5px;
	}

	.utility-nav li {
	font-size: 16px;
}
	.utility-nav li a {
		font-size: 15px;
		font-weight: 600;
	}

	.utility-font-size li {
		display: inline-block;
		float: left;
		margin-left: -1px;
	}
	.utility-font-size {
		display: none;
		float: left;
		margin-left: 15px;
		text-align: center;
		margin-top: -2px;
	}
	.utility-font-size a {
		font-size: 15px;
		display: inline-block;
		border: 1px solid #a3dbe8;
		height: 28px;
		width: 28px;
		line-height: 30px;
	}
	.utility-font-size .a-default a {
		font-size: 14px;
	}
	.utility-font-size .a-large a {
		font-size: 20px;
		line-height: 28px;
	}
	.utility-font-size .a-larger a {
		font-size: 24px;
		line-height: 28px;
	}
	.utility-font-size a:link {
		text-decoration: none;
	}
	.utility-font-size a strong{
		font-weight: 600;
	}
	.utility-weather p {
		font-size: 17px;
	}
	.list-inline li {
		padding: 0;

	}

	.utility-translate {
		float: left;
		margin-left: 15px;
	}

	/* Search Bar (Desktop) */

	.search-bar {
		padding: 0;
		margin-top: 6px;
		border: 1px solid #e3e3db;
		float: right;
		display: block;
	}
	.topmenusearch {
		width: 200px;
	}

	.filters .search-bar {
		float: none;
		margin: 0;
		overflow: visible;
		display: inline-block;
		border: none;
	}

	.filters .search-bar .topmenusearch {
		height: auto;
		float: none;
	}

	.filters .search-bar .topmenusearch input {
		font-size: 14px;
		margin: 0;
		padding: 0;
		float: none;
		border: 2px solid #e6e6e6;
		border-radius: 4px;
	}

	.filters .search-bar .topmenusearch .btnstyle {
		/* position: relative; */
		width: auto;
		padding: 0;
		margin: 0;
	}

	.filters .search-bar .searchicon {
		font-size: 16px;
		margin-right: 7px;
		margin-bottom: 7px;
	}

	/* Mega Menu (Desktop) */

	.wsmain {
		width: 100%;
		position: relative;
		left: 0;
	}
	.wsmenu {
		overflow: visible;
	}
	.wsmenu-list {
		background: #044b1b;
		width: 100%;
		overflow: auto;
	}
	.wsmenu-list .icon {
		display: inline-block;
		font-size: 15px;
		margin-left: 7px;
		position: relative;
	    bottom: 1px;
	}

	.wsmenu-list > li {
		width: auto;
		display: inline-block;
		clear: none;
		float: left;
		position: inherit;
		background: #044b1b;
	}
	.wsmenu-list > li.clicked {
		background: #595959;
	}
	.wsmenu-list li.clicked > .megamenu {
		display: block;
		position: absolute;
		top: 100%;
		opacity: 1;
		min-height: 300px;
	}
	.wsmenu-click {
		position: relative;
		width: auto;
		height: auto !important;
		display: inline-block;
		top: initial;
		right: initial;
		cursor: none;
	}
	.wsmenu-click {
		display: none;
	}
	.wsmenu > .wsmenu-list > li > a {
		display: inline-block;
		float: left;
	}
	.wsmenu-list.wsmenu-list-tabs {
		background: none;
	}
	.wsmenu-list.wsmenu-list-tabs > li {
		background: none;
	}
	.wsmenu-list.wsmenu-list-tabs > li a {
		font-size: 16px;
		font-weight: 400;
		padding: 10px;
		color: #044b1b;
	}
	.wsmenu-list.wsmenu-list-tabs {
		background: none;
	}
	.wsmenu-list.wsmenu-list-tabs > li a .icon {
		margin-right: 7px;
	}

	.wsmenu-list.wsmenu-list-tabs > li.active,
	.wsmenu-list.wsmenu-list-tabs > li:hover {
		border-bottom: 2px solid #044b1b;
	}
	.wsmenu-list.wsmenu-list-tabs > li.active a:hover {
		color: #fff;
	}
	.wsmenu-list.wsmenu-list-tabs > li.active a {
		color: #fff;
		background: #595959;
	}
	.wsmenu-list.wsmenu-list-tabs > li a:hover {
		color: #044b1b ;
	}

	/* Menu Active */
	body.home .home > a {
		background: #568101;
	}
	body.about .about > a {
		background: #568101;
	}
	body.community .community > a {
		background: #568101;
	}

	.megamenu {
		width: 100%;
		left: 0;
		opacity: 0;
		-o-transform-origin: 0% 0%;
		-ms-transform-origin: 0% 0%;
		-moz-transform-origin: 0% 0%;
		-webkit-transform-origin: 0% 0%;
		-o-transition: -o-transform 0.3s, opacity 0.3s;
		-ms-transition: -ms-transform 0.3s, opacity 0.3s;
		-moz-transition: -moz-transform 0.3s, opacity 0.3s;
		-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
		z-index: 10000;
	}
	.megamenu ul.col-3 {
		border-right: 0;
	}

	/* Footer */

	footer .list-inline > li {
		display: inline-block;
	}
	ul.mul-column {
		columns: 4;
		-webkit-columns: 4;
		-moz-columns: 4;
	}

	ul.mul-column li{
		-webkit-column-break-inside:avoid;
	}
}

/* Top Bar (Desktop) */
/* top bar does not exist for mobile, so we don't need the styles for mobile */

.top-bar {
	display: block;
	background: #fdd10c;
	padding: 10px 5px;
	text-align: center;
	position: relative;
}
.top-bar .close-btn {
	position: absolute;
	right: 15px;
}
.top-bar .top-bar-text {
	text-align: center;
	margin: 0;
}


@media (max-width: 767px){
	.animated-arrow {
		position: absolute;
		top: 0;
		left: 0;
	}

	.top-bar-alert {
		display:block;
	}

	.top-bar-alert .top-bar-text {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.top-global-alert {
		top: 0;
		z-index: 99;
		position: fixed;
		width:100%;
	}
}
