*,
::before,
::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html {
  margin: 0;
  padding: 0;
}
body {
  width: 100vw;
  height: 105vh;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: rgb(233, 133, 37);
  background: linear-gradient(
    315deg,
    rgba(233, 133, 37, 1) 0%,
    rgba(215, 81, 63, 1) 27%,
    rgba(197, 30, 88, 1) 53%,
    rgba(98, 46, 135, 1) 72%,
    rgba(41, 64, 158, 1) 100%
  );
  background-size: 200%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: "Dosis", sans-serif;
  padding-top: 5px;
}
#quiz_container {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 850px;
  max-width: 100%;
}
#question_content.disabled {
  display: none;
}
.header_quiz p,
#question_content p.question_heder {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  font-weight: 400;
}
.header_quiz h2,
#question_content h3 {
  font-family: "Lobster", cursive;
  font-size: 40px;
  line-height: 60px;
  margin-bottom: 6px;
  font-weight: 500;
  margin-top: 0;
}

#question_content .data-question {
  margin-bottom: 28px;
  font-family: "Lobster", cursive;
  font-size: 40px;
  line-height: 60px;
  font-weight: 500;
  margin-top: 0;
}
.header_quiz p.bottom_header {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  font-weight: 300;
  margin-bottom: 10px;
}
.header_quiz p.bottom_header strong {
  font-family: "Lobster", cursive;
  letter-spacing: 0.9px;
}
.holo_item {
  position: absolute;
  transition: filter 0.1s ease-in;
}
#question_content p.question_heder {
  margin-top: 28px;
}
#question_content h3 {
  margin-bottom: 28px;
}
.answers,
.buttons {
  display: flex;
  flex-direction: column;
  width: 520px;
  max-width: calc(100% - 30px);
  margin: 0 auto;
}
.blured {
  filter: blur(10px);
}
.answers {
  position: relative;
}
.answers::after {
  position: absolute;
  content: "Wybierz jedną z odpowiedzi!";
  transition: transform 0.2s ease-in, opacity 0.2s ease-in;
  z-index: 1;
  right: 0;
  top: calc(50% + -12px);
  transform: translate(calc(100% + 80px), -50%);
  font-size: 20px;
  background-color: #ff0000e0;
  color: #fff;
  padding: 15px 45px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 3px 3px 10px #ff00002e;
  opacity: 0;
  visibility: hidden;
}
.answers.error::after {
  opacity: 1;
  visibility: visible;
  transform: translate(calc(100% + 20px), -50%);
}
.singe_answer {
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 3px 3px 10px #83188766;
  padding: 24px 18px 24px 56px;
  margin-bottom: 25px;
  transition: transform 0.3s ease-in, background-color 0.1s ease-in;
  cursor: pointer;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
}
.singe_answer:hover {
  transform: translateY(-20px);
}
.singe_answer label {
  color: #00287a;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  margin: 0;
  text-align: left;
}
.singe_answer label::after,
.singe_answer label::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  left: 18px;
  top: 24px;
  border-radius: 50%;
}
.singe_answer input:hover + label::after,
.singe_answer input:checked + label::after {
  border-color: #00287a;
}
.singe_answer label::before {
  width: 12px;
  height: 12px;
  top: 28px;
  left: 22px;
}
.singe_answer input:checked + label::before {
  background-color: #00287a;
}
.singe_answer label::after {
  border: 1px solid #c5c6e5;
}
.singe_answer input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.buttons {
  flex-direction: row;
  justify-content: space-between;
}
.buttons button,
.button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff66;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.32px;
  transition: border-color 0.3s 0.2s ease-in, background-color 0.3s ease-in,
    color 0.3s ease-in, opacity 0.3s ease-in;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  font-family: "Dosis", sans-serif;
  width: 115px;
  height: 39px;
  border-radius: 12px;
  opacity: 1;
  visibility: visible;
}
.buttons button.disable {
  opacity: 0;
  visibility: hidden;
}
.buttons button:hover {
  border-color: #541974;
  background-color: #541974;
  color: #fff;
}
#next,
#restart,
.button {
  border-color: #ff9409;
  background-color: #ff9409;
}
#next:hover,
#restart:hover,
.button:hover {
  color: #fff;
  background-color: rgb(255 148 9 / 60%);
}
#restart.opened {
  opacity: 0;
}
.singe_answer.error {
  background-color: red;
}
#result_content {
  width: 1400px;
  max-width: 100vw;
  opacity: 0;
  visibility: hidden;
  display: none;
}
#result_content.show {
  opacity: 1;
  visibility: visible;
  display: block;
}
.sets_container {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.sets_container h3 {
  font-family: "Lobster", cursive;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 30px;
  font-weight: 300;
}

.sets_container .heading-3 {
  font-family: "Lobster", cursive;
  font-size: 30px;
  line-height: 48px;
  margin-bottom: 30px;
  font-weight: 300;
  font-weight: bold;
  color: #fff;
}

.sets_content,
.dont_forget_content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 30px;
}
.sets_container img:hover {
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.8));
}
.sets_container img {
  transition: filter 0.2s ease-in-out;
  margin-right: -10px;
  cursor: pointer;
}

