#cookie-bar, #cookie-bar * {
    box-sizing: border-box;
}
#cookie-bar {background:#ccc; height:auto; line-height:24px; color:#fff; text-align:center; padding:15px 15px;}

#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; font-size: 12px; margin-left: auto;margin-right: auto; max-width:1400px;}
#cookie-bar a {color:#fff; font-size: 12px; display:inline-block; text-decoration:none; margin-left:4px;}

#cookie-bar .cb-enable {margin: 5px 0 0 20px;border: 1px solid #fff; color: #fff; padding: 2px 10px;transition: all 0.3s ease-in;}
#cookie-bar .cb-enable:hover {background:#fff;color:#ccc;}

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

#cookie-bar .cb-policy {position: relative; font-weight: bold;}
#cookie-bar .cb-policy:after {
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: width 0.3s ease-in;
}
#cookie-bar .cb-policy:hover:after {
	width: 100%;
}
