#cookie-consent-img-logo{
	width: 90px;
	height: auto;
	margin-left: 60px;
	margin-right: 60px;
}

#cookie-consent-banner {
	position: fixed;	
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	box-sizing: border-box;
	bottom: 10px;
	/*top: 10px;  is defined only for small screens*/
	left: 10px;
	right: 10px;
	/*width: calc(100% - 40px);
	max-width: 800px;*/
	background: #6CAFAF 0% 0% no-repeat padding-box;
	box-shadow: 0px 3px 30px #00000029;
	border-radius: 10px;
	opacity: 0.99;
	font-family: system-ui, sans-serif;
	font-weight: normal;
	color: #000000;
	z-index: 40000;
}

#cookie-consent-textblocks{
	display: flex;
	flex-direction: column;
	height: auto;
	overflow: auto;

}

#cookie-consent-info-text{
	display: flex;
	flex-direction: column;
	max-height: 18em;
	height: 100%;
	min-height: 20vh;	
	padding-top: 5px;
	padding-b: 5px;
	overflow: auto;
}

#cookie-consent-banner h3 {
	font-family: system-ui, sans-serif;
	font-weight: bold;
	color: #272423;
	text-align: left;
	font-size: 18px;
	line-height: 37px;
	font-weight: 700;
	margin-bottom: 20px;
}
#cookie-consent-banner p {
	text-align: left;
	font-size: 18px;
	line-height: 26px;
	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 {
	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 {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	margin-bottom: 15px;
	margin-left: 35px;
	margin-right: 60px;
	gap: 20px;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
	width: 300px;
	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) {
	border: 2px solid #89BFBF;
	background-color: #000000;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
	border: 2px solid #89BFBF;
	background-color: #568C8C
;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	border: 2px solid #89BFBF;
	background-color: #568C8C
;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1):hover {
  background-color: #6CAFAF;
  color: black;
  border-color: black;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2):hover {
  background-color: #89BFBF;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3):hover {
  background-color: #89BFBF;
}

@media screen and (width < 600px) {

	#cookie-consent-img-logo{
		width: 1.5em;
		height: auto;
	}

	#cookie-consent-banner h3 {
		font-size: 14px;
		line-height: 1.2;
	}
	#cookie-consent-banner p {
		font-size: 14px;
		line-height: 1.2;
	}
	#cookie-consent-banner{
		padding: 15px;
		flex-direction: column;
		margin-top: 10px;
		height: auto;
		max-height: calc(100% - 20px);
	}
	
	#cookie-consent-banner label {		
		font-size: 14px;
		line-height: 1.2;
	}

	#cookie-consent-banner .cookie-consent-options {
		margin-bottom: 10px;
		gap: 7px;
	}

	#cookie-consent-banner .cookie-consent-buttons {
		margin-left: 0;
		margin-right: 0;
	}

	#cookie-consent-banner .cookie-consent-buttons {
		gap: 15px;
	}

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

	#cookie-consent-banner .cookie-consent-buttons button {
		width: 200px;
		height: 40px;
	}
	#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
		order: 2;
	}
	/*#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
		order: 1;
	}*/
}