/* 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.0);
		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: 610px;
		min-height: 300px;
		padding: 50px 40px;
		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 25px rgba(0, 0, 0, 0.6);
	}
		.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: 10px;
			background-color: transparent;
			border: 0;
			color: #000;
			cursor: pointer;
		}
			.special-alert .alert .closer:hover {
				opacity: 0.8;
			}

			.special-alert .alert .closer .fa {
				font-size: 40px;
			}

	.special-alert .alert .title {
		margin: 5px 0 0 0;
		text-align: center;
		font-family: var(--font-body-bold);
		font-size: 26px;
		line-height: 1;
		color: #000;
		cursor: default;
	}
	.special-alert .alert .sub-title {
		font-family: var(--font-body-reg);
	    font-size: 52px;
	    text-align: center;
	    color: #000;
	    line-height: 60px;
	    padding: 16px 0 22px;
	}
	.special-alert .alert .sub-title img {
		margin: 0 25px 7px 0;
	}

	.special-alert .alert .teaser {
		margin-bottom: 40px;
		color: #000;
		text-align: center;
		cursor: default;
	}
		.special-alert .alert.has-signup-form .teaser {
			padding-bottom: 38px;
			border-bottom: 2px solid #777777;
		}

		.special-alert .alert .teaser p {
			color: #000;
			font-size: 24px;
			font-family: var(--font-body-reg);
			line-height: 34px;
		}
			.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: var(--font-body-bold);
		font-size: 22px;
		background-color: #ed1b23;
		text-transform: none;
		color: #fff;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}

	.special-alert .newsletter-signup {
		display: flex;
		justify-content: space-evenly;
	}
		.special-alert .newsletter-signup .email {
			height: 50px;
			max-width: 310px;
			margin-bottom: 0;
			border-radius: 10px;
			border: 0;
			border: 3px solid #000;
			border-radius: 0;
			box-shadow: 0 0 0 0;
			color: #000;
			font-family: var(--font-body-bold);
			font-size: 22px;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
			text-align: left;
			padding: 0 15px;
		}
		.special-alert .newsletter-signup .email::placeholder {
			color: #000;
			text-transform: uppercase;
			font-family: var(--font-body-bold);
			font-size: 22px;
			text-align: left;
		}

		.special-alert .newsletter-signup .submit {
			height: 50px;
			width: 210px;
			margin: 0 0 0 10px;
			font-family: var(--font-body-bold);
			font-size: 22px;
			line-height: 20px;
			font-weight: normal;
			color: #fff;
			background-color: #ed1b23;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
		}
			.special-alert .newsletter-signup .submit .fa {
				padding-left: 5px;
			}

/* Tablet & down */
@media only screen and (max-width: 64.063em) {
	.special-alert .alert {
		padding: 40px 20px 20px;
	}
	.special-alert .alert .title {
		font-size: 16px;
	}
	.special-alert .alert .sub-title {
		font-size: 40px;
		padding: 5px 0 5px;
	}
	.special-alert .alert .sub-title img {
		display: block;
	    text-align: center;
	    margin: 10px auto 0;
	}
	.special-alert .alert .teaser p {
		font-size: 16px;
		line-height: 26px;
	}
	.special-alert .alert .teaser {
		margin-bottom: 20px;
	}
	.special-alert .alert.has-signup-form .teaser {
		padding-bottom: 15px;
	}
	.special-alert .newsletter-signup {
		display: block;
	}
	.special-alert .newsletter-signup .email {
		max-width: 100%;
	}
	.special-alert .newsletter-signup .submit {
		width: 100%;
		margin: 10px 0;
	}
	.special-alert .alert .closer .fa {
		font-size: 30px;
	}
	
}

