#quiz-pb {
  --track-height: 6px;
  --track-color: Lightgrey;
  --indicator-color: Dodgerblue;
}
.pb-container {
  position: relative;
  max-width: 600px;
  margin: 5% auto;
  padding: 10px;
}
.quiz-container {
  width: 100%;
  position: absolute;
  top: 18px;
  display: flex; 
  justify-content: space-evenly;
}
.pb-quiz-btn {
  position: relative;
  width: 45px;
  aspect-ratio: 1 / 1;
  padding: 0;
  color: Dimgrey;
  background-color: #ebebeb;
  border: 4px solid White;
  border-radius: 50%;
  box-shadow: 2px 2px 8px Lightgrey;
  transition: all 0.3s ease;
  & i {
    pointer-events: none;
  }
}
.pb-quiz-btn[active] {
  background-color: Dodgerblue;
  & i {
    color: White;
  }
}
.pb-quiz-btn[completed] {
  background-color: Limegreen;
  & i {
    color: White;
  }
}
.pb-quiz-btn[disabled] {
  cursor: not-allowed;
}
.pb-btn {
  width: 40px;
  aspect-ratio: 1 / 1;
  padding: 0;
  color: DimGrey;
  background-color: #E5E9EC;
  border: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.pb-btn[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  &:hover {
    color: DimGrey;
    background-color: #E5E9EC;
  }
}
.left-offset {
  left: 10px;
}
.right-offset {
  right: 10px;
}
.quiz-tooltip {
  visibility: hidden;
}
.quiz-tooltip::part(body) {
  padding: 12px;
}
.pb-quiz-dialog::part(dialog)::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}
.pb-quiz-dialog::part(title) {
  font-size: 30px;
}
.pb-quiz-dialog::part(body) {
  padding-top: 0px;
}
.question-content input {
  scale: 1.8;
  accent-color: Dodgerblue;
}
.question-content label {
  font-size: 18px;
  vertical-align: middle;
  display: inline;
  line-height: 1.6;
}
.check-anwer-btn {
  width: 160px;
  height: 45px;
  font-size: 18px;
  font-weight: bold;
  color: White;
  background-color: Dodgerblue;
  cursor: pointer;
  border: none;
  border-radius: 8px;
}
.fa-flag-checkered {
  width: 30px;
  height: 30px;
  line-height: normal;
  transform-origin: 10% 100%;
  --fa-animation-duration: 4s;
}
@media (hover: none) {
  .quiz-tooltip {
    display: none;
  }
}