@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  background-color: white;
}
body p {
  margin: 0;
}

.quiz-page {
  display: flex;
  overflow-y: auto;
  min-height: 150dvh;
  flex-direction: column;
}
.quiz-page header {
  width: 100%;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page header p {
  font-size: 14px;
  font-weight: 600;
}
.quiz-page .link_back {
  display: flex;
  justify-content: flex-start;
  padding: 12px 0 12px 20px;
}
.quiz-page main {
  width: 100%;
  flex: 1 1 auto;
  background-color: #ad2366;
}
.quiz-page main .container_global {
  width: 100%;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page main .wrapper_quiz {
  width: 100%;
  height: auto;
  border-radius: 32px;
  border: 4px solid rgba(167, 167, 167, 0.27);
  background: #fff;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
  padding: 20px;
  align-items: center;
  width: 80%;
  display: none;
}
.quiz-page main .quiz_cont_tittle {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.quiz-page main .quiz_title {
  color: #060b21;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  width: 100%;
}
.quiz-page main .qiuz_line {
  width: 100%;
  height: 1px;
  background-color: rgba(6, 11, 33, 0.08);
  margin: 8px 0 5px 0;
}
.quiz-page main .quiz_container_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz-page main .quiz_container_text p {
  width: 100%;
  margin: 12px 0;
  font-size: 14px;
}
.quiz-page main .quiz_btn.active {
  background-color: #2644d9;
}
.quiz-page main .quiz_btn.active {
  background-color: #2644d9;
}
.quiz-page main .quiz_btn {
  width: 95%;
  height: 48px;
  border-radius: 32px;
  background: #1f37ad;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page main .quiz_btn:hover {
  background: #2644d9;
}
.quiz-page main .bg_position {
  display: none;
  position: absolute;
  z-index: 1;
}
.quiz-page main .wrapper_quiz_one {
  width: 78%;
  height: auto;
  border-radius: 32px;
  border: 4px solid rgba(167, 167, 167, 0.27);
  background: #fff;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
  padding: 20px 16px;
  display: none;
  position: relative;
}
.quiz-page main .wrapper_quiz_one::before,
.quiz-page main .wrapper_quiz_one::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  top: -12px;
  left: 6px;
  width: 95%;
  height: 104%;
  z-index: -1;
}
.quiz-page main .wrapper_quiz_one::before {
  transform: rotate(8deg);
  background: rgba(255, 255, 255, 0.2);
}
.quiz-page main .wrapper_quiz_one::after {
  transform: rotate(4deg);
  background: rgba(255, 255, 255, 0.4);
}
.quiz-page main .wrapper_quiz,
.quiz-page main .wrapper_quiz_one {
  display: none;
}
.quiz-page main .wrapper_quiz.active,
.quiz-page main .wrapper_quiz_one.active {
  display: block;
}
.quiz-page main .wrapper_quiz_one::before,
.quiz-page main .quiz_question_container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz-page main .wrapper_quiz_one::before p,
.quiz-page main .quiz_question_container p {
  font-size: 14px;
  font-weight: 400;
}
.quiz-page main .quiz_container_list p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin: 6px 0 6px 0px;
}
.quiz-page main .quiz_container_list .parag {
  display: flex;
}
.quiz-page main .parag > p:first-child {
  margin: 6px 8px 0 0;
}
.quiz-page main .question_choose {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quiz-page main .question_choose .custom_checkbox {
  display: flex;
  align-items: center;
  width: 88%;
  border-radius: 32px;
  border: 1px solid rgba(6, 11, 33, 0.08);
  height: -moz-fit-content;
  height: fit-content;
  padding: 12px 16px;
  cursor: pointer;
  margin: 6px 0 6px 0;
}
.quiz-page main .question_choose .custom_checkbox:hover {
  border: 1px solid #1f37ad;
}
.quiz-page main .question_choose .custom_checkbox.selected {
  background: #e6eaff;
  border: 1px solid #1f37ad;
}
.quiz-page main .question_title p {
  margin: 12px 0 12px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.quiz-page main .active {
  display: flex;
}
.quiz-page main .add_text span {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  top: -2px;
}
.quiz-page main .add_text p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 16px 0;
}
.quiz-page main .quiz_question_container span {
  color: rgba(6, 11, 33, 0.5);
}
.quiz-page main .quiz_question_container span .quiz_question_container span {
  color: rgba(6, 11, 33, 0.5);
}
.quiz-page footer {
  width: 100%;
  padding: 16px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page footer .footer_container {
  width: 90%;
  display: flex;
  flex-direction: column;
}
.quiz-page footer .footer_container .links {
  display: flex;
  gap: 24px;
}
.quiz-page footer .footer_container .links a {
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.quiz-page footer .footer_container .links a:hover {
  text-decoration: underline;
}
.quiz-page footer .footer_container .disclaimer_container {
  margin-top: 12px;
}
.quiz-page footer .footer_container .disclaimer_container .grey_text {
  color: rgba(6, 11, 33, 0.5);
  font-size: 14px;
  line-height: 20px;
}
.quiz-page footer .footer_container .disclaimer_container .disclaimer_text {
  width: 100%;
  font-size: 14px;
  margin: 8px 0 15px 0;
  line-height: 20px;
}
.quiz-page footer .footer_container .line {
  width: 100%;
  height: 1px;
  background-color: rgba(6, 11, 33, 0.08);
  margin: 16px 0;
}
.quiz-page footer .footer_container .additional_text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page footer .footer_container .additional_text .grey_text {
  color: rgba(6, 11, 33, 0.5);
  font-size: 14px;
  line-height: 20px;
}
.quiz-page .br-desktop {
  display: none;
}
.quiz-page .br-mobile {
  display: inline;
}
.quiz-page .wrapper_cookie {
  z-index: 9999;
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 0 0 15px;
  height: 56px;
  background: #f3f3f3;
  box-shadow: 0px 1px 4px 0px rgba(52, 58, 63, 0.05), 0px 4px 12px 0px rgba(52, 58, 63, 0.12);
}
.quiz-page .wrapper_cookie p {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
}
.quiz-page .wrapper_cookie button {
  width: 156px;
  height: 40px;
  border-radius: 31px;
  color: white;
  background: #111212;
  margin: 0 25px 0 0;
  border: none;
}
@media (min-width: 591px) {
  .quiz-page .mobile-br {
    display: none;
  }
  .quiz-page .link_back {
    display: none;
  }
  .quiz-page main .wrapper_quiz {
    width: 390px;
    padding: 40px;
  }
  .quiz-page main .wrapper_quiz_one {
    width: 400px;
    height: auto;
    border-radius: 32px;
    border: 4px solid rgba(167, 167, 167, 0.27);
    background: #fff;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    padding: 30px 40px;
  }
  .quiz-page main .quiz_title {
    width: 400px;
    font-size: 24px;
    line-height: 32px;
  }
  .quiz-page main .qiuz_line {
    margin: 16px 0 5px 0;
  }
  .quiz-page main .question_title p {
    margin: 12px 0 18px 0;
  }
  .quiz-page main .quiz_container_text p {
    font-size: 16px;
  }
  .quiz-page main .quiz_btn {
    width: 400px;
    height: 56px;
  }
  .quiz-page main .quiz_question_container {
    font-size: 16px;
  }
  .quiz-page main .question_title {
    font-size: 20px;
  }
  .quiz-page main .question_choose .custom_checkbox {
    width: 90%;
    height: 20px;
    padding: 16px;
  }
  .quiz-page main .quiz_container_list p {
    font-size: 16px;
    line-height: 24px;
  }
  .quiz-page main .add_text p {
    font-size: 20px;
    margin: 24px 0;
  }
  .quiz-page main .wrapper_quiz_one::after {
    content: "";
    position: absolute;
    border-radius: 32px;
    top: -6px;
    left: -6px;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .quiz-page main .wrapper_quiz_one::before {
    transform: rotate(12deg);
  }
  .quiz-page main .wrapper_quiz_one::after {
    transform: rotate(6deg);
  }
  .quiz-page footer .footer_container {
    width: 70%;
  }
  .quiz-page footer .footer_container .links {
    gap: 8px;
    flex-direction: row;
  }
  .quiz-page footer .footer_container .links a {
    margin-right: 32px;
  }
  .quiz-page .br-desktop {
    display: inline;
  }
  .quiz-page .br-mobile {
    display: none;
  }
  .quiz-page .wrapper_cookie p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }
}
.quiz-page .btn_back_mob {
  display: flex;
  justify-content: center;
  align-items: center;
}
.quiz-page .btn_back_mob .link_back_mob {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  gap: 12px;
}
.quiz-page .btn_back_mob span {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
}
.quiz-page .main {
  width: 100%;
  background-color: #ad2366;
  display: flex;
  justify-content: center;
}
.quiz-page .main .wrapper_terms {
  margin: 40px 0px;
  padding: 20px 16px;
  width: 80%;
  height: auto;
  border-radius: 32px;
  border: 4px solid rgba(167, 167, 167, 0.27);
  background: #fff;
  flex-direction: column;
  gap: 15px;
  z-index: 2;
}
.quiz-page .main .wrapper_terms p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.quiz-page .main .wrapper_terms .btn_back {
  display: none;
  align-items: center;
}
.quiz-page .main .wrapper_terms .title_container {
  margin: 12px 0 12px 0;
}
.quiz-page .main .wrapper_terms .title_text {
  display: none;
}
.quiz-page .main .wrapper_terms .grey_text {
  color: rgba(6, 11, 33, 0.5);
  font-size: 14px;
  line-height: 20px;
  margin: 8px 0 0 0;
}
.quiz-page .main .wrapper_terms .underTitle_text {
  color: #060b21;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 32px 0 16px 0;
}
.quiz-page .main .wrapper_terms li {
  line-height: 22px;
}
.quiz-page .main .wrapper_terms p a {
  text-decoration: none;
  color: #1f37ad;
  font-weight: 600;
}
.quiz-page .main .wrapper_terms p a:hover {
  text-decoration: underline;
}
@media (min-width: 600px) {
  .quiz-page .main .wrapper_terms {
    width: 70%;
    height: auto;
    border-radius: 32px;
    border: 4px solid rgba(167, 167, 167, 0.27);
    background: #fff;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
    padding: 40px;
  }
  .quiz-page .main .wrapper_terms .btn_back {
    display: flex;
  }
  .quiz-page .main .wrapper_terms .btn_back .link_back_dekstop {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    gap: 4px;
  }
  .quiz-page .main .wrapper_terms .btn_back .link_back_dekstop .title_text_link {
    font-size: 16px;
    font-weight: 600;
    color: #1f37ad;
  }
  .quiz-page .main .wrapper_terms .btn_back .link_back_dekstop:hover svg path {
    fill: #2644d9;
  }
  .quiz-page .main .wrapper_terms .btn_back .link_back_dekstop:hover .title_text_link {
    color: #2644d9;
  }
  .quiz-page .main .wrapper_terms .title_text {
    font-size: 24px;
    font-weight: 600;
    line-height: 32px;
    display: block;
  }
  .quiz-page .main .wrapper_terms p {
    font-size: 16px;
  }
  .quiz-page .main .wrapper_terms .underTitle_text {
    font-size: 20px;
  }
  .quiz-page .main .wrapper_terms li {
    line-height: 24px;
  }
}