/* Special Alert */

/* Mobile & up */
.newsletter {
	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-newsletter.newsletter {
		opacity: 1;
		pointer-events: all;
		transition: opacity 0.5s ease;
	}

	.newsletter .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;
	}

	.newsletter .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-newsletter .newsletter .alert {
			transition: all 0.5s ease;
			top: 45%;
		}

		.newsletter .alert .closer {
			margin: 0;
			padding: 10px;
			position: absolute;
			top: 0px;
			right: 10px;
			background-color: transparent;
			border: 0;
			color: #000;
			cursor: pointer;
		}
			.newsletter .alert .closer:hover {
				opacity: 0.8;
			}

			.newsletter .alert .closer .fa {
				font-size: 40px;
			}
	.newsletter .top {
		display: flex;
	}
	.newsletter .image {
		flex: 25%;
		margin-bottom: 15px;
	}
	
	.newsletter .alert .title {
		margin: 30px 0 0 30px;
		text-align: center;
		font-family: 'Source Sans Pro', sans-serif;
		font-size: calc(18px + (50 - 18) * ((100vw - 641px) / (1900 - 300)));
		font-weight: 800;
		line-height: 1;
		color: #000;
		cursor: default;
		flex: 75%;
	}
	@media (max-width:  40.063em) {
		.newsletter .alert .title {
			margin: 30px 0 0 0px;
		}
	}
	.newsletter .alert .sub-title {
		font-family: 'Source Sans Pro', sans-serif;
		font-size: 52px;
		font-weight: 700;
		text-align: center;
		color: #000;
		line-height: 60px;
		padding: 16px 0 22px;
	}
	.newsletter .alert .sub-title img {
		margin: 0 25px 7px 0;
	}

	.newsletter .alert .teaser {
		margin-bottom: 40px;
		color: #000;
		text-align: center;
		cursor: default;
	}
		.newsletter .alert .teaser p {
			color: #000;
			font-size: 24px;
			font-family: 'Source Sans Pro', sans-serif;
			font-weight: 400;
			line-height: 34px;
		}
			.newsletter .alert .teaser p:last-of-type {
				margin-bottom: 0;
			}

	.newsletter .cta {
		display: inline-block;
		padding: 5px 25px;
		margin-bottom: 1px;
		align-self: center;
		font-family: 'Source Sans Pro', sans-serif;
		font-size: 22px;
		font-weight: 700;
		background-color: rgb(2,93,112);
		text-transform: none;
		color: #fff;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}

	.newsletter .newsletter-signup {
		display: flex;
		justify-content: space-evenly;
	}
		.newsletter .newsletter-signup .email {
			height: 35px;
			max-width: 310px;
			margin-bottom: 0;
			border-radius: 10px;
			border: 0;
			border: 2px solid #000;
			border-radius: 0;
			box-shadow: 0 0 0 0;
			color: #000;
			font-family: 'Source Sans Pro', sans-serif;
			font-size: 22px;
			font-weight: 400;
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
			text-align: left;
			padding: 0 15px;
		}
		.newsletter .newsletter-signup .email::placeholder {
			color: #000;
			text-transform: uppercase;
			font-family: 'Source Sans Pro', sans-serif;
			font-size: 18px;
			text-align: left;
		}

		.newsletter .newsletter-signup .submit {
			height: 35px;
			width: 210px;
			margin: 0 0 0 10px;
			font-family: 'Source Sans Pro', sans-serif;
			font-size: 18px;
			line-height: 2px;
			font-weight: 700;
			color: #fff;
			background-color: rgb(2,93,112);
			-webkit-border-radius: 5px;
			-moz-border-radius: 5px;
			border-radius: 5px;
		}
			.newsletter .newsletter-signup .submit .fa {
				padding-left: 5px;
			}

/* Tablet & down */
@media only screen and (max-width: 64.063em) {
	.newsletter .alert {
		padding: 40px 20px 20px;
	}
	.newsletter .alert .sub-title {
		font-size: 40px;
		padding: 5px 0 5px;
	}
	.newsletter .alert .sub-title img {
		display: block;
	    text-align: center;
	    margin: 10px auto 0;
	}
	.newsletter .alert .teaser p {
		font-size: 16px;
		line-height: 20px;
	}
	.newsletter .alert .teaser {
		margin-bottom: 20px;
	}

	.newsletter .newsletter-signup {
		display: block;
	}
	.newsletter .newsletter-signup .email {
		max-width: 100%;
	}
	.newsletter .newsletter-signup .submit {
		width: 100%;
		margin: 10px 0;
	}
	.newsletter .alert .closer .fa {
		font-size: 30px;
	}
}

.newsletter.fullscreen,
.newsletter.fullscreen .alert {
	width: 100vw;
	max-width: unset;
	height: 100vh;
	z-index: 20000000;
	margin: 0;
}

.newsletter.fullscreen .alert {
	top: 50%;
}

.newsletter.fullscreen .alert .content,
.newsletter.fullscreen .alert .content .top {
	display: flex;
	flex-direction: column;
}

.newsletter.fullscreen .alert .content {
	justify-content: start;
	align-items: center;
	height: 90vh;
	max-width: 70vw;
	margin: 0 auto;
}

.newsletter.fullscreen .alert .content .image {
	margin: 0 auto;
}

.newsletter.fullscreen .alert .content .title {
	font-size: calc(38px + (100 - 18) * ((100vw - 641px) / (1900 - 300)));
}