/* Banner */
.cookie-banner {
	font-family: sans-serif;
	text-align: center;
	color: #fff;
	padding: 10px;
	background-color: #363636;
	background-color: rgba(54, 54, 54, 0.95);
	position: relative;
}
.cookie-banner.hidden{
	bottom: -100%;
	-webkit-transition: bottom 1s;
	-moz-transition: bottom 1s;
	-ms-transition: bottom 1s;
	-o-transition: bottom 1s;
	transition: bottom 1s;
}
.cookie-banner #lang a,.cookie-banner a:link,.cookie-banner a:visited,.cookie-banner a:hover,.cookie-banner a:active{
	color: #fff;
}

/* Banner top */
.cookie-banner--top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 100000;
}

/* Banner bottom */
.cookie-banner--bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100000;
}

/* Privacy link */
.cookie-banner__link {
	color: #fff;
}

/* Basic button */
.cookie-banner__button {
	color: #fff;
	transition: background 0.2s;
	text-decoration: none;
	margin-top: 10px;
}

/* Consent button */
.cookie-banner__button--consent {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 3px;
	background-color: green;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-ms-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
	margin-top: 10px;
}

.cookie-banner__button--consent:hover {
	cursor: pointer;
	background-color: #009400;
	-webkit-transition: background-color 0.5s;
	-moz-transition: background-color 0.5s;
	-ms-transition: background-color 0.5s;
	-o-transition: background-color 0.5s;
	transition: background-color 0.5s;
}
