/* CSS Document */

div#cookie_alert_content {
	display: none;
	background: #eaeaea;
	color: #000;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px !important;
}
@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 > 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 {
		cursor: pointer;
		background: #09C;
		color: #fff;
		margin-left: 5px !important;
		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;
}