#cookie-bar {
  background-color: rgba(255, 255, 255,.8);
	height: auto;
	line-height: 24px;
	color: rgb(87, 87, 86);
	text-align: center;
	padding: 6px 15px 9px 15px;
	bottom: auto;
	top: 0;
	position: fixed;
	z-index: 99999;
  border-top:1px solid #fff;
  box-shadow: 0 7px 10px 0 rgba(0, 0, 0, .3);
  width:100%;
	
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}
#cookie-bar:hover {
  background-color: rgba(255, 255, 255,1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
}
#cookie-bar.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
#cookie-bar {
}
#cookie-bar p {
	margin: 0;
	padding: 0;
  
	font-family: Helvetica, Arial, "sans-serif";
  font-size: 14px;
  line-height: 16px;
}
#cookie-bar a {
	color: rgb(87, 87, 86);
	display: inline-block;
	border-radius: 0;
	text-decoration: none;
	padding: 2px 6px;
	margin-left: 8px;

	font-family: Helvetica, Arial, "sans-serif";
  font-size: 14px;
  line-height: 16px;
}
#cookie-bar .cb-enable {
	background: #fff;
	color: rgb(87, 87, 86);
}
#cookie-bar .cb-disable {
	background: #990000;
}
#cookie-bar .cb-disable:hover {
	background: #bb0000;
}
#cookie-bar .cb-policy {
	background: #fff;
	color: rgb(87, 87, 86);
}