.your_set {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}
.dont_forget {
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}
.wave_bg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
#result_content .buttons {
  justify-content: center;
  margin-top: 50px;
}
#restart {
  width: 239px;
}
#result_content .top_info p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: 0.36px;
  background-color: #00a0dc;
  position: relative;
  margin: 20px auto;
  max-width: 374px;
  border-radius: 6px;
  padding: 7px 0;
}
#result_content.show .top_info p {
  opacity: 1;
}
#result_content .top_info {
  opacity: 0;
  transition: opacity 0.3s 1.5s ease-in;
}
#result_content.show .top_info {
  opacity: 1;
}
#result_content .top_info p.opened {
  opacity: 0;
}
#result_content .top_info p::after {
  position: absolute;
  content: "";
  border: 10px solid #00a0dc;
  bottom: 0;
  right: 10px;
  transform: translateY(100%) rotate(0deg);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.modal_shadow {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  background-color: rgba(0, 0, 0, 0.39);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal_shadow.opened,
#result_modal.opened {
  opacity: 1;
  visibility: visible;
}
#result_modal.opened {
  transform: translate(-50%, -50%);
  display: flex;
}
#result_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  display: none;
  align-items: center;
  justify-content: flex-start;
  z-index: 10001;
  text-align: left;
  width: 900px;
  max-width: calc(100% - 200px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}
#result_modal p,
#result_modal h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  margin: 0;
}
#result_modal #modal_small_info {
  opacity: 0.6;
  margin-top: 5px;
}
#result_modal h5,
#result_modal h4,
#modal_header {
  font-weight: 300;
  font-family: "Lobster", cursive;
  font-size: 26px;
  line-height: 35px;
}
.button {
  margin: 0 auto;
  text-decoration: none;
}
#result_modal .middle_row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
#result_modal .img_middle {
  margin-right: 30px;
  padding-top: 10px;
}
#result_modal .middle {
  margin-top: 40px;
  margin-bottom: 20px;
}
#result_modal .middle_row {
  margin-bottom: 20px;
}
#modal_header {
  margin-bottom: 0;
  margin-bottom: 30px;
  margin-top: 0;
}
#result_modal h4 {
  border-bottom: 1px solid #fff;
  margin: 30px 0 5px;
  padding-bottom: 15px;
}
#disable_modal {
  display: none;
}

.heading-2 {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #fff !important;
  margin-bottom: 30px !important;
}

