#consentContainer {
	font-family: verdana;
	font-size: 14px;
	line-height: 21px;

	background-color: white;
	padding: 15%;
	border: 1px solid black;
	position: fixed;
	display: block;
	top: 20%;
	width: 70%;
	margin: 0 auto;
	z-index: 1000; 
}

#consentContainer i {
	color: darkgray;
	font-size: 10px;
	line-height: 15px;
}

#consentDetails {

	list-style-type: none;
	display: none;

}

#consentDetails>li {
	padding: 5px;
}


#consentButtons , #consentSaveButton{
	display: flex;
	justify-content: space-evenly;
}

#consentContainer button {
	padding: 10px 20px;
	border: gray;
	background-color: lightgray;
	text-align: center; 
	border-radius: 3px;
}

#consentContainer button:hover {
	background-color: gray;
	color: white;
	transition-duration: 0.5s;
}

#consentSaveButton {
	justify-content: space-evenly;
	display: none;
}


#consentButton {
	position: fixed;
	padding: 5px;
	bottom: 10px;
	left: 10px;
	border: 1px solid black;
	background-color: white;
	border-radius: 5px;
	transition-duration: 0.5s;
	z-index: 1000;
	display: none;
}

#consentButton:hover {
	background-color: lightgray;
}

#consentButton img {
	width: 30px;
	height: 30px;	
}

smiley {
	font-size: 20px;
}