/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 */

.cookie-message
{
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 20px 20px 20px;
	background: rgba(255, 255, 255, 1);
	border-bottom: 1px solid #ccc;
	box-shadow: 0px 0px 3px #ccc;
	z-index: 90000;
}

div#ww-gdpr-black-out
{
    display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 89999;
}

div#ww-gdpr-message-container
{
	/* Adjust this container to around 90% width if we're not providing our own button in the page content. */
	width: 100%;
}

.hide-on-desktop
{
	display: none;
}

@media only screen and (max-device-width: 768px),
only screen and (max-width: 768px)
{
	div#ww-gdpr-message-container .hide-on-mobile
	{
		display: none;
	}

	div#ww-gdpr-message-container .hide-on-desktop
	{
		display: block;
	}
}