#cookie-consent-banner {
	position: fixed;
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	box-sizing: border-box;
	bottom: 20px;
	right: 20px;
	left: auto;
	width: calc(100% - 40px);
	max-width: 380px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	border-radius: 10px;
	opacity: 0.97;
	font-family: system-ui, sans-serif;
	font-weight: normal;
	color: #000000;
	z-index: 100000;
}

#cookie-consent-banner h3 {
	text-align: left;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
	margin: 0 0 12px 0;
}
#cookie-consent-banner p {
	text-align: left;
	font-size: 13px;
	line-height: 18px;
	text-wrap: balance;
	margin: 0 0 12px 0;
}
#cookie-consent-banner label {
	font-size: 13px;
	line-height: 20px;
}
#cookie-consent-banner label input {
	margin-right: 7px;
}

#cookie-consent-banner .cookie-consent-options {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 12px 0;
	gap: 6px;
}
#cookie-consent-banner .cookie-consent-buttons {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 0;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
	width: 100%;
	height: 38px;
	border: 0;
	border-radius: 6px;
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 20px;
	cursor: pointer;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
	background-color: #000000;
}
#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 (max-width: 600px) {
	#cookie-consent-banner {
		bottom: 10px;
		right: 10px;
		left: 10px;
		max-width: none;
		width: auto;
	}
}
