body {
	font-size: 5vmin;
	margin: 5vmin;
}

.vote-refresh-html {
	display: none;
}

.vote-error {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: solid 1em #ff0000;
	padding: 1em;
	border-radius: 1em;
	font-weight: 700;
	text-align: center;
}

.vote-message {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: solid 1em #0060E3;
	padding: 1em;
	border-radius: 1em;
	font-weight: 700;
	text-align: center;
}


.vote-holder .question {
	font-weight: 400;
	margin-bottom: 1em;
	text-align: center;
}

.vote-holder .answers {
	margin-bottom: 1em;
}

.vote-holder .answers .vote-answer-button {
	display: block;
	text-align: center;
	padding: 0.5em;
	border-radius: 0.5em;
	margin-bottom: 0.5em;
	text-decoration: none;
	color: #ffffff;
	background-color: #402B7C;
	transition: background 0.2s;
}

.vote-holder .answers .vote-answer-button.selected {
	background-color: #005B12;
}

.vote-holder .vote-answer-confirm-button {
	display: block;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
	padding: 0.5em;
	border-radius: 0.5em;
	text-decoration: none;
	color: #ffffff;
	text-transform: uppercase;
	background-color: #0060E3;
}