.poll-container {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.poll-container .poll-description {
	margin: 20px 0;
}

.poll-container .poll-items {
	margin: 10px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.poll-container .poll-items .poll-questions {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.poll-container .poll-items .poll-questions .pi-question {
	margin: 20px 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.poll-container .poll-items .poll-questions .pi-question:first-child {
	margin-top: 0;
}

.poll-container .poll-items .poll-questions .pi-question .piq-title {
	margin: 0 0 10px 0;
	padding: 0;
	font-weight: bold;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin-bottom: 10px;
	padding-left: 16px;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item.row {
	flex-direction: row !important;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item .poll-checkbox,
.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item .poll-radio {
	width: 20px;
	height: 20px;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item span {
	display: flex;
	margin: auto 0;
	padding-left: 12px;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item span.nopadding {
	padding-left: 0 !important;
	margin-bottom: 10px !important;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item .poll-textarea {
	border: 1px solid var(--page-form-line-grey);
	padding: 12px 16px;
}

.poll-container .poll-items .poll-questions .pi-question .piq-container .poll-question-item .poll-textarea:focus {
	outline: none !important;
}

.poll-container .poll-items .poll-questions .poll-buttons {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	margin: 0;
	padding: 20px 0;
}

.poll-container .poll-items .poll-questions .poll-buttons .poll-button {
	padding: 18px 30px;
	background-color: var(--page-button-bg-green);
	color: var(--page-fc-white);
	font-size: 120%;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.poll-container .poll-items .poll-questions .poll-buttons .poll-button:hover {
	opacity: .8;
}























