.specialAlerts {
	position: relative;
	width: 100%;
	height: auto;
	max-height: 0;
	padding: 0;
	text-align: center;
	overflow: hidden;
	visibility: hidden;
	z-index: 99;
	transition: all 350ms ease-in-out;
}
.specialAlerts.open {
	visibility: visible;
	max-height: 500px;
	opacity: 1;
}
.specialAlerts.sticky {
	position: fixed;
	top: 0;
	max-height: 500px;
}
.specialAlerts.floating {
	position: fixed;
	top: auto;
	bottom: 30px;
	left: 0;
	right: 0;
	width: 90%;
	margin: 0 auto;
	max-height: 100%;
	border: 1px solid white;
}
.specialAlerts .alertsInner {
	display: block;
	max-width: 970px;
	margin: 0 auto;
	padding: 15px;
}
.specialAlerts .alertsInner .title {
	display: block;
	max-width: calc(100% - 30px);
	margin: 0 auto;
	letter-spacing: .05em;
	font-weight: bold;
	font-style: italic;
	font-size: 15px;
	line-height: 19px;
	color: white;
}
.specialAlerts .alertsInner.has-caption .title {
	max-width: 100%;
}
.specialAlerts .alertsInner .title a {
	font: inherit;
	font-weight: normal;
	font-style: normal;
	color: white;
	text-decoration: underline;
}
.specialAlerts .alertsInner .description {
	display: block;
	padding-right: 0;
	margin: 10px auto 0;
	font-size: 15px;
	line-height: 19px;
	color: white;
}
.specialAlerts .alertsInner .close {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 5px;
	margin-top: 10px;
	padding: 3px 6px;
	border-radius: 5px;
	font-size: 15px;
	line-height: 19px;
	color: white;
	border: 1px dashed white;
	cursor: pointer;
}
.specialAlerts .alertsInner.has-caption .close {
	position: relative;
	right: 0;
}
.specialAlerts .alertsInner .close:hover,
.specialAlerts .alertsInner .close:focus {
	color: black;
	background-color: white;
}
.specialAlerts .alertsInner .close .fa {
	display: inline;
}
.specialAlerts .alertsInner.has-caption .close .fa {
	margin-left: 7px;
}
@media only screen and (min-width: 40.063em) {
	.specialAlerts.floating {
		width: 70%;
	}
	.specialAlerts .alertsInner {
		max-width: 90%;
	}
}
@media only screen and (min-width: 64.063em) {
	.specialAlerts.floating {
		bottom: 30px;
		width: 1000px;
	}
	.specialAlerts .alertsInner {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.specialAlerts.sticky .alertsInner {
		justify-content: center;
	}
	.specialAlerts.floating .alertsInner {
		justify-content: space-between;
	}
	.specialAlerts .alertsInner .title,
	.specialAlerts .alertsInner .description,
	.specialAlerts .alertsInner .close {
		display: inline;
		vertical-align: middle;
		margin: 0 0 0 10px;
	}
	.specialAlerts .alertsInner .close {
		position: relative;
		right: 0;
	}
}
