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

#cookie-consent-banner h3 {
	text-align: center;
    color: #267cb7;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	margin-bottom: 20px;
}
#cookie-consent-banner p {
	text-align: center;
	font-size: 14px;
	line-height: 26px;
	text-wrap: balance;
	margin-bottom: 20px;
}
#cookie-consent-banner label {
	font-size: 16px;
	line-height: 24px;
}
#cookie-consent-banner label input {
	margin-right: 7px;
}

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

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
	width: 200px;
	height: 40px;
	border: 0;
	box-sizing: border-box;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 22px;
    cursor: pointer;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
	background-color: #25941e;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
	background-color: #505050;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	background-color: #505050;
}

#cookie-consent-banner .cookie-consent-buttons button {
	transition: 300ms;
}
#cookie-consent-banner .cookie-consent-buttons button:hover {
	transition: 300ms;
    box-shadow: inset 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
}

@media screen and (width < 600px) {
	#cookie-consent-banner h3 {
		font-size: 20px;
		line-height: 25px;
	}
	#cookie-consent-banner p {
		font-size: 14px;
		line-height: 16px;
	}

	#cookie-consent-banner .cookie-consent-buttons {
		flex-direction: column;
	}
}
.cookie-consent-banner-open {
	color: #cacaca;
    cursor: pointer;
    padding: 2px 4px;
    width: fit-content;
    letter-spacing: 1px;
    -webkit-transition: 300ms;
    transition: 300ms;
}
.cookie-consent-banner-open:hover {
	color: #ffffff;
    text-decoration: none;
}