.cookie-consent-banner-open{
  position: fixed;
  left: 20px;
  bottom: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.1s ease-in-out;
}
#cookie-consent-banner {
	position: fixed;
	display: flex;
	padding: 20px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	bottom: 20px;
	left: 20px;
	width: calc(100% - 40px);
	max-width: 395px;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: rgba(44,50,73, 0.12) 0 0 20px;
	border-radius: 10px;
	opacity: 0.95;
	font-family: system-ui, sans-serif;
	font-weight: normal;
	color: #000000;
	z-index: 40000;
}

#cookie-consent-banner h3 {
	text-align: center;
	font-size: 20px;
	line-height: 37px;
	font-weight: 700;
	margin-bottom: 12px;
}
#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: 14px;
	line-height: 26px;
}
#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: 10px;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
	/*width: 200px;*/
	padding: 4px 8px;
	border: 2px solid #D3CBC9;
	border-radius: 20px;
	box-sizing: border-box;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 23px;
    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: #FFF;
    color: #2C3249;

}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	background-color: #FFF;
    color: #2C3249;
}

@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;
	}
}

