.special-alert {
	display: none;
	width: 100vw;
	max-width: 100%;
	position: relative;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 100000;
	transition: opacity 0.5s ease;
}

.show-alert .special-alert {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.5s ease;
	display: block;
}

.special-alert .alert {
	display: block;
	min-width: 300px;
	max-width: 440px;
	height: auto;
	margin: 0px auto;
	padding: 25px;
	position: relative;
	color: #fff;
	z-index: 100002;
	text-align: center;
	background: linear-gradient(#00a48b, #00adee);
}

.special-alert .alert .img-cont { min-height: 45px; }

.special-alert .alert img {
	min-width: 200px;
	margin-bottom: 15px;
}

.show-alert .special-alert .alert {
	transition: all 0.5s ease;
	top: 0;
}

.special-alert .alert .button {
	margin: 0;
	max-width: 300px;
}

.special-alert .closer {
	margin: 0;
	padding: 3px 7px 5px;
	position: absolute;
	top: 25px;
	right: 25px;
	background-color: #e65500;
	border: 0;
}

.special-alert .closer .fa { font-size: 26px; }

.special-alert .closer span { display: none; }

.special-alert .alert .title {
	display: inline-block;
	margin: 0;
	padding: 10px 0;
	color: #ffffff;
	box-decoration-break: clone;
	text-transform: uppercase;
	font-family: "Motiva Sns W01 XBd", serif;
	font-size: 24px;
	line-height: 1;
	font-weight: 400;
}

.special-alert .alert .message p {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 26px;
	font-family: 'Motiva Sns W01 Regular', serif;
	color: #fff;
}

.special-alert .alert .message .cta {
	background-color: #e65500;
	font-size: 16px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	font-family: 'Motiva Sns W01 Regular', serif;
	padding: 5px 28px 6px;
}

/* Tablet & up */
@media only screen and (min-width: 40.063em) {
	.special-alert .alert .title { font-size: 50px; }
}