#cookie-consent {
	position: fixed;
	bottom: 0;
	z-index: 99999;
	width: 100%;
	padding: .5em;
	background-color: #000000;
	color: white;
	opacity: .9;
}

#cookie-consent .message{
	float: left;
}

#cookie-consent .accept{
	float: right;
	margin-right: 1em;
	margin-top: .5em;

}

#acceptButton{
	padding: .5em;
	background-color: lime;
	font-weight: bold;
	border-radius: 5px;
	border: none;
	margin-bottom: 64px;
}

#acceptButton:hover{
	cursor: pointer;
}

@media (min-width: 768px){
	#acceptButton{
		margin-bottom: 8px;
		}

}