/**
 * 	
 * Pure javascript cookie notice 2018 by Michael Hudault, https://hudault.de
 * Javascript in /cookie_notice/cookie_notice.js
 * 
 * Without-any-warranty-do-whatever-you-want licence
 *
 */


/* Cookie notice main container */

.cookie-notice-container {
	background-color: grey;
	font-family: "Arial", "Helvetica", "Verdana", "Tahoma", sans-serif;
	padding: 20px;
	text-align:center;
	width:100%;
	margin:0 auto;
	bottom:0;
	right:20px;
	position:absolute;
	}


/* Logo */

.cookie-notice-container .cookie-notice-logo{
	text-align:center;
	width:100px;
	}


/* Headline */

.cookie-notice-container .cookie-notice-headline{
	color: #99b900;
	text-align:center;
	font-size: 22px;
	font-weight: bold;
	padding: 7px;
	margin-bottom:15px;
	}


/* Text */

.cookie-notice-container p{
	color: #333;
	font-size: 14px;
	text-align:center;
	margin:5px;
	}


/* Privacy-Link */

.cookie-notice-container .cookie-notice-privacy-link {
	color: #99b900;
	text-decoration:underline;
	font-weight:bold;
	}

.cookie-notice-privacy-link:hover {
	color: #999 !important;
	text-decoration:underline;
	}


/* Button Container */

.cookie-notice-container .cookie-notice-buttons {
	text-align:center;
	margin-top:40px;
	margin-bottom:20px;
	}


/* Accept-Button */

.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept{
	background: #99b900;
	color: #fff;
	margin: 0px;
	padding:5px;
	padding-left:10px;
	padding-right:10px;
	font-size: 15px;
	font-weight: bold;
	white-space:nowrap;
	text-decoration:none;
	}


/* Accept-Butoon hover */

.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept:hover,
.cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept:focus {
	background: #bfe800;
	}
