#cookie-consent-banner {
	position: fixed;
	display: flex;
	padding: 14px 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	bottom: 16px;
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 640px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	opacity: 0.98;
	font-family: system-ui, -apple-system, sans-serif;
	font-weight: normal;
	color: #1a1a1a;
	z-index: 99999;
}

#cookie-consent-banner h3 {
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	margin: 0 0 8px 0;
	color: #111;
}

#cookie-consent-banner p {
	text-align: center;
	font-size: 13px;
	line-height: 18px;
	text-wrap: balance;
	margin: 0 0 12px 0;
	color: #444;
}

#cookie-consent-banner label {
	font-size: 12px;
	line-height: 16px;
	color: #333;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}

#cookie-consent-banner label input {
	margin-right: 5px;
	cursor: pointer;
}

#cookie-consent-banner .cookie-consent-options {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 12px;
	gap: 12px;
}

#cookie-consent-banner .cookie-consent-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	gap: 10px;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 110px;
	height: 34px;
	padding: 0 16px;
	border: 0;
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	line-height: 16px;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

#cookie-consent-banner .cookie-consent-buttons button:hover {
	opacity: 0.88;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
	background-color: #222222;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
	background-color: #1A0D60;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	background-color: #4E38C7;
}

@media screen and (width < 600px) {
	#cookie-consent-banner {
		padding: 12px 16px;
		bottom: 10px;
		width: calc(100% - 20px);
	}

	#cookie-consent-banner h3 {
		font-size: 15px;
		line-height: 18px;
		margin-bottom: 6px;
	}

	#cookie-consent-banner p {
		font-size: 12px;
		line-height: 16px;
		margin-bottom: 10px;
	}

	#cookie-consent-banner .cookie-consent-options {
		gap: 8px;
		margin-bottom: 10px;
	}

	#cookie-consent-banner .cookie-consent-buttons {
		flex-direction: row;
		width: 100%;
		gap: 6px;
	}

	#cookie-consent-banner .cookie-consent-buttons button {
		flex: 1;
		min-width: 0;
		height: 32px;
		padding: 0 8px;
		font-size: 11px;
	}
}
