/* 	
 * 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: #fff;
	font-family: "Arial", "Helvetica", "Verdana", "Tahoma", sans-serif;
	padding: 20px;
	text-align: center;
	max-width: 1024px;
	margin: 0 auto;
	*/
  display: block;
	z-index: 100;
	position: fixed;
	bottom: 0px;
	min-height: 30px;
	padding: 10px;
	text-align: center;
	margin: 0 auto;
	width: 100%;
	color: #fff;
	border-top: 1px solid black;
	border-bottom: none;
	background: #fff;
	background: rgba(0,0,0, 0.75);
}
 
 
/* 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: #fff;
	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; */
}
 

.cookie-notice-container span,
.cookie-notice-container .cookie-notice-buttons {
  display: inline-block;
}

/* Accept-Button */
/* .cookie-notice-container .cookie-notice-buttons .cookie-notice-button-accept { */
.cookie-notice-container .cookie-notice-button-accept {
	/*
	background: #99b900;
	color: #fff;
	margin: 10px;
	padding: 10px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 20px;
	font-weight: bold;
	white-space: nowrap;
	text-decoration: none;
	*/
	display: inline-block;
	width: auto;
  zoom: 1;
  line-height: normal;
  white-space: nowrap;
  vertical-align: baseline;
  text-align: center;
  cursor: pointer;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 6px;
  margin-right: 6px;
  margin-left: 6px;
  
  font-size: 100%;
  *font-size: 90%;
  padding: .65em 1em .5em 1em;
  padding: .35em 1em .25em 1em;
  color: #333;
  color: #00f;
  font-weight: bold;
  border: 1px solid #ccc;
  /* border: 0 rgba(0,0,0,0); */
  background-color: #E6E6E6;
  background-color: #D9D8DE;
  text-decoration: none;
  border-radius: 6px;
}
 
 
/* 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; */
	background-color: #E3E2EC;
}