.polling {
	position: relative;
	top: 0px;
	padding: 10px;
	max-width: 75%;
	margin: auto;
	opacity: 0;
	background: #686f73;
	border-radius: 10px;
	border-width: 0px;
	border-style: solid;
	border-color: #686f73;
}
@media (min-width:1281px) {
	.polling {
		max-width: 60%;
	}
}
.polling .question {
	font-size: 70px;
	font-weight: bold;
	color: #FFF;
	text-align: center;
}
.polling .answer {
	color: #000;
	background-color: #EEE;
	border-radius: 3px;
	height: 30px;
	position: relative;
	margin-bottom: 5px;
}
.polling .wrap {
	display: flex;
	width: 100%;
	height: 33px;
	white-space: nowrap;
}
.polling .choicetext {
	font-size: 26px;
}
.polling .votes {
	overflow: hidden;
	color: #FFF;
}
.polling .votes > .choicetext {
	position: absolute;
	top: 7px;
	left: 10px;
}
#pollremaining {
	height: 30px;
	color: #FFF;
}
#pollremaining > div {
	float: right;
}
#chart, .chart {
	display: block;
	margin: auto;
}
#pollvoteurl {
	color: #FFF;
	margin-top: 5px;
	font-size: 16px;
	float: left;
}
.question {
	font-size: 20px;
	word-break: break-word;
	word-wrap: break-word;
}
.choice {
	margin-bottom: 5px;
	cursor: pointer;
	background-color: #EEE;
	border-radius: 3px;
	height: 50px;
	position: relative;
	-webkit-transition: background-color 0.2s ease-in-out;
	-moz-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}
.choice .wrap {
	padding: 14px 45px 14px 10px;
	position: absolute;
	width: 100%;
}
.onlyresults {
	margin-bottom: 5px;
	background-color: #EEE;
	border-radius: 3px;
	height: 50px;
	position: relative;
	-webkit-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	-o-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
}
.onlyresults .wrap {
	padding: 14px 45px 14px 5px;
	position: absolute;
	width: 100%;
}

.choice:hover {
	background-color: #CCC;
}
.choicetext {
	flex-grow: 1;
	font-size: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.choiceanswers {
	text-align: right;
	z-index: 999;
	font-weight: bold;
}
.votes {
	background-color: #519ACF;
	color: #FFF;
	width: 0%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	border-radius: 3px;
	overflow: hidden;
}
.votes > .choicetext {
	position: absolute;
	top: 14px;
	left: 10px;
	white-space: nowrap;
}
.correct .votes {
	color: #3FD96D !important;
}

#legend > span, .legend > span {
	display: block;
	margin-bottom: 3px;
	margin-left: 30px;
	color: #FFF;
}
.colorsample {
	display: block;
	border-radius: 50%;
	float: left;
	position: relative;
	width: 30px;
	height: 30px;
	margin-right: 8px;
	top: 3px;
	font-size: 22px;
	font-weight: bold;
	color: #FFF;
	text-shadow: 1px 0 0 #000, 0 -1px 0 #000, 0 1px 0 #000, -1px 0 0 #000;
	box-shadow: inset -3px -3px 12px rgba(0,0,0,.45);
	text-align: center;
}
.question.xsmallfont {
	font-size: 130% !important;
}
.question.smallfont {
	font-size: 140% !important;
}
.question.normalfont {
	font-size: 155% !important;
}
.question.bigfont {
	font-size: 170% !important;
}
.question.hugefont {
	font-size: 200% !important;
}