/* 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: #00A9DD;
}
.special-alert.theme_ocean {
	background: #003b49;
}
.special-alert.theme_ocean .alert .title,
.special-alert.theme_ocean .alert .teaser p,
.special-alert.theme_ocean .alert .closer .fa,
.special-alert.theme_ocean .alert .cta {
	color: #fff;
}
.special-alert.theme_sky {
	background: #68D2DF;
}
.special-alert.theme_sunset {
	background: #FF8200;
}
.special-alert.theme_sunset .alert .cta {
	background-color: #003b4a;
	color: #FF8200;
}
.special-alert.theme_black {
	background: #000;
}
.special-alert.theme_black .alert .title,
.special-alert.theme_black .alert .teaser p,
.special-alert.theme_black .alert .closer .fa,
.special-alert.theme_black .alert .cta {
	color: #fff;
}
.special-alert.theme_electric {
	background: #00A9DD;
}

	.show-special-alert .special-alert {
		opacity: 1;
		pointer-events: all;
		transition: opacity 0.5s ease;
		display: block;
		position: fixed;
	}
	.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.no-image {
		padding: 5px 10px 5px;
	}
	.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;
			padding: 15px 0;
		}
		.special-alert .alert .button {
			margin: 0;
			max-width: 300px;
		}
		.special-alert .closer {
			margin: 0;
			padding: 4px;
			position: absolute;
			top: 15px;
			right: 0;
			background-color: transparent;
			border: 0;
			color: #fff;
			cursor: pointer;
			z-index: 1000000;
		}
		.special-alert .alert.no-image .closer {
			top: 10px;
		}
			.special-alert .closer:hover {
				opacity: 0.8;
			}
			.special-alert .closer .fa {
				font-size: 20px;
				line-height: 1;
				color: #003b49;
			}
			.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 {
		color: #003b49;
		font-size: 22px;
		line-height: 1;
		font-family: 'Montserrat', sans-serif;
		font-weight: 600;
		text-transform: uppercase;
		text-decoration: underline;
		margin: 0 0 0 0;
		cursor: default;
		line-height: 1;
	}
	.special-alert .alert.hide-title .title {
		display: none;
	}
	
	.special-alert .alert.hide-title .teaser p {
		text-decoration: underline;
		font-weight: 700;
	}
		.special-alert .alert .teaser {
			color: #595959;
			font-size: 16px;
			line-height: 26px;
			font-family: 'Montserrat', sans-serif;
			font-weight: 400;
			padding: 0;
			margin: 0;
			display: inline-block;
		}
		.special-alert .alert.alert.no-image .teaser {
			margin: 10px 0;
			display: inline-flex;
		}
		.special-alert .alert .teaser p {
			margin: 5px 0 0;
		}
		.special-alert .alert .cta {
			display: inline-block;
			padding: 6px 15px;
			text-align: center;
			border-radius: 25px;
			line-height: 17px;
			font-size: 17px;
			font-weight: 600;
			background-color: #68D2DF;
			color: #003b4a;
			margin: 5px auto 5px;
			-webkit-transition: all 150ms ease-in-out;
			-moz-transition: all 150ms ease-in-out;
			-o-transition: all 150ms ease-in-out;
			transition: all 150ms ease-in-out;
		}
		.special-alert .alert.alert.no-image .cta {
			margin: auto 15px;
		}
		.special-alert .alert .cta:hover {
			color: #FFF;
		}

/* 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: 10px 0 0;
		top: auto;
	}
	.special-alert .closer .fa {
		font-size: 20px;
	}
	.special-alert .closer span {
		display: inline-block;
		line-height: 20px;
		vertical-align: top;
	}
}
