/*---- cookiehint ----*/

footer {
    padding-bottom: 8% !important;
}

#cookiehint {
	width: 100%;
	padding: 0.5% 0 0.5% 0;
	position: fixed;
	bottom: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.9);
	border-top: 1px solid #ffffff;
	box-shadow:	0px -5px 5px 0px rgba(0,0,0,0.1);
	z-index: 9999999;
	font-size: 0.9em;
	line-height: 1.4em;
}
#cookiehint.hidden{
	display: none;
	visibility: hidden;
}

#cookiehint .cookiecontent {
	color: #333333;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.2em;	
}
#cookiehint .cookiecontent p {
	margin: 0;
	padding: 0.5em 0;
}

/*
#cookiehint a {
	color: #719219;
	text-decoration: underline;
}
#cookiehint a:hover {
	color: #79b4b0;
	text-decoration: underline;
}
*/

#cookiehint .cookiebuttons {
	float: right;
	margin: 0px 0 0 20px;
}



#cookiesubmit {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  padding: 0;
  margin: 0;
  border-radius: 200px;
  border: 0px solid transparent;
  background: #eeeeee;
  cursor: pointer;
}
#cookiesubmit:hover::before, #cookiesubmit:hover::after {
  background: #79b4b0;
}
#cookiesubmit::before, #cookiesubmit::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 30px;
  top: 24px;
  left: 10px;
  background: #92c01f;
  border-radius: 10px;
}
#cookiesubmit::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#cookiesubmit::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}