/* Special Alert */

/* Mobile & up */
.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;
	background: rgba(0,137,144, 0.8);
}
	.show-special-alert .special-alert {
		opacity: 1;
		pointer-events: all;
		transition: opacity 0.5s ease;
		display: block;
	}
	.special-alert .alert {
		display: flex;
		flex-direction: row;
		justify-content: center;
		min-width: 300px;
		max-width: 900px;
		height: auto;
		padding: 17px 10px;
		position: relative;
		color: #fff;
		z-index: 100002;
		margin: 0px auto;
	}
	.special-alert .alert img {
		height: 100%;
		max-height: 150px;
		min-width: 200px;
		padding-right: 30px;
	}
		.show-special-alert .special-alert .alert {
			transition: all 0.5s ease;
			top: 0;
		}
		.special-alert .alert .content {
			max-width: 70%;
		}
		.special-alert .alert.no-image .content {
			max-width: 100%;
			margin: 0px 20px;
		}
		.special-alert .alert .button {
			margin: 0;
			max-width: 300px;
		}
		.special-alert .closer {
			margin: 0;
			padding: 4px;
			position: absolute;
			top: 20px;
			right: 0;
			background-color: transparent;
			border: 0;
			color: #fff;
			cursor: pointer;
			z-index: 1000000;
		}
		.special-alert .alert.no-image .closer {
			top: calc(50% - 18px);
		}
			.special-alert .closer:hover {
				opacity: 0.8;
			}
			.special-alert .closer .fa {
				font-size: 20px;
				line-height: 1;
			}
			.special-alert .closer span {
				font-family: 'Proxima N W01 Reg';
				font-size: 18px;
				line-height: 32px;
				font-weight: bold;
				margin-left: 5px;
				display: none;
			}

	.special-alert .alert .title {
		font-size: 32px;
		line-height: 35px;
		color: #a03444;
		font-family: 'Amasis MT W01 Light';
		font-weight: bold;
		text-transform: uppercase;
		margin: 0 0 5px 0;
		cursor: default;
	}
	.special-alert .alert.hide-title .title {
		display: none;
	}
		.special-alert .alert .teaser {
			font-family: 'Proxima N W01 Reg';
			font-size: 18px;
			line-height: 22px;
			color: #fff;
			padding: 0;
			margin: 0;
			display: inline-block;
		}
		.special-alert .alert .cta {
			display: block;
			margin: 20px 0 0;
			background-color: #a03444;
			color: #fff;
			font-size: 18px;
			padding: 15px;
			line-height: 24px;
			font-family: 'TradeGothicW01-BoldCn20_675334';
			text-transform: uppercase;
			font-weight: lighter;
			text-decoration: none;
			letter-spacing: 1px;
			text-align: center;
		}

/* Tablet & down */
@media only screen and (max-width: 64.063em) {
	.special-alert .alert {
		padding: 20px 40px;
	}
	.special-alert .closer {
		right: 15px;
	}
	.special-alert .closer .fa {
		vertical-align: top;
	}
	.special-alert .alert .teaser {
		margin-bottom: 0px;
	}
	.special-alert .alert .cta {
		padding: 10px;
	}
}
@media only screen and (max-width: 40.063em) {
	.special-alert .alert {
		display: block;
		text-align: center;
		max-width: 320px;
		padding: 20px;
	}
	.special-alert .alert img {
		max-height: 120px;
		margin: 0 0 10px;
		padding: 0;
	}
	.special-alert .alert .title {
		font-size: 28px;
		line-height: 30px;
	}
	.special-alert .alert .content {
		max-width: 100%;
		padding: 0 10px;
	}
	.special-alert .alert.no-image .content {
		margin: 0;
		padding: 0;
	}
	.special-alert .alert .teaser p {
		margin-bottom: 10px;
	}
	.special-alert .alert .button {
		margin-bottom: 5px;
	}
	.special-alert .closer {
		right: auto;
		position: relative;
		margin: 0;
		top: auto;
	}
	.special-alert .closer .fa {
		font-size: 28px;
	}
	.special-alert .closer span {
		display: inline-block;
	}
}
