#mobile-alert {
	background: rgba(255,255,255,0.9);
	bottom: -450px;
	color: #111111;
	font-size: 20px;
	font-weight: bold;
	padding: 70px 20px 50px;
	position: fixed;
	text-align: center;
	border-top-right-radius: 15px;
	border-top-left-radius: 15px;
	width: 100%;
	z-index: 10;

	transition-property: bottom;
	transition-duration: .75s;
	/*transition-timing-function: cubic-bezier(0, 1, 0.5, 1);*/
}

#mobile-alert.show{
	bottom: 0;
}

#mobile-alert a {
	text-decoration: none;
}

#mobile-alert p {
	margin-bottom: 15px;
	line-height: 1.1em;
}

#mobile-alert-icon {
	background-color: #000000;
	max-width: 120px;
	padding: 20px 30px 20px 20px;
	border-radius: 50%;
	margin: 0 auto 10px;
}

#mobile-alert-switch {
	background-color: #222222;
	color: #ffffff;
	display: inline-block;
	padding: 10px;
	margin-top: 10px;
	max-width: 250px;
	width: 80%;
	border-radius: 5px;
}

#mobile-alert-switch:hover {
	font-weight: bold;
}

a#mobile-alert-dismiss {
	color: #111111;
}

#mobile-alert-dismiss:hover {
	text-decoration: underline;
}

#mobile-overlay.show {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 5;
}