#poll-overlay{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.8);
	backdrop-filter:blur(10px);
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:1000;
}
#poll-popup{
  background:#fff;
  padding:10px 20px;
  width:100%;
  max-width:500px;
}
#poll-popup h1{
  font-size:1.3rem;
  padding:10px 0px 20px 0px;
}
#poll-ul{

}
#poll-ul li{
  display:flex;
  align-items:center;
  font-size:1.2rem;
  margin:10px 0;
}
#poll-popup input[type="checkbox"]{
	appearance:none;
	border:1px solid #777;
	width:20px;
	height:20px;
	margin:0px 10px 0px 10px;
	position:relative;
}
#poll-popup input[type="checkbox"]:checked::before{
	position:absolute;
	content:' ';
	background:#319035;
	width:80%;
	height:80%;
	left:10%;
	top:10%;
	border-radius:20px;
}
#poll-buttons{
  display:flex;
  justify-content:center;
  margin-top:30px;
  margin-bottom:10px;
}
#poll-popup button{
  border:none;
  border-radius:10px;
  text-transform:uppercase;
  padding:10px 15px;
  margin:0px 10px;
}
#poll-answer{
  background:#319035;
  color:#fff;
}
#poll-close{
  background:#ccc;
  color:#555;
}