/* Place custom styles here */

/* 11/13/18 - Weather Notification Ticker */

.weather-ticker {
	background: #a6ce39; /* lime */
	background: #d40e8c; /* pink */
	background: #ff00cc; /* bright pink */
	background: #d4d10f; /* yellow */
	background: #e2dc00; /* bright yellow */
	background: #78c4da; /* baby blue */
	background: #33ccff; /* bright baby blue */
	background: linear-gradient(-90deg, #d40e8c 0%, #ff00cc 100%); /* pinks */
	background: linear-gradient(-90deg, #d4d10f 0%, #e2dc00 100%); /* yellows */
	background: linear-gradient(-90deg, #78c4da 0%, #33ccff 100%); /* blues */
	background: #777;
	background: repeating-linear-gradient( 135deg, #008eced9, #008eced9 2px, #008ece 2px, #008ece 12px );
	background: repeating-linear-gradient( 135deg, #f2efb1, #f2efb1 2px, #fffcbb 2px, #fffcbb 12px );
	background: repeating-linear-gradient( 135deg, #333, #333 2px, #444 2px, #444 12px );
	background: #fffcbb; /* legal yellow */
	color: #555;
	font-size: 14px;
}

.weather-ticker h3.widgettitle {
	background-color: #007ac3;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	position: absolute;
	width: 150px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: none;
}

.weather-ticker h3.widgettitle:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	right: -20px;
	width: 0;
	height: 0;
	border-top: 16px solid transparent;
	border-left: 20px solid #007ac3;
	border-bottom: 16px solid transparent;
}

.weather-ticker .textwidget {
	width: 100%;
	text-align: center;
}

.weather-ticker p {
	margin: 0;
	font-style: italic;
	font-weight: 600;
	padding: 5px 0;
}

.weather-ticker a {
	border-bottom: 1px solid #333;
	color: #333;
}

@media only screen and (max-width: 767.98px) {
	.weather-ticker h3.widgettitle {
		display: none;
	}

	.weather-ticker .textwidget {
		width: 100%;
		padding: 15px 0;
	}
}

/* 11/19/18 - Inclement Weather Hero */

.home #hero {
	overflow: hidden;
}

.home .hero .inclement-weather {
	text-align: center;
	min-height: 500px;
	background-color: #0A3A47;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 50px;
	position: relative;
	color: #fff;
}

.home .hero .inclement-weather:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	min-height: inherit;
	background-color: #0A3A47;
	opacity: .9;
}

.home .hero .alert {
	background-image: url(../../images/triangle.svg);
	background-position: center;
	background-repeat: no-repeat;
	color: #fff;
	font-size: 72px;
	background-size: 3.5em;
	padding-top: 30px;
	font-weight: 700;
}

.home .hero .inclement-weather .content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0 50px;
}

.home .hero .inclement-weather .title {
	color: #fff;
	font-size: 60px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 2px;
}

.home .hero .inclement-weather p {
	color: #fff;
}

@media only screen and (max-width: 767.98px) {
	.home .hero .inclement-weather .title {
		font-size: 36px;
	}
}

/* Tweak mega menu (Our Team) display - 3/14/19 */

.nav-primary .genesis-nav-menu .mega-menu a {
	width: auto;
}

/* Alert message for COVID-19 - 3/17/20 */

.home .hero {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	   -ms-flex-pack: center;
	 justify-content: center;
	-webkit-box-align: center;
	   -ms-flex-align: center;
	      align-items: center;
	height: calc(100vh - 179px);
	/*height: 100%;*/
	/*padding: 50px 0;*/
	background-color: #b9bfbd;
	-webkit-background-size: cover;
	     -o-background-size: cover;
	        background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.home .hero .wrap {
	width: 100%;
}

.home .hero .alert-message {

}

.home .hero .message-box {
	display: block;
	width: 100%;
	background-color: #fff;
	-webkit-box-shadow: 3px 6px 15px rgba(0,0,0,0.15);
	        box-shadow: 3px 6px 15px rgba(0,0,0,0.15);
	-webkit-border-radius: 3px;
	        border-radius: 3px;
	padding: 25px;
	color: #333;
}

.home .hero .message-box p {
	text-transform: uppercase;
	letter-spacing: 5px;
	color: #aaa;
	margin-bottom: 15px;
}

.home .hero .message-box h3 {
	font-weight: 700;
	font-size: 36px;
}

.home .hero .alert-message h1,
.home .hero .alert-message h2,
.home .hero .alert-message h3,
.home .hero .alert-message h4
.home .hero .alert-message h5,
.home .hero .alert-message h6 {
	text-transform: uppercase;
	font-weight: 700;
}

.home .hero .alert-message p {
	font-weight: 400;
	font-size: 21px;
}

.home .hero .alert-message .highlight {
	background-color: #d40eBc;
	padding: 5px 10px;
	display: inline-block;
}

.home .hero .alert-message * {
	color: #fff;
}