/* Special Alert */

/* Mobile & up */
.special-alert {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	z-index: 100000;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
	.show-special-alert .special-alert {
		display: block;
		opacity: 1;
		transition: opacity 0.5s ease;
	}

	.special-alert .alert {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-width: 300px;
		min-height: 100px;
		padding: 0px;	
		background-color: #fff;
		color: #fff;
		z-index: 100002;
		max-width:530px; 
		background: url(/includes/public/assets/footer-bg.png); 
		-moz-box-shadow: 0px 0px 15px #333; 
		-webkit-box-shadow: 0px 0px 15px #333; 
		box-shadow: 0px 0px 15px #333;
		transition: all 0.5s ease;
		position: absolute;
		left: 0;
		top: auto;
		bottom: 0;
		border-radius: 0px 10px 0px 0px;
		pointer-events: all;
	}
	.special-alert .alert.location_b_right {
		border-radius: 10px 0px 0px 0px;
		left: auto;
		right: 0;
	}
	.special-alert .alert.bg_white {
		background: url(/includes/public/assets/swirly-white-medium.jpg); 
	}
	.special-alert .alert .closer {
		margin: 0;
	    position: absolute;
	    top: 0px;
	    right: 10px;
	    background-color: transparent;
	    border: 0;
	    cursor: pointer;
	    color: #fff;
	    font-weight: 600;
	    float: right;
	    padding: 10px;
	}
	.special-alert .alert .closer:hover {
		opacity: 0.8;
	}

	.special-alert .alert .closer .fa {
		font-size: 30px;
	}
	.special-alert .alert .content {
		margin: 10px 10px 0 10px;
	}

	.special-alert .alert .title {		
		color: #fff; 
		font-size: 24px; 
		font-weight: 600; 
		background: url(/includes/public/assets/home-blue-pattern.png);
		padding: 15px;
		border-radius: 0px 10px 0px 0px;
	}
	.special-alert .alert.location_b_right .title {
		border-radius: 10px 0px 0px 0px;
	}
	.special-alert .alert.header_red .title {
		background: url(/includes/public/assets/imagebox/red_pattern.png);
	}
	.special-alert .alert.header_green .title {
		background: #64c4ab;
	}
	.special-alert .alert .title img {
		height: 60px;
	}

	.special-alert .alert .title span {
		filter: drop-shadow(5px 5px 5px #444444);
	}
	.special-alert .alert img {
		float: left;
	    height: 170px;
	    margin-right: 10px;
	    margin-bottom: 5px;
	}
	.special-alert .alert.has-signup-form .teaser {
		padding-bottom: 38px;
		border-bottom: 2px solid #777777;
	}
	.special-alert .alert .description p {
		color: #fff;
	    font-size: 18px;
	    line-height: normal;
	    margin-bottom: 10px;
	    margin-top: 0;
	}
	.special-alert .alert.font_dark .description p { 
		color: #444;
	}
	.special-alert .alert .teaser p:last-of-type {
		margin-bottom: 0;
	}

	.special-alert .cta {
		background: rgba(189,229,0,1);
	    padding: 12px 5px 5px 5px;
	    display: flow-root;
	    text-align: center;
	    font-size: 22px;
	    color: #444444;
	    border-radius: 10px;
	    margin: 15px 5px;
	}
	.special-alert .alert.button_light .cta {
		color: #fff;
	}

/* Tablet & down */
@media only screen and (max-width: 64.063em) {
	.special-alert .alert .content img {
		display: none;
	}
	.special-alert .alert .closer .fa {
		font-size: 30px;
	}
	.special-alert .alert .description p {
		margin: 5px 5px 10px;
	}
}

@media only screen and (max-width: 40.063em) {
	.special-alert .alert .title {
		border-radius: 0 !important;
	}
}
