/* -----------------------------------
Cookiebar
----------------------------------- */
#cookie-bar {
	position: fixed;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: auto;
	background: #121212;
	padding: 0;
	display: none;
	z-index: 999;
	text-align: left;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.4)
}
#cookie-bar.visible {
	display: block
}
#cookie-bar .inside {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: stretch
}
#cookie-bar .inside > div.text {
	padding: 10px;
	flex: 1;
	position: relative
}
#cookie-bar .inside > div.button {
	position: relative;
	display: flex;
	padding: 0;
	margin: 0;
}
#cookie-bar p {
	vertical-align: middle;
	font-size: 12px;
	line-height: 120%;
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: left
}
#cookie-bar p a,#cookie-bar p a:link,#cookie-bar p a:visited {
	color: #bebebe
}
#cookie-bar p a:hover {
	color: #e9e9e9;
	text-decoration: underline
}
#cookie-bar a.accept {
	font-family: Arial, Helvetica, sans-serif;
	display: flex;
	position: relative;
	color: #fff;
	background: #97a617;
	white-space: nowrap;
	padding: 0 15px;
	font-weight: bold;
	align-items: center;
	font-size: 14px;
	text-decoration: none;
}
#cookie-bar a.accept:hover {
	background: #7c880f
}
#cookie-bar a.accept span {
	display: inline-block;
	vertical-align: middle
}
#cookie-bar a.accept:after {
	content: '\D7';
	text-align: center;
	font-size: 1.6em;
	line-height: 100%;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	margin-top: -0.05em
}


@media only screen and (max-width: 575px) {
	#cookie-bar .inside {
		display: block
	}
	#cookie-bar p {
		font-size: 11px
	}
	#cookie-bar .inside > div.text {
		display: block;
		padding-top: 15px
	}
	#cookie-bar .inside > div.button {
		display: inline-block;
		position: absolute;
		bottom: 100%;
		right: 10px;
		margin-bottom: -10px
	}
}
