@charset "UTF-8";
.quiz-input input[type=checkbox]:not(old),
.quiz-input input[type=radio]:not(old) {
  width: 2em;
  opacity: 0; }

.quiz-input input[type=checkbox]:not(old) + label,
.quiz-input input[type=radio]:not(old) + label {
  display: inline-block;
  margin-left: -2em;
  line-height: 1.5em;
  font-size: 16px;
  color: #666666;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400; }

.quiz-input input[type=checkbox]:not(old) + label > span,
.quiz-input input[type=radio]:not(old) + label > span {
  display: inline-block;
  width: 0.875em;
  height: 0.875em;
  margin: 0.25em 0.5em 0.25em 0.25em;
  border: 1px solid silver;
  background: #e0e0e0;
  vertical-align: bottom; }

.quiz-input input[type=checkbox]:not(old) + label > span {
  border-radius: 10%; }

.quiz-input input[type=radio]:not(old) + label > span {
  border-radius: 50%; }

.quiz-input input[type=radio]:not(old):checked + label > span > span {
  display: block;
  width: 0.5em;
  height: 0.5em;
  margin: 0.125em;
  border: 1px solid #73994d;
  border-radius: 50%;
  background: #99cc66; }

.quiz-input input[type=checkbox]:not(old):checked + label > span:before {
  content: '✓';
  display: block;
  color: #99cc66;
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  font-weight: bold; }
