#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: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	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: 30px;
	line-height: 37px;
	font-weight: 700;
	margin-bottom: 20px;
	margin-top: 5px;
}

#cookie-consent-banner p {
	text-align: center;
	font-size: 18px;
	line-height: 26px;
	text-wrap: balance;
	margin-bottom: 20px;
}
#cookie-consent-banner label {
	font-size: 18px;
	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: 20px;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
	width: 220px;
	height: 50px;
	border: 0;
	border-radius: 10px;
	box-sizing: border-box;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 23px;
}
	#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
		color: #c21bb3; 
		background-color: white;
	}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
		color: #2a49df;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	background-image: linear-gradient(90deg, #c21bb3 30%, #2a49df);
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(4) {
	background-image: linear-gradient(90deg, #c21bb3 30%, #2a49df);
}

#cookie-title {
	width: unset !important;
	display: flex;
	align-items: center;
}

#cookie-consent-banner .cookie-consent-buttons button:hover {
	border: solid 1px #2a49df;
	font-weight: 900;
	background-color: lightgrey;
}

.switch {
	display: inline-block;
	height: 34px;
	position: relative;
	width: 60px;
}

.switch input {
	display: none;
}

.slider {
	background-color: #ccc;
	bottom: 0;
	cursor: pointer;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transition: .4s;
}

.slider:before {
	background-color: #fff;
	bottom: 4px;
	content: "";
	height: 26px;
	left: 4px;
	position: absolute;
	transition: .4s;
	width: 26px;
}

#cookie-consent-banner .cookie-consent-options input:checked + .slider {
	background-color: #66bb6a;
}

#cookie-consent-banner .cookie-consent-options input:checked + .slider:before {
	transform: translateX(26px);
}

.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.cookie-inputs {
	border: solid 1px white;
	font-weight: 700;
	padding: 5px;
	border-radius: 10px;
}

.cookie-inputs:hover {
	border: solid 1px #2a49df;
	font-weight: 900;
}

@media screen and (max-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-title {
		flex-direction: column;
		align-items: flex-start;
	}

	#cookie-consent-banner .cookie-consent-buttons button:hover {
		border: solid 1px #2a49df;
		font-weight: 900;
		background-color: lightgrey;
	}

}
@media screen and (max-width: 360px) {
	#cookie-consent-banner h3 {
		font-size: 15px;
		line-height: unset;
	}

	#cookie-consent-banner p {
		font-size: 14px;
		line-height: 16px;
	}

	#cookie-consent-banner img {
		padding-right: unset;
	}

	#cookie-consent-banner .cookie-consent-buttons {
		flex-direction: column;
	}

	#cookie-consent-banner .cookie-consent-buttons button {
		height: 30px;
	}

	#cookie-consent-banner .cookie-consent-options,
	#cookie-consent-banner .cookie-consent-buttons {
		align-items: center;
		margin-bottom: unset;
		gap: 10px;
	}

	#cookie-consent-banner label {
		font-size: 16px;
		line-height: 0px;
	}

	#cookie-consent-banner .cookie-consent-buttons button:hover {
		border: solid 1px #2a49df;
		font-weight: 900;
		background-color: lightgrey;
	}
}
