#cookie-bar {
	background: #111111;
	height: auto;
	line-height: 24px;
	color: #eeeeee;
	text-align: center;
	padding: 5px 0;
	position: fixed;
	right: 0;
	left: 75px;
	top: 0;
	z-index: 9999;
	
	
}
#cookie-bar.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
#cookie-bar.fixed.bottom {
	bottom: 0;
	top: auto;
}
#cookie-bar p {
	margin: 0;
	padding: 0;
	color: white;
}
#cookie-bar a {
	color: #ffffff;
	display: inline-block;
	border-radius: 0;
	text-decoration: none;
	padding: 2px 10px;
	margin-left: 8px;
}
#cookie-bar .cb-enable {
	background: black;
	color: white;
	border: 1px solid  white;
	transition: all .3s ease;
}

#cookie-bar .cb-enable:hover {
	background: #ccc;
	color: black;
	border: 1px solid  #ccc;
}


#cookie-bar .cb-disable {
	background: #990000;
}


#cookie-bar .cb-disable:hover {
	background: #bb0000;
}
#cookie-bar .cb-policy {
	background: black;
	color: white;
	border: 1px solid  white;
	transition: all .3s ease;
}

#cookie-bar .cb-policy:hover {
	background: #ccc;
	color: black;
	border: 1px solid  #ccc;
}


@media screen and (max-width: 767px) {
	#cookie-bar {
	position: absolute;
    z-index: 999999999;
    width: 100%;
		top: auto;
		bottom: 0;
		left: 0;
}
	
	#cookie-bar P {
		display: block;
	}
	
