.question-img {
  border: 2px solid var(--color-border);
  background-color: #eeeeeeff;
  width: 40%;
  padding: 1em;
  border-radius: 0.7em;
  top: 10%;
  transform: translate(73%, -10%);
}
.question-img img {
  width: 90%;
}
.bulb-img {
  position: absolute;
  right: 3%;
  bottom: 3%;
  padding: 0.5em;
  border: none;
  width: 5.5%;
  height: 9%;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
.bulb-img:hover {
  background-color: var(--color-yellow);
  border-color: #fff;
}
.bulb-img img {
  width: 90%;
}
.option {
  width: 100%;
  position: absolute;
  left: 0;
  top: 80%;
  transform: translate(0%, -80%);
  height: 10%;
}
.opt {
  font-size: 1.7em;
  padding: 0.1em 2em;
  background-color: #eeeeeeff;
  border: 2px solid var(--color-blue);
  margin: 0 0.5em;
  border-radius: 0.3em;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

:lang(np) p.opt {
  font-family: kalimati !important;
}

.opt:hover {
  background-color: var(--color-yellow);
  border-color: var(--color-yellow-dark);
}
.hints {
  height: 7em;
  width: 6em;
  position: absolute;
  bottom: 0%;
  right: 0%;
  border-radius: 7px;
  background-color: var(--color-blue-light);
  transition: 0.4s ease-in-out;
  animation: popupani 0.1s ease-in-out forwards;
}
@keyframes popupani {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.hints img {
  width: 80%;
}
.correct {
  background-color: var(--color-correct);
  border-color: var(--color-correct-border);
}
.incorrect {
  background-color: var(--color-incorrect);
  border-color: var(--color-incorrect-border);
}
.right,
.wrong {
  position: absolute;
  width: 25%;
  top: -35%;
  right: -5%;
}
.wrong {
  width: 20%;
}
