#cookie-container {
	padding: 0px 15px 0px 10px;
}

.cookie-bar {
	padding: 5px 0px 5px 0px;
	position: fixed;
	z-index: 10;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	height: auto;
	text-align: center;
	line-height: 30px;
	background: #000;
    opacity: 0.87;
	color: #F0F0F0;
	font-size: 10px;
	font-family: "Noto Sans", sans-serif;
	letter-spacing: -0.3px;
	font-weight: bold;
	transition: .8s;
	animation: slideIn .8s;
	animation-delay: .8s;
}

.mobile {
	display: none;
	@media (max-width: 767px){
	display: inline-block;
	}
}

@keyframes slideIn {
0% {
	transform: translateY(-50px);
}
100% {
	transform: translateY(0);
}
}

.close-cb {
border: none;
color: #D4A531;
background: #111;
display: inline-block;
right: 10px;
top: 0;
cursor: pointer;
border-radius: 0px;
box-shadow: inset 0 0 3px 0 rgba(0,0,0,.2);
line-height: 30px;
height: 30px;
width: 42px;
font-size: 12px;
font-weight: bold;

}

.close-cb:hover {
background: #444;
}

.checkbox-cb {
display: none;
}

.checkbox-cb:checked + .cookie-bar{
transform: translateY(-500px);
}