@charset "UTF-8";
label.mchoice {
  width: 100%;
  background: rgb(231, 231, 231);
  position: relative;
  color: black;
  padding: 0.5rem 0.5rem 0.5rem 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
}
label.mchoice:hover {
  background: rgb(200, 200, 200);
}

.mchoice-holder {
  position: relative;
}

input.mchoice-rb {
  display: block;
  position: absolute;
  opacity: 0;
  top: 5px;
  left: 5px;
}
input.mchoice-rb:focus + label.mchoice {
  border: 2px solid black;
}

label.mchoice::before {
  content: "○";
  background: #d1dad1;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 24px;
  vertical-align: middle;
  padding: 0 0.5rem;
}

input:checked + label.mchoice {
  background-color: black;
  color: white;
}

input:checked + label.mchoice::before {
  content: "✓";
  background: #002b00;
  height: 100%;
  position: absolute;
  left: 0;
  vertical-align: middle;
  padding: 0 0.5rem;
}

.quiz-results .yaq-icocorrect {
  color: rgb(0, 121, 0);
}
.quiz-results .yaq-icofail {
  color: rgb(70, 0, 0);
}

#yaquizTimer {
  position: fixed;
  z-index: 1000;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 1rem;
}

#yaquizTimer.warning {
  animation: blinker 3s linear infinite;
}
@keyframes blinker {
  50% {
    background: rgba(255, 0, 0, 0.5);
  }
}

/*# sourceMappingURL=style.css.map */
