#cookie-consent-banner {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	background: #2c2c2c;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
}
#cookie-consent-banner .cookie-consent-inner {
	max-width: 960px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
#cookie-consent-banner .cookie-consent-text {
	flex: 1 1 280px;
	font-size: 14px;
	line-height: 1.4;
}
#cookie-consent-banner .cookie-consent-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
#cookie-consent-banner button {
	cursor: pointer;
	border: 0;
	padding: 10px 18px;
	font-size: 14px;
}
#cookie-consent-banner .cookie-consent-accept {
	background: #4AC503;
	color: #fff;
}
#cookie-consent-banner .cookie-consent-necessary {
	background: #fff;
	color: #2c2c2c;
}
