/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.quiz_start {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: #f1f1f1;
  background-image:
    repeating-linear-gradient(-45deg,
      #cccbff, #cccbff 7.5px,
      transparent 0, transparent 15px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease;
}

.quiz_start_title {
  width: 100%;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
  margin: 0 0 1rem 0;
}

.quiz_start_text {
  width: 100%;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
  margin: 0.6rem 0 0 0;
}

.quiz_start_buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 4rem 0 1rem 0;
}

.quiz_start_buttons_button {
  width: 20rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid #5a57ff;
  border-radius: 2.5rem;
  margin: 0 1rem 0 1rem;
  cursor: pointer;
}

.quiz_start_buttons_button_title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  color: #5a57ff;
}

/* .quiz_start_buttons_button_text {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.2;
  color: #333333;
} */

.quiz_start_back {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0 1rem 0;
}

.quiz_start_back_button {
  width: 16rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #333333;
  border-radius: 1.5rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #333333;
  margin: 0 1rem 0 1rem;
  cursor: pointer;
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.time_area {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.quiz_area {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 0;
}

.quiz_question {
  position: relative;
  width: 100%;
  height: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
}

.blockframe {
  position: relative;
  border: 5px solid #a3a3a3;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.block {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  border: 2px solid #c08646;
  border-radius: 5px;
  /* background-color: #5e5e5e; */
  background:
    linear-gradient(90deg,
      rgba(208, 147, 82, 0.6),
      rgba(192, 134, 70, 0.6) 60%,
      rgba(208, 147, 82, 0.6)),
    repeating-radial-gradient(ellipse at 60% 500%,
      #c08646,
      #c08646 0.2%,
      #d09352 0.6%,
      #d09352 1%);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.20s ease;
  /* opacity: 0.7; */
}

.quiz_question_title {
  position: relative;
  width: 70%;
  height: 15%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
}

.quiz_question_text_boxes {
  position: relative;
  width: 100%;
  height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 2px solid #ff0000; */
}

.quiz_answer {
  position: relative;
  width: 100%;
  height: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz_answer_word {
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  line-height: 1;
  color: #333333;
  margin: 0 5px 0 5px;
  background-color: #cacaca;
  border: 2px solid #333333;
  border-radius: 3px;
  transition: all 0.4s ease;
  cursor: pointer;
}

.quiz_answer_result {
  position: absolute;
  width: 100%;
  height: 97%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff99;
  font-size: 4rem;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
  z-index: 999;
}

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */
.quiz_end {
  position: absolute;
  width: 100%;
  height: 100%;
  /* min-height: 450px; */
  top: 0px;
  left: 0px;
  background-color: #f1f1f1;
  background-image:
    repeating-linear-gradient(-45deg,
      #cccbff, #cccbff 7.5px,
      transparent 0, transparent 15px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  transition: all 0.3s ease;
}

.quiz_end_title {
  width: 100%;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
  margin: 0 0 1rem 0;
}

.quiz_end_text_main {
  width: 100%;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
}

.quiz_end_text_sub {
  width: 100%;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
}

.quiz_end_result_title {
  width: 29rem;
  height: 2rem;
  background-color: #ffffff55;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #333333;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
}

.quiz_end_result_boxes {
  width: 29rem;
  height: 15rem;
  overflow-y: auto;
  font-weight: bold;
  text-shadow:
    white 2px 0px 2px, white -2px 0px 2px,
    white 0px -2px 2px, white 0px 2px 2px,
    white 2px 2px 2px, white -2px 2px 2px,
    white 2px -2px 2px, white -2px -2px 2px;
}

.quiz_end_result_boxes_boxes {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 0 1rem 0;
}

.quiz_end_result_boxes_boxes_cnt {
  width: 5rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1rem;
  line-height: 1.5;
}

.quiz_end_result_boxes_boxes_okng {
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 2rem;
  line-height: 1.5;
}

.quiz_end_result_boxes_boxes_firsthalf {
  width: 21rem;
  height: 60%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  /* font-size: 1rem;
  line-height: 1.5; */
  /* font-weight: bold; */
  margin: 0 1rem 0 1rem;
}

.quiz_end_result_boxes_boxes_firsthalf_text_q {
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
  color: #333333;
  /* border-bottom: 1px solid #ff0000; */
  margin: 5px 2px 5px 2px;
}

.quiz_end_result_boxes_boxes_firsthalf_text_a {
  width: 1.2rem;
  height: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  line-height: 1;
  color: #ff0000;
  font-weight: bold;
  /* border-bottom: 1px solid #ff0000; */
  margin: 5px 2px 5px 2px;
}

.quiz_end_result_boxes_boxes_latterhalf {
  width: 21rem;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 1rem;
  line-height: 1.5;
  font-weight: bold; */
  margin: 0 1rem 0 1rem;
}

.quiz_end_result_boxes_boxes_latterhalf_text {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  transition: all 0.4s ease;
  margin: 0 2px 5px 2px;
}

.quiz_end_buttons {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz_end_buttons_back,
.quiz_end_buttons_retry {
  width: 10rem;
  height: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #333333;
  border-radius: 1.3rem;
  background-color: #ffffff;
  font-weight: bold;
  font-size: 0.8rem;
  line-height: 1;
  color: #333333;
  cursor: pointer;
  /* transition: all 0.3s ease; */
  margin: 0 1rem 0 1rem;
}

/* .quiz_end_buttons_back:hover,
.quiz_end_buttons_retry:hover {
  background-color: #ffffff;
  font-weight: bold;
} */

/* ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### ##### */