#cookie-notice {
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 10px;
    text-align: center;
}

#cookie-popup {
    background: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

#cookie-notice{
	position: fixed; 
	bottom: 10px; 
	left: 10px; 
	right: 10px; 
	background: #000; 
	color: #fff; 
	padding: 10px; 
	text-align: center; 
	display: none; 
	z-index: 9999;
}

#cookie-popup{
	display: none; 
	position: fixed; 
	top: 45%; 
	left: 50%; 
	transform: translate(-50%, -50%); 
	width: 90%; 
	max-width: 750px; 
	background: #fff; 
	padding: 20px; 
	border-radius: 5px; 
	box-shadow: 0 0 10px rgba(0,0,0,0.3); 
	z-index: 9999;	
}