.poll-active {
	float: left;
	padding: 40px 10px 20px 10px;
	color: #fff;
	font: bold 16px mtavruli;
	background: linear-gradient(#034990, #0165ad);
}
.poll-passive {
	float: left;
	position: relative;
	margin-left: 5px;
	padding: 40px 30px 20px 10px;
	color: #fff;
	font: bold 16px mtavruli;
	background: transparent;
	overflow: hidden;
}
.poll-passive:after {
	content: ' ';
	width: 200%;
	height: 200%;
	background: #acacac;
	position: absolute;
	top: -40%;
	left: -62%;
	transform-origin: 50% 50%;
	transform: rotate(75deg);
	z-index: -1;
}

.poll-box {
	position: relative;
	width: 100%;
	max-width: 700px;
	padding-top: 50px;
	background-color: #025aa1;
	background: linear-gradient(#034990, #016eb6);
}
.poll-box .line {
	position: absolute;
	border-bottom: 40px solid rgba(1, 104, 176, 0.9);
	border-right: 15px solid transparent;
	width: 105%;
	z-index: 1;
	top: 5px; left: -5px;
}
.poll-box .line2 {
	position: absolute;
	border-top: 40px solid rgba(0, 0, 0, 0.5);
	border-right: 35px solid transparent;
	width: 98%;
	z-index: 3;
	top: 12px; left: 0;
}
.poll-box .vertical-line {
	position: absolute;
	top: 0; left: 10px;
	z-index: 2;
	height: 130px;
	border-left: 2px solid #fff;
}

.poll {
	border-bottom: 2px solid #ededed;
	margin: 0 10px;
	padding: 10px 0;
	color: #fff;
}
.poll:last-child {
	border-bottom: none;
}

.poll .question {
	margin-left: 5%;
	font-size: 16px;
	font-family: mtavruli;
	text-align: left;
}

.poll .poll-container {
}
.poll .poll-container .radio-panel {
	float: left;
	margin-left: 3%;
	width: 35%;
	padding: 5px 2px;
}
.poll .poll-container .radio-panel input {
	float: left;
	padding: 0px;
	margin: 2px 10px 2px 2px;
	width : 12px;
	height: 12px;
}
.poll .poll-container .radio-panel label {
	padding: 0px;
	font-size: 12px;
}

.poll .answer {
	float: left;
	border: 1px solid green;
	margin-top: 5px;
	margin-bottom: 2px;
	font-size: 12px;
	margin-left: 8px;
	color: #696969;
}
.poll .respons {
	float: left;
	width: 35%;
	margin: 5px 0 0 20px;
	font-size: 5px;
}
.poll .respons div {
	border-radius: 10px;
	height: 12px;
	background-color: #3385df;
	background: -webkit-linear-gradient(#9fbcdc, #3385df);
	background: -o-linear-gradient(#9fbcdc, #3385df);
    background: -moz-linear-gradient(#9fbcdc, #3385df);
    background: linear-gradient(#9fbcdc, #3385df);
	font-size: 5px;
}
.poll .votes-percentage {
	float: left;
	margin: 3px 0 0 20px;
}

.poll .votes-percentage .answer-votes {
	display: inline-block;
	min-width: 55px;
}

.poll .form-container .submit-panel {
	margin: 5px 0 0 0;
	text-align: left;
}

.poll .show-result ,.poll .submit-poll {
	margin-left: 3%;
	background-color: #eeeeee;
	background-image: linear-gradient(to bottom , #eeeeee, #cccccc);
	border-radius: 3px;
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	color: #333;
	padding: 2px 16px;
	text-align: center;
	text-shadow: 0 1px 0 #eee;
	transition: all 0.2s ease 0s;
}

.poll .show-result:hover ,.poll .submit-poll:hover {
	background-color: #dddddd;
	background-image: linear-gradient(to top, #dddddd, #bbbbbb);
	border: 1px solid #bbb;
	border-bottom: 1px solid #999;
	cursor: pointer;
}

.poll .total-votes {
	font-size: 14px;
	font-family: mtavruli;
	margin: 10px 0 10px 3%;
}

.poll .loader {
	display: none;
	margin: 10px 3%;
	text-align: left;
}