.v-poll-area {
	border: 1px dotted #00d594;
	padding: 10px;
	border-radius: 10px;
	margin: 10px auto;
}

.v-poll-wrapper {
	padding: 30px;
	background: #fff;
	max-width: 500px;
	width: 100%;
	box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.1);
}

.v-poll-area label img {
	width: 50px;
	float: left;
	margin-right: 10px;
}

.v-poll-area h4 {
	background: #03b98e;
	padding: 10px;
	border-radius: 0px 0px 10px 10px;
	box-shadow: 0px 7px 0px 0px #03d294;
	color: #fff;
	margin-bottom: 20px;
}

.v-poll-main-image img {
	border-radius: 10px 10px 0 0;
	width: 100%;
}

@media (max-width:675px) {
	.v-poll-wrapper {
		max-width: 300px;
	}
}

.v-poll-wrapper header {
	font-size: 22px;
	font-weight: 600;
}

.v-poll-wrapper .v-poll-area {
	margin: 20px 0 15px 0;
}

.v-poll-area label {
	display: block;
	margin-bottom: 10px;
	padding: 8px 7px;
	border: 2px solid #e6e6e6;
	transition: all 0.2s ease;
	min-height: 60px;
	line-height: 37px;
	cursor: pointer;
}

label.opt-1.selected {
	border: 2px solid #cf2d00;
}

label.opt-2.selected {
	border: 2px solid #4bcc00;
}

label.opt-3.selected {
	border: 2px solid #cfbd00;
}

label.opt-4.selected {
	border: 2px solid #01638c;
}

div#pstyle1::after {
	background: #cf2d00 !important;
}

div#pstyle2::after {
	background: #4bcc00 !important;
}

div#pstyle3::after {
	background: #cfbd00 !important;
}

div#pstyle4::after {
	background: #01638c !important;
}

label.opt-1.selected .v-poll-row .v-poll-circle {
	border-color: #cf2d00 !important;
}

label.opt-2.selected .v-poll-row .v-poll-circle {
	border-color: #4bcc00 !important;
}

label.opt-3.selected .v-poll-row .v-poll-circle {
	border-color: #cfbd00 !important;
}

label.opt-4.selected .v-poll-row .v-poll-circle {
	border-color: #01638c !important;
}


label.opt-1 .v-poll-row .v-poll-circle::after {
	background: #cf2d00 !important;
}

label.opt-2 .v-poll-row .v-poll-circle::after {
	background: #4bcc00 !important;
}

label.opt-3 .v-poll-row .v-poll-circle::after {
	background: #cfbd00 !important;
}

label.opt-4 .v-poll-row .v-poll-circle::after {
	background: #01638c !important;
}

label .v-poll-row {
	display: flex;
	pointer-events: none;
	justify-content: space-between;
}

label .v-poll-row .v-poll-column {
	display: flex;
	align-items: center;
}

label .v-poll-row .v-poll-circle {
	height: 19px;
	width: 19px;
	display: block;
	border: 2px solid #ccc;
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
}

label .v-poll-row .v-poll-circle::after {
	content: "";
	height: 11px;
	width: 11px;
	border-radius: inherit;
	position: absolute;
	left: 2px;
	top: 2px;
	display: none;
}

.v-poll-area label:hover .v-poll-row .v-poll-circle::after {
	display: block;
	background: #e6e6e6;
}

label.selected .v-poll-row .v-poll-circle::after {
	display: block;
}

label .v-poll-row span {
	font-size: 16px;
	font-weight: 500;
}

label .v-poll-row .percent {
	display: none;
}

label .progress {
	height: 7px;
	width: 100%;
	position: relative;
	background: #f0f0f0;
	margin: 8px 0 3px 0;
	border-radius: 30px;
	display: none;
	pointer-events: none;
}

label .progress:after {
	position: absolute;
	content: "";
	height: 100%;
	background: #ccc;
	width: calc(1% * var(--w));
	border-radius: inherit;
	transition: all 0.2s ease;
}

.v-poll-area input[type="radio"],
.v-poll-area input[type="checkbox"] {
	display: none;
}