/* Cookie-Leiste
-----------------*/

.cookie-bar {
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
	line-height:24px;
	color: #FFFFFF;
	text-align:center;
	padding: 10px;
	z-index: 1001;
	-webkit-box-shadow: 0px 4px 3px rgba(50, 50, 50, 0.2);
	-moz-box-shadow: 0px 4px 3px rgba(50, 50, 50, 0.2);
	box-shadow: 0px 4px 3px rgba(50, 50, 50, 0.2);
}

.cookie-bar * {
	cursor: pointer;
	color: #FFFFFF;
}

.cookie-bar .fa {
	padding-right: 5px;
	color: #999999;
}

.cookie-bar .btn {
	display: inline-block;
	padding: 2px 10px;
	margin-left: 20px;
	background-color: #bfbfbf;
	color: #444444;
	border-radius: 5px;
}

.cookie-bar .btn.acc{
	background-color: #F1D100 !important;
}

.cookie-bar span:hover {
	opacity: 0.8;
}