#quiz-page .quiz-background {
  background: url(../images/DSC_5000.png) center 0vw no-repeat;
  min-height: 100vh;
  height: max-content;
  position: relative;
  background-size: cover !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#quiz-page .quiz-background__content {
  position: absolute;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(black), to(transparent));
  background: linear-gradient(0deg, black 0%, transparent 100%);
  width: calc(100% - 2 * 4.0625rem);
  padding: 4.0625rem 8.75rem;
  color: white;
}
#quiz-page .quiz-wrapper {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(3px);
  padding: 2rem;
  padding-bottom: 0;
  margin-bottom: 4rem;
  z-index: 10;
  position: relative;
  margin-top: 4rem;
}
#quiz-page .quiz__icon {
  display: flex;
  flex-direction: column;
  width: 7rem;
  align-items: center;
}
#quiz-page .quiz__icon img {
  height: 10rem;
}
#quiz-page .quiz__top {
  display: flex;
  justify-content: space-between;
}
#quiz-page .quiz__title {
  text-transform: uppercase;
  padding: 5rem;
  padding-top: 3rem;
}
#quiz-page .quiz__title-top h1 {
  font-size: 4rem;
}
#quiz-page .quiz__title-bot {
  padding-left: 14rem;
}
#quiz-page .quiz__title-bot h1 {
  font-size: 2.4rem;
}
#quiz-page .quiz__question {
  display: flex;
  justify-content: center;
  align-items: center;
}
#quiz-page .quiz__question-text {
  width: 100%;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 2rem;
}
#quiz-page .quiz__question-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: white;
  text-align: center;
  background: #00377C;
  border-radius: 50%;
  height: 4.5rem;
  width: 6.3rem;
  position: relative;
  top: 1.4rem;
  right: 0.6rem;
  transform: rotate(-10deg);
}
#quiz-page .quiz__answers-wrapper {
  background: white;
  padding: 1.5rem;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  z-index: 8;
  position: relative;
}
#quiz-page .quiz__answers-instruction {
  font-style: italic;
  font-size: 0.875rem;
}
#quiz-page .quiz__answer {
  display: grid;
  position: relative;
  padding-top: 1rem;
  grid-column-gap: 1rem;
  grid-template-columns: min-content calc(100% - 2.5rem);
  grid-template-areas: "checkbox answer" "result result";
}
#quiz-page .quiz__answer--correct input[type=checkbox]:checked {
  border-color: #3EAA00;
}
#quiz-page .quiz__answer--correct input[type=checkbox]:checked::before {
  background-color: #3EAA00;
}
#quiz-page .quiz__answer--incorrect input[type=checkbox]:checked {
  border-color: #E00000;
}
#quiz-page .quiz__answer--incorrect input[type=checkbox]:checked::before {
  background-color: #E00000;
}
#quiz-page .quiz__answer-text {
  grid-area: answer;
}
#quiz-page .quiz__answer-result {
  opacity: 0;
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 0.5rem;
  font-style: normal;
  grid-area: result;
}
#quiz-page .quiz__answer-result a {
  text-transform: unset;
}
#quiz-page .quiz__answer-result--correct {
  color: #3EAA00;
}
#quiz-page .quiz__answer-result--correct a {
  color: #3EAA00;
}
#quiz-page .quiz__answer-result--incorrect {
  color: #E00000;
}
#quiz-page .quiz__answer-result--incorrect a {
  color: #E00000;
}
#quiz-page .quiz__spoiler--hidden {
  display: none;
}
#quiz-page .quiz__first-result--hidden {
  display: none;
}
#quiz-page .quiz__checkbox {
  height: 1.5rem;
  width: 1.5rem;
  grid-area: checkbox;
}
#quiz-page .quiz__checkbox:checked ~ .quiz__answer-result {
  -webkit-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  opacity: 1;
}
#quiz-page .quiz__detail-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
}
#quiz-page .quiz__detail-wrapper--hidden {
  display: none;
}
#quiz-page .quiz__detail {
  text-align: center;
  margin-bottom: 2rem;
  margin-top: -5rem;
  padding-top: 5rem;
}
#quiz-page .quiz__detail-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem;
}
#quiz-page .quiz__detail-text {
  max-width: 60rem;
  line-height: 1.5rem;
}
#quiz-page .quiz__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}
#quiz-page .quiz__prev-wrapper, #quiz-page .quiz__next-wrapper {
  display: flex;
  align-items: center;
  text-transform: none;
  text-decoration: none;
  font-weight: 600;
  margin: 0 6rem;
}
#quiz-page .quiz__show-detail-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -1.6rem;
  width: max-content;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#quiz-page .quiz__prev-wrapper:hover .quiz__prev {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
#quiz-page .quiz__next-wrapper:hover .quiz__next {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
#quiz-page .quiz__show-detail-wrapper:hover .quiz__show-detail {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(2);
  transform: scale(2);
  -webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.2);
}
#quiz-page .quiz__show-detail-wrapper--hidden {
  display: none;
}
#quiz-page .quiz__prev, #quiz-page .quiz__next, #quiz-page .quiz__show-detail {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 1.375rem;
  height: 1.375rem;
  background: white;
  border: none;
  border-radius: 100%;
  margin: 1rem;
}
#quiz-page .quiz__show-detail {
  position: relative;
}
#quiz-page .quiz__show-detail span {
  transform: rotate(90deg);
  position: relative;
  left: 1.1px;
  top: 1px;
}
#quiz-page .quiz__show-detail-title {
  color: #00377C;
}
#quiz-page .quiz__prev span, #quiz-page .quiz__next span {
  position: relative;
  bottom: 1px;
}
#quiz-page input[type=checkbox] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  font: inherit;
  color: currentColor;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.12rem solid currentColor;
  border-radius: 0.2rem;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}
#quiz-page input[type=checkbox]::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 2rem 2rem var(--form-control-color);
}
#quiz-page input[type=checkbox]:checked::before {
  transform: scale(1);
}
#quiz-page input[type=checkbox]::before {
  /* ...existing styles */
  /* Windows High Contrast Mode */
  background-color: CanvasText;
}
@media screen and (max-width: 1000px) {
  #quiz-page .quiz__top {
    display: flex;
    justify-content: space-between;
  }
  #quiz-page .quiz__title {
    text-transform: uppercase;
    padding: 1rem;
    padding-top: 0;
    text-align: right;
  }
  #quiz-page .quiz__title-top h1 {
    font-size: 2rem;
  }
  #quiz-page .quiz__title-bot {
    padding-left: 0;
  }
  #quiz-page .quiz__title-bot h1 {
    font-size: 1.5rem;
  }
  #quiz-page .quiz__logo {
    display: none;
  }
  #quiz-page .quiz__icon img {
    height: 8rem;
  }
  #quiz-page .quiz__question-text {
    font-size: 1.2rem;
  }
  #quiz-page .quiz__prev-wrapper, #quiz-page .quiz__next-wrapper {
    margin: 0;
  }
}
@media screen and (max-width: 540px) {
  #quiz-page .quiz__next-title {
    max-width: 2.8rem;
    text-align: right;
  }
}

@media screen and (max-width: 440px) {
  #quiz-page .quiz__prev, #quiz-page .quiz__next {
    margin: 0.4rem;
  }
}
@media screen and (max-width: 380px) {
  #quiz-page .quiz__show-detail-wrapper {
    bottom: -1.2rem;
  }

  #quiz-page .quiz__show-detail-title {
    max-width: 6rem;
    text-align: center;
  }

  #quiz-page .quiz__show-detail {
    margin: 0.4rem;
  }
}

/*# sourceMappingURL=quiz.css.map */
