@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: visible;
  }
  to {
    opacity: 1;
  }
}
#questions ul:not(.qg-callout__description > ul) {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
#questions ul:not(.qg-callout__description > ul) li {
  margin: 0.5rem 0;
  width: 100%;
}
#questions ul:not(.qg-callout__description > ul) li:first-child {
  margin-top: 1rem;
}
#questions ul:not(.qg-callout__description > ul) li input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#questions ul:not(.qg-callout__description > ul) li label {
  background: white;
  border: solid 2px var(--qg-color-primary-dark);
  border-radius: 4px;
  color: var(--qg-color-primary-dark);
  min-width: 100px;
  padding: 9px 24px;
  text-align: center;
  transition: background 0.25s, color 0.25s;
  width: 100%;
  margin-bottom: 0;
  font-size: 1.3rem;
}
#questions ul:not(.qg-callout__description > ul) li label:hover, #questions ul:not(.qg-callout__description > ul) li label:focus {
  background: var(--qg-color-primary-dark);
  color: white;
  transition: background 0.25s, color 0.25s;
}
#questions ul:not(.qg-callout__description > ul) li input:checked + label {
  background: var(--qg-color-primary-dark);
  color: white;
  transition: background 0.25s, color 0.25s;
}
#questions .sq_question_wrapper {
  margin-bottom: 2rem;
}
#questions .sq_question_wrapper > label {
  font-size: 1.3rem;
}
#questions .sq_question_wrapper, #questions .sq_result_bodycopy {
  animation-name: fadeIn;
  animation-duration: 1s;
}
#questions .sq_result_bodycopy .qg-callout__box {
  border: none;
  border-left: 5px solid var(--qg-color-brand-info);
}
#questions .sq_result_bodycopy .qg-callout__box h2 {
  font-size: 1.8rem;
}
#questions .sq_result_bodycopy .qg-callout__box .qg-callout__content p {
  margin-bottom: 0.75rem;
}
#qReset {
  display: none;
}
