/* Special Alert */

/* Mobile & up */
.special-alert {
	display: block;
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 100000;
	transition: opacity 0.5s ease;
}
	.show-special-alert .special-alert {
		opacity: 1;
		pointer-events: all;
		transition: opacity 0.5s ease;
	}

	.special-alert .shader {
		width: 100vw;
		height: 100vh;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.6);
		cursor: pointer;
		z-index: 100001;
		transition: opacity 0.5s ease;
	}

	.special-alert .alert {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-width: 300px;
		max-width: 550px;
		min-height: 300px;
		padding: 30px;
		position: absolute;
		left: 50%;
		top: 60%;
		transform: translate(-50%, -50%);
		transition: all 0.5s ease;
		border-radius: 6px;
		background-color: #fff;
		color: #fff;
		z-index: 100002;
		box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
	}
		.show-special-alert .special-alert .alert {
			transition: all 0.5s ease;
			top: 45%;
		}

		.special-alert .alert .closer {
			margin: 0;
			padding: 10px;
			position: absolute;
			top: 0px;
			right: 4px;
			background-color: transparent;
			border: 0;
			color: #000;
			cursor: pointer;
		}
			.special-alert .alert .closer:hover {
				opacity: 0.8;
			}

			.special-alert .alert .closer .fa {
				font-size: 16px;
			}

	.special-alert .alert .title {
		margin-bottom: 15px;
		text-align: center;
		font-family: 'Helvetica Neue LT W01_71488914';
		font-size: 34px;
		line-height: 1;
		color: #000;
		cursor: default;
	}

	.special-alert .alert .teaser {
		margin-bottom: 20px;
		color: #000;
		text-align: center;
		cursor: default;
	}
		.special-alert .alert.has-signup-form .teaser {
			padding-bottom: 20px;
			border-bottom: 1px solid #eee;
		}

		.special-alert .alert .teaser p {
			color: #000;
			font-size: 16px;
			font-family: 'Helvetica Neue LT W01_41488878', Arial, Helvetica, sans-serif;
			line-height: 22px;
		}
			.special-alert .alert .teaser p:last-of-type {
				margin-bottom: 0;
			}

	.special-alert .cta {
		display: inline-block;
		padding: 5px 25px;
		margin-bottom: 1px;
		align-self: center;
		font-family: 'Helvetica Neue LT W01_41488878', Arial, Helvetica, sans-serif;
		font-size: 1rem;
		font-weight: 400;
		background-color: transparent;
		text-transform: none;
		color: #0498d9;
	}

	.special-alert .newsletter-signup {
		display: flex;
		justify-content: space-evenly;
	}
		.special-alert .newsletter-signup .email {
			height: 56px;
			max-width: 250px;
			margin-bottom: 0;
			border-radius: 10px;
			text-align: center;
			border: 0;
			border-bottom: 1px solid #000;
			border-radius: 0;
			box-shadow: 0 0 0 0;
		}

		.special-alert .newsletter-signup .submit {
			height: 56px;
			margin: 0;
			font-family: 'Helvetica Neue LT W01_41488878', Arial, Helvetica, sans-serif;
			font-size: 1rem;
			font-weight: normal;
			color: #0498d9;
			background-color: transparent;
		}
			.special-alert .newsletter-signup .submit .fa {
				padding-left: 5px;
			}

/* Tablet & up */
@media only screen and (min-width: 40.063em) {}

/* Desktop & up */
@media only screen and (min-width: 64.063em) {}
