/* 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: #c9452e;
}
.special-alert.popup {
	position: absolute;
	top: calc(50vh - 100px);
	background: transparent;
}
.alert-cover {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(55,55,55,.5);
	display: none;
	z-index: 1111;
}
.show-special-alert .alert-cover {
	display: block;
}

	.show-special-alert .special-alert {
		opacity: 1;
		pointer-events: all;
		transition: opacity 0.5s ease;
		display: block;
	}
	.special-alert .alert-frame {
		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.popup .alert-frame {
		background: #fff;
		max-width: 600px;
		padding: 0;
		justify-content: initial;
	}
	.special-alert .alert-frame img {
		height: 100%;
		max-height: 150px;
		min-width: 200px;
		padding-right: 30px;
	}
	.special-alert.popup .alert-frame img {
		height: auto;
		min-height: 100%;
		max-height: none;
		padding-right: 25px;
		margin-bottom: -2px;
	}
		.show-special-alert .special-alert .alert-frame {
			transition: all 0.5s ease;
			top: 0;
		}
		.special-alert .alert-frame .content {
			max-width: 70%;
		}
		.special-alert.popup .alert-frame .content {
			margin: auto 20px auto 0;
		}
		.special-alert.popup .alert-frame .content {
			max-width: 65%;
		}
		.special-alert .alert-frame.no-image .content {
			max-width: 100%;
			margin: 0px 20px;
		}
		.special-alert .alert-frame .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.popup .closer {
			right: 15px;
		}
		.special-alert .alert-frame.no-image .closer {
			top: 15px;
		}
			.special-alert .closer:hover {
				opacity: 0.8;
			}
			.special-alert .closer .fa {
				font-size: 20px;
				line-height: 1;
				color: #ffffff;
			}
			.special-alert .closer span {
				font-size: 18px;
				line-height: 32px;
				font-weight: bold;
				margin-left: 5px;
				display: none;
			}

	.special-alert .alert-frame .title {
		color: #ffffff;
		font-size: 32px;
		line-height: 35px;
		font-family: var(--alternate-gothic-atf-font-family);
		font-weight: var(--alternate-gothic-atf-font-weight);
		font-style:  var(--alternate-gothic-atf-font-style);
		text-transform: uppercase;
		margin: 0 0 5px 0;
		cursor: default;
	}
	.special-alert.popup .alert-frame .title {
		color: #58585a;
	}
	.special-alert .alert-frame.hide-title .title {
		display: none;
	}
		.special-alert .alert-frame .teaser {
			color: #ffffff;
			font-size: 16px;
			line-height: 24px;
			font-family: var(--proxima-nova-regular-font-family);
			font-weight: var(--proxima-nova-regular-font-weight);
			font-style:  var(--proxima-nova-regular-font-style);
			padding: 0;
			margin: 0;
			display: inline-block;
		}
		.special-alert .alert-frame p {
			color: #ffffff;
		}
		.special-alert.popup .alert-frame p {
			color: #58585a;
		}
		.special-alert .alert-frame .cta {
			display: inline-block;
			padding: 10px 18px;
			text-align: center;
			text-transform: uppercase;
			border-radius: 0px;
			line-height: 17px;
			font-size: 17px;
			font-weight: 600;
			background-color: #204A59;
			color: #ffffff;
			margin: auto;
			-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-frame .cta:hover {
			color: #FFF;
		}

	.special-alert .alert-frame .signup-form form {
		display: flex;
	}
	.special-alert .alert-frame .left-section {
		width: 65%;
	}
	.special-alert .alert-frame .right-section {
		width: 35%;
		display: inline-flex;
	}
	.special-alert .alert-frame input {
		height: 40px;
		margin: 0;
		color: #204a59;
	}
	.special-alert .alert-frame input::placeholder {
		color: #204a59;
	}
	.special-alert .alert-frame .btn-submit .link {
		float: right;
		height: 40px;
		line-height: 10px;
		margin: 0 0 0 10px;
	}

/* Tablet & down */
@media only screen and (max-width: 64.063em) {
	.special-alert.popup {
		top: calc(50vh - 150px);
		width: 420px;
		margin: 0 auto;
		right: auto;
		left: calc(50% - 210px);
	}
	.special-alert .alert-frame {
		padding: 20px 40px;
	}
	.special-alert .closer {
		right: 15px;
	}
	.special-alert .closer .fa {
		vertical-align: top;
	}
	.special-alert .alert-frame .teaser {
		margin-bottom: 0px;
	}
	.special-alert .alert-frame .cta {
		padding: 10px;
	}
	.special-alert .alert-frame .btn-submit .link {
		width: auto;
		line-height: 16px;
		padding: 0 10px;
	}
}
@media only screen and (max-width: 40.063em) {
	.special-alert.popup {
		width: 320px;
		left: calc(50% - 160px);
	}
	.special-alert .alert-frame {
		display: block;
		text-align: center;
		max-width: 320px;
		padding: 20px;
	}
	.special-alert .alert-frame img {
		max-height: 120px;
		margin: 0 0 10px;
		padding: 0;
	}
	.special-alert.popup .alert-frame img {
		padding: 0;
	}
	.special-alert .alert-frame .title {
		font-size: 28px;
		line-height: 30px;
		padding: 0 20px;
	}
	.special-alert .alert-frame .content {
		max-width: 100%;
		padding: 0 10px;
	}
	.special-alert.popup .alert-frame .content {
		max-width: 100%;
		margin: 0;
		padding: 10px;
	}
	.special-alert .alert-frame.no-image .content {
		margin: 0;
		padding: 0;
	}
	.special-alert .alert-frame .teaser p {
		margin-bottom: 10px;
	}
	.special-alert .alert-frame .button {
		margin-bottom: 5px;
	}
	.special-alert .closer {
		position: absolute;
		right: 10px;
		top: 0;
		margin: 10px 0 0;
	}
	.special-alert .alert-frame.no-image .closer {
		top: 0px;
	}
	.special-alert.popup .closer {
		background: #204A59;
	}
	.special-alert .closer .fa {
		font-size: 20px;
	}
}