@media (max-height: 850px) {
  body {
    height: auto;
    overflow-y: auto;
    min-height: 100vh;
    padding-bottom: 100px;
    position: relative;
  }
  .answers::after {
    right: 50%;
    top: 0;
    min-width: 350px;
    transform: translateX(50%);
  }
  .answers.error::after {
    transform: translate(50%, calc(-100% - 80px));
  }
  .sets_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #result_content {
    transform: unset !important;
    max-width: 100%;
  }
  .your_set {
    margin-bottom: 50px;
  }
  .your_set,
  .dont_forget {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .wave_bg {
    position: absolute;
  }
}
@media (max-width: 1370px) {
  body {
    height: auto;
    overflow-y: auto;
    min-height: 100vh;
    padding-bottom: 100px;
    position: relative;
  }
  .answers::after {
    right: 50%;
    top: 0;
    min-width: 350px;
    transform: translateX(50%);
  }
  .answers.error::after {
    transform: translate(50%, calc(-100% - 80px));
  }
  .sets_container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #result_content {
    transform: unset !important;
    max-width: 100%;
  }
  .your_set {
    margin-bottom: 50px;
  }
  .your_set,
  .dont_forget {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .wave_bg {
    position: absolute;
  }
}
@media (max-width: 950px) {
  .heading-2 {
    margin-bottom: 11px !important;
  }
  .header_quiz h2,
  #question_content h3 {
    font-size: 33px;
    line-height: 50px;
  }
  .singe_answer label,
  .answers::after {
    font-size: 19px;
    line-height: 20px;
  }
  .answers.error::after {
    transform: translate(50%, calc(-100% - 74px));
  }
  #result_modal h5,
  #result_modal h4,
  #modal_header {
    font-size: 20px;
    line-height: 24px;
  }
  #modal_header {
    margin-bottom: 11px;
  }
  #result_modal p,
  #result_modal h5 {
    font-size: 13px;
    line-height: 19px;
  }
  #result_modal .middle {
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  #result_modal {
    flex-direction: column;
  }
  .content_modal {
    order: 1;
  }
  .image_modal {
    order: 2;
  }
  #result_modal.opened {
    transform: translate(-50%, 0%);
  }
  #result_modal {
    top: 50px;
    position: absolute;
  }
  #quiz_container {
    padding: 0 50px;
  }
  #disable_modal {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    width: 50px;
    height: 40px;
    border: none;
    background: transparent;
  }
  #disable_modal span {
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform-origin: center;
  }
  #disable_modal span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #disable_modal span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@media (max-width: 700px) {
  .singe_answer {
    padding: 15px 18px 15px 50px;
  }
  .singe_answer label::after,
  .singe_answer label::before {
    top: 15px;
  }
  .singe_answer label::before {
    top: 19px;
  }
  .header_quiz p.bottom_header,
  .header_quiz h2,
  #question_content h3,
  #question_content p.question_heder,
  .sets_container h3,
  .header_quiz p {
    text-shadow: 2px 2px 5px #000;
  }

  .sets_container .heading-3 {
    text-shadow: 2px 2px 5px #000;
  }
  .sets_container img {
    max-width: 20%;
  }
  .sets_container .dont_forget_content img {
    max-width: 33.333%;
  }
}
@media (max-width: 500px) {
  .header_quiz h2,
  #question_content h3 {
    font-size: 29px;
    line-height: 45px;
  }
  .header_quiz p.bottom_header {
    font-size: 16px;
    line-height: 22px;
  }
  #quiz_container {
    padding: 0 12px;
  }
  .singe_answer label,
  .answers::after {
    font-size: 18px;
  }
  .buttons button,
  .button {
    font-size: 14px;
    width: 90px;
    height: 34px;
  }
  .answers.error::after {
    transform: translate(50%, calc(-100% - 69px));
  }
  #result_content .top_info p {
    font-size: 14px;
    line-height: 25px;
    max-width: 264px;
  }
  #result_modal {
    max-width: calc(100% - 40px);
  }
}

.quiz-logo {
  display: inline-flex;
  width: 276px;
  /* position: absolute;
	left: 0;
	top: 0; */
  padding: 20px;
  margin-bottom: 15px;
}
