@media only screen {
	.specialAlerts {
		display: none;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: auto;
		bottom: 100px;
		left: 0;
		right: 0;
		width: 90%;
		max-height: 100%;
		margin: 0 auto;
		padding: 0;
		overflow: hidden;
		z-index: 3;
	}
	.specialAlerts.open {
		display: flex;
	}
	.specialAlerts .alertsInner {
		position: relative;
		display: inline-flex;
		flex-direction: column;
		padding: 15px;
		border: 1px solid var(--primary-dark);
		text-align: center;
	}
	.specialAlerts h5 {
		font-family: var(--font-bold);
	}
	.specialAlerts h5 a {
		text-decoration: underline;
	}
	.specialAlerts p {
		margin: var(--space-3) 0;
	}
	.specialAlerts .button-wrapper {
		display: flex;
		justify-content: center;
		margin: 0;
		font-weight: 600;
	}
	.specialAlerts .close-button {
		position: relative;
		padding: var(--space-1) var(--space-3);
		text-transform: none;
		color: var(--primary-dark);
		background-color: transparent;
		border: 2px solid var(--primary-dark);
	}
	.specialAlerts .close-button .fa {
		display: inline;
		margin-left: 7px;
		margin-right: 3px;
		font-size: 0.875em;
	}
	.specialAlerts .close-button:hover .title {
		color: var(--primary-dark);
	}
}

@media only screen and (min-width: 64.063em) {
	.specialAlerts {
		bottom: 30px;
	}
	.specialAlerts .alertsInner {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		max-width: 1000px;
	}
	.specialAlerts p {
		margin: 0 var(--space-5);
	}
}
