#cookie-bar {
	background-color: rgba(255,255,255,0.9);
	color: #737373;
	font-size: 14px;
	z-index: 5000;
	display: inline-block;
	width: 100%;
}
#cookie-bar.fixed {position:fixed; top:0; left:0; width:100%;}
#cookie-bar.fixed.bottom {bottom:0; top:auto;}
#cookie-bar p {
	padding: 0;
	margin: 0;
	display: table;
	width: 100%;
}
#cookie-bar .text  {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 45px;
	width: 85%;
}
#cookie-bar .text  a {
	color: #a0a0a0;
}
#cookie-bar .text  a:hover {
	text-decoration: underline;
}
#cookie-bar .cb-enable {
	display: table-cell;
	vertical-align: middle;
	width: 15%;
	padding: 20px 45px;
	color: #113560;
	cursor: pointer;
	font-weight: 700;
	background-color: #c4b192;
	text-align: center;
}
#cookie-bar .cb-enable:hover {
	background-color: #a59171;
}

@media only screen and (max-width: 768px) {
	#cookie-bar .text  {
		padding: 10px 15px;
	}	
	#cookie-bar .cb-enable {
		width: 120px;
		padding: 10px 15px;
	}
}

@media only screen and (max-width: 480px) {
	#cookie-bar {
		display: block;
	}
	#cookie-bar .text {
		display: inline-block;
		width: 100%;
	}	
	#cookie-bar .cb-enable {
		padding: 15px 0;
		float: left;
		width: 100%;
		display: block;
	}
}