/**
 * EMERGENCY ALERTS / 3 variants
 * ---------------------------------------------------------------------------------------------------------------------
 */

.ealert-link {
	position: absolute;
	top: 0;
	left: 0;
	right: 50px;
	bottom: 0;
	display: block;
}
.ealert p {
	margin:0 0 0.7rem;
}
.ealert p:last-child {
	margin-bottom: 0;
}
.ealert {
	margin-bottom: 0 !important;
	text-align: center; 
	position: relative; 
	padding: 15px; 
	z-index: 99999;
	font-size: 1.05rem;
}
.ealert button.close-button {
	background: transparent; 
	color: #eee; 
	opacity: 0.75; 
	font-size: 38px; 
	top: 6px; 
	right: 15px; 
	position: absolute; 
	text-shadow:  0 3px 0 #000;
	z-index: 1000000;
}
.ealert button.close-button:hover {
	opacity: 1; 
	cursor: pointer;
}

/* not yet implemented */
.ealert.sticky { 
	position: fixed; 
	top: 0; 
	left: 0;
	right: 0;
	width: 100%; 
}

/* CUSTOM FOR DWD */
@media (min-width: 639px) {
	.ealert #ealert-msg {
		width: 70%;
		max-width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
}

.ealert a {
	text-decoration: underline;
	color: inherit;
}
.ealert a:after {
	display: none;
}
/* CRITICAL */
.ealert.ealert-style-0 {
	background-color: #ce2029;
	border-color: #ce2029;
	color: #fff;
}
/* IMPORTANT */
.ealert.ealert-style-1 {
	background-color: #5f656a;
	border-color: #5f656a;
	color: #fff;
}
/* INFORMATION */
.ealert.ealert-style-2 {
	background-color: #fff;
	border-color:#fff;
	color: #333;
}