.poll_box{
	padding: 20px;
	background: #f3f6fd;
	position: relative;
}
.poll_title{
	font-size: 24px;
	padding: 10px 0;
	font-weight: bold;
	width: 92%;
}
.poll_item{
	border: 1px solid #cecece;
	background: #eaf1ff;
	padding: 12px 20px;
	border-radius: 8px;
	margin: 10px 0;
	cursor: pointer;
	position: relative;
	font-size: 14px;
}
.poll_item:hover{
	background: #e2ebfe;
}
.poll_item.selected{
	border: 2px solid #3b79f6;
	font-weight: bold;
}
.poll_alt{
	font-size: 14px;
	padding: 10px 0;
	text-align: center;
	color: #AEAEAE;
}
.poll_percentage{
	float: right;
	font-weight: bold;
	display: none;
}
.poll_progress{
	position: absolute;
	background: #d1dffd;
	width: 0%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	border-radius: 8px 0 0 8px;
	display: none;
}
.poll_item_div{
	position: relative;
	z-index: 1;
}




#countdown {
	position: relative;
	height: 40px;
	width: 40px;
	text-align: center;
	right: 10px;
	top: 10px;
	display: none;
	position: absolute;
}

#countdown-number {
	color: #000;
	display: inline-block;
	line-height: 40px;
}

svg {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	transform: rotateY(-180deg) rotateZ(-90deg);
}

circle {
	stroke-dasharray: 113px;
	stroke-dashoffset: 0px;
	stroke-linecap: round;
	stroke-width: 2px;
	stroke: #000;
	fill: none;
	animation: countdown 5s linear infinite forwards;
	animation-play-state: paused;
}

	
@keyframes countdown {
  from {
    stroke-dashoffset: 0px;
  }
  to {
    stroke-dashoffset: 113px;
  }
}