/* CSS Document */

div#cookie_alert_content {
	display: none;
	background: #eaeaea;
	color: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px !important;
	z-index: 999;
}
div#cookiealert_text {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	padding: 50px;
	overflow: auto;
}
div#cookiealert_text > div {
	margin: 0 auto;
	width: 600px;
	max-width: 100%;
}
div#cookiealert_text button {
	display: block;
	margin: 30px auto 0 auto;
	border: 0;
	outline: none;
	color: #333;
	font: 25px "Arial Black", Gadget, sans-serif;
	background: transparent;
}
div#cookiealert_text div.cookies {
	font: 12px Verdana, Geneva, sans-serif;
}

@media screen and (min-width: 601px) {
	div#cookie_alert_content > table {
		width: 800px;
		max-width: 100% !important;
		margin: 0 auto !important;
	}
	div#cookie_alert_content > table > tbody > tr > td {
		font-size: 14px;
		vertical-align: middle;
		text-align: center;
	}
	div#cookie_alert_content > table > tbody > tr > td > button {
		cursor: pointer;
		background: #09C;
		color: #fff;
		margin-left: 5px !important;
		padding: 4px 7px !important;
		border-radius: 3px;
		border: none;
		outline: none;
	}
}
@media screen and (max-width: 600px) {
	div#cookie_alert_content {
		text-align: center;
	}
	div#cookie_alert_content > table {
		width: 100%;
	}
	div#cookie_alert_content > table > tbody > tr > td {
		font-size: 12px;
		line-height: 14px;
		vertical-align: middle;
	}
	div#cookie_alert_content > table > tbody > tr > td > button {
		display: block;
		width: auto;
		margin: 5px auto 0px auto;
		cursor: pointer;
		background: #09C;
		color: #fff;
		padding: 4px 7px !important;
		border-radius: 3px;
		border: none;
		outline: none;
	}
}
div#cookie_alert_content > table > tbody > tr > td:last-of-type > button:hover {
	background: #069;
}