#cookie-modal {
	display: none;
	position: fixed;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
	opacity: 0.01;
}

#cookie-modal.show{
	opacity: 1;
	transition: opacity 0.3s 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: 40px;
	left: 40px;
	width: calc(100% - 40px);
	max-width: 800px;
	background: rgba(255,255,255,0.97) 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	border-radius: 10px;
	font-family: system-ui, sans-serif;
	font-weight: normal;
	color: #000000;
	z-index: 40000;

}

/*modal - center*/
#cookie-consent-banner {
	left: 50%;
	top: 50%;
	bottom: auto;
	transform: translate(-50%, -50%);
}


#cookie-consent-banner-open{
	position: fixed;
	bottom: 30px;
	left: 30px;
	background-color: red;
}

#cookie-consent-banner h3 {
	text-align: center;
	font-size: 24px;
	line-height: 37px;
	font-weight: 600;
	margin-bottom: 20px;
}
#cookie-consent-banner p {
	text-align: center;
	font-size: 16px;
	line-height: 26px;
	text-wrap: balance;
	margin-bottom: 20px;
}
#cookie-consent-banner label {
	font-size: 16px;
	line-height: 26px;
	font-weight: normal;
}
#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: 210px;
	height: 54px;
	border: 1px solid rgba(120,130,140, 0.3);
	border-radius: 10px;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	cursor: pointer;
}
#cookie-consent-banner .cookie-consent-buttons #cookie-consent-btn-setup,
#cookie-consent-banner .cookie-consent-buttons #cookie-consent-btn-reject-all,
#cookie-consent-banner .cookie-consent-buttons #cookie-consent-btn-accept-some {
	background-color: rgba(255,255,255,0.2);
	color: #666666;
}
#cookie-consent-banner .cookie-consent-buttons #cookie-consent-btn-accept-all {
	background-color: #50b650;
}

#cookie-consent-banner.simple .cookie-consent-buttons #cookie-consent-btn-reject-all,
#cookie-consent-banner.simple .cookie-consent-buttons #cookie-consent-btn-accept-some,
#cookie-consent-banner.simple .cookie-consent-options{
	display: none;
}

#cookie-consent-banner.setup .cookie-consent-buttons #cookie-consent-btn-setup,
#cookie-consent-banner.simple .cookie-consent-buttons #cookie-consent-btn-accept-some{
	display: none;
}

@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;
	}
}