/* CookieMonster Extension */
.widget-cookie {
	/* default */
	z-index: 999;
	position: fixed;
	/* background-color: rgb(255, 255, 255); */
	font-size: 12px;
	color: rgb(0, 0, 0);
	bottom: 0px;
	left: 0px;
	width: 100%;
	/* box-shadow: rgb(0 0 0) 0px -2px 2px; */
	
	/* custom */
	background:#fff;
	border-top:0.75px solid #ccc;
}
.widget-cookie-button-container {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
	
	justify-content: flex-end;
}
.cookie-banner, .cookie-modal {
	position: fixed;
	z-index: 9999;
	font-family: Arial, sans-serif;
}
.cookie-banner {
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem;
	box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
}
.cookie-content h3 { margin-top: 0; }
.cookie-content a { color: #66c0ff; text-decoration: underline; }
.hidden { display: none !important; }
.cookie-modal {
	top: 0; left: 0; width: 100%; height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex; align-items: center; justify-content: center;
}
.cookie-modal-content {
	background: #fff; color: #333; padding: 2rem;
	border-radius: 10px; width: 90%; max-width: 450px;
}
.cookie-modal-actions button {
	margin: 1rem 0.5rem 0 0;
	padding: 0.5rem 1rem;
}
