@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.fix_quiz {
  position: fixed;
  bottom: 50px;
  right: 32px;
  z-index: 9;
}
.fix_quiz .container {
  display: flex;
  justify-content: flex-end;
}
.fix_quiz .card {
  cursor: pointer;
  border: 1.08px solid #d7d9e0;
  border-radius: 22px;
  background: #fff;
  padding: 26px 20px 19px;
  width: 300px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (max-width: 640px) {
  .fix_quiz .card {
    padding: 12px;
    border-radius: 12px;
    width: 180px;
  }
}
.fix_quiz .card:hover {
  box-shadow: 0 8px 24px rgba(0, 56, 140, 0.12);
}
.fix_quiz .card .all_text .big_text {
  font-family: "TTB", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #00388c;
  margin-bottom: 12px;
}
@media only screen and (max-width: 640px) {
  .fix_quiz .card .all_text .big_text {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.fix_quiz .card .all_text .small_text {
  font-family: "MM", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: #1c1c1d;
}
@media only screen and (max-width: 640px) {
  .fix_quiz .card .all_text .small_text {
    font-size: 12px;
  }
}
.fix_quiz .card .picture {
  position: absolute;
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}
@media only screen and (max-width: 640px) {
  .fix_quiz .card .picture {
    top: -30px;
    width: 80px;
  }
  .fix_quiz .card .picture img {
    width: 100%;
  }
}

.fix-quiz-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  visibility: hidden;
  transition: all 0.4s ease;
}
.fix-quiz-overlay.active {
  visibility: visible;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
}

.fix-quiz-window {
  background-image: url(/img/quiz/fon_quiz.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
  max-width: 1020px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 60px 50px;
  position: relative;
  box-shadow: 0 25px 50px -8px rgba(0, 0, 0, 0.25);
  transform: scale(0.9) translateY(20px);
  opacity: 0;
}
@media only screen and (max-width: 640px) {
  .fix-quiz-window {
    padding: 50px 16px;
    max-height: none;
    height: 100vh;
    border-radius: 0;
    box-shadow: none;
  }
}
.fix-quiz-overlay.active .fix-quiz-window {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.fix-quiz-window .popup-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  color: #016bff;
  padding: 4px 8px;
  z-index: 2;
  transition: 0.3s;
}
.fix-quiz-window .popup-close:hover {
  color: #00388c;
}

.start-screen {
  display: flex;
  align-items: center;
  width: 100%;
}
.start-screen .start-information .h2 {
  margin-bottom: 30px;
}
.start-screen .start-information .info {
  margin-bottom: 5px;
}
.start-screen .start-information .info .item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.start-screen .start-information .info .item .text {
  font-size: 20px;
  line-height: 120%;
  color: #261f1f;
}
@media only screen and (max-width: 860px) {
  .start-screen .start-information .info .item .text {
    font-size: 14px;
  }
}
.start-screen .start-information .action {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  border: 1px solid #016bff;
  border-radius: 10px;
  padding: 18px;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
}
.start-screen .start-information .action .text {
  font-family: "MSB";
  font-size: 16px;
  line-height: 120%;
  color: #261f1f;
}
@media only screen and (max-width: 860px) {
  .start-screen .start-information .action .text {
    font-size: 14px;
  }
}
.start-screen .start-image {
  position: absolute;
  bottom: 0;
  right: 70px;
}
@media only screen and (max-width: 1100px) {
  .start-screen .start-image {
    max-width: 450px;
  }
}
@media only screen and (max-width: 860px) {
  .start-screen .start-image {
    max-width: 300px;
  }
}

.quiz_all {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 640px) {
  .quiz_all {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.progress_and_image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.progress-wrap .progress-circle {
  position: relative;
  width: 211px;
  height: 210px;
  background-image: url(/img/quiz/circle_quiz.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 640px) {
  .progress-wrap .progress-circle {
    width: 130px;
    height: 129px;
  }
}
.progress-wrap .progress-circle svg {
  transform: rotate(-90deg);
  width: 190px;
  height: 190px;
  border-radius: 100%;
}
@media only screen and (max-width: 640px) {
  .progress-wrap .progress-circle svg {
    height: 120px;
  }
}
.progress-wrap .progress-circle .bg-circle {
  fill: none;
  stroke-width: 25;
  stroke: rgba(255, 255, 255, 0.3);
}
.progress-wrap .progress-circle .progress-ring {
  fill: none;
  stroke-width: 16;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.6s ease;
}
.progress-wrap .progress-circle .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "TTB";
  font-size: 30px;
  line-height: 110%;
  letter-spacing: -0.03em;
  text-align: center;
  text-transform: uppercase;
  color: #261f1f;
  border-radius: 100%;
  background: #faf9f9;
  box-shadow: -3px 3px 34px 0 rgba(237, 237, 236, 0.4), -3px 3px 34px 0 rgba(121, 121, 121, 0.4);
  width: 123px;
  height: 123px;
}
@media only screen and (max-width: 640px) {
  .progress-wrap .progress-circle .progress-text {
    font-size: 20px;
    width: 80px;
    height: 80px;
  }
}

.quiz-image {
  max-width: 400px;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 860px) {
  .quiz-image {
    max-width: 270px;
  }
}
@media only screen and (max-width: 640px) {
  .quiz-image {
    max-width: 190px;
  }
}
.quiz-image img {
  width: 100%;
  height: auto;
  display: block;
}

.fix-quiz-window.hide-progress .progress_and_image {
  display: none;
}

.quiz-content {
  width: 640px;
  height: 570px;
}
@media only screen and (max-width: 860px) {
  .quiz-content {
    width: 100%;
    height: 440px;
  }
}
.quiz-content .quiz-step {
  display: none;
  animation: fadeStep 0.3s ease;
}
.quiz-content .quiz-step.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@keyframes fadeStep {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.quiz-content .question-sub {
  font-size: 16px;
  line-height: 120%;
  color: #261f1f;
  margin-bottom: 20px;
}
@media only screen and (max-width: 860px) {
  .quiz-content .question-sub {
    margin-bottom: 10px;
  }
}

.question-title {
  font-family: "TTB";
  font-size: 30px;
  line-height: 110%;
  text-transform: uppercase;
  color: #261f1f;
  margin-bottom: 20px;
}
.question-title span {
  color: #016bff;
}
@media only screen and (max-width: 1100px) {
  .question-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 860px) {
  .question-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 550px;
}
@media only screen and (max-width: 860px) {
  .options {
    width: 100%;
  }
}
.options .option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  font-size: 20px;
  line-height: 120%;
  color: #261f1f;
}
@media only screen and (max-width: 860px) {
  .options .option {
    font-size: 14px;
    padding: 12px 15px;
  }
}
.options .option:hover {
  border-color: #016bff;
}
.options .option.selected {
  border-color: #016bff;
}
.options .option input[type=radio],
.options .option input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  accent-color: #016bff;
  flex-shrink: 0;
  cursor: pointer;
}
.options .option label {
  cursor: pointer;
  flex: 1;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
  align-items: center;
}
.actions .action-spacer {
  flex: 1;
}

.btn {
  border: none;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 13px 20px;
  font-family: "TTDB";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}
.btn-back {
  background: #f5f6f8;
  color: #261f1f;
  border: 1px solid #d4d4d4;
}
.btn-back:hover:not(:disabled) {
  background: #e2e8f0;
}
.btn-back:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.btn-next {
  background: #016bff;
  color: #fff;
}
.btn-next:hover:not(:disabled) {
  background: #00388c;
}
.btn-next:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.btn-discount {
  background: #016bff;
  color: #fff;
}
.btn-discount:hover:not(:disabled) {
  background: #00388c;
}
.btn-discount:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.quiz-form-wrapper {
  width: 100%;
}
.quiz-form-wrapper .form_action {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
}
.quiz-form-wrapper .form_action .quiz-form-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action .quiz-form-block {
    gap: 10px;
  }
}
.quiz-form-wrapper .form_action .quiz-line {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  width: 100%;
}
@media only screen and (max-width: 1400px) {
  .quiz-form-wrapper .form_action .quiz-line {
    flex-direction: column;
  }
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action .quiz-line {
    gap: 10px;
  }
}
.quiz-form-wrapper .form_action .quiz-line.flex {
  display: flex;
}
.quiz-form-wrapper .form_action .quiz-line.right {
  justify-content: flex-end;
}
.quiz-form-wrapper .form_action .red_text {
  font-size: 14px;
  color: #ff4800;
  margin-bottom: 10px;
}
.quiz-form-wrapper .form_action .quiz-form-element {
  position: relative;
  min-height: 50px;
  min-width: 266px;
  width: 100%;
  background: #f5f6f8;
  border-radius: 10px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 16px;
}
.quiz-form-wrapper .form_action .quiz-form-element .quiz-head {
  position: absolute;
  left: 16px;
  top: 25px;
  transform: translateY(-50%);
  transition: 0.3s;
  font-size: 14px;
  pointer-events: none;
  padding: 6px;
  color: #6b7280;
  background: #f5f6f8;
}
.quiz-form-wrapper .form_action .quiz-form-element .quiz-head.important::after {
  content: "*";
  color: #ff4800;
  margin-left: 4px;
}
.quiz-form-wrapper .form_action .quiz-form-element input {
  width: 100%;
  border: 0;
  background: #f5f6f8;
  font-size: 14px;
  outline: none;
}
.quiz-form-wrapper .form_action .quiz-form-element input:focus {
  outline: none;
}
.quiz-form-wrapper .form_action .quiz-form-element:focus-within .quiz-head {
  top: -8px;
  font-size: 12px;
  background: transparent;
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action .quiz-form-element:focus-within .quiz-head {
    opacity: 0;
  }
}
.quiz-form-wrapper .form_action .quiz-form-element input:not(:-moz-placeholder) + .quiz-head {
  top: -8px;
  font-size: 12px;
  background: transparent;
}
.quiz-form-wrapper .form_action .quiz-form-element input:not(:placeholder-shown) + .quiz-head {
  top: -8px;
  font-size: 12px;
  background: transparent;
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action .quiz-form-element input:not(:-moz-placeholder) + .quiz-head {
    opacity: 0;
  }
  .quiz-form-wrapper .form_action .quiz-form-element input:not(:placeholder-shown) + .quiz-head {
    opacity: 0;
  }
}
.quiz-form-wrapper .form_action .quiz-button {
  padding: 14px 30px;
  background: #016bff;
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-family: "TTB";
  cursor: pointer;
  transition: all 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 160px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action .quiz-button {
    margin-bottom: 0;
  }
}
.quiz-form-wrapper .form_action .quiz-button:hover:not(:disabled) {
  background: #00388c;
}
.quiz-form-wrapper .form_action .quiz-button:disabled {
  background: #969696;
  cursor: not-allowed;
  opacity: 0.5;
}
.quiz-form-wrapper .form_action .quiz-license {
  width: 100%;
  font-size: 12px;
  line-height: 140%;
  text-align: left;
  color: #000;
}
.quiz-form-wrapper .form_action .quiz-license a {
  color: #016bff;
  text-decoration: underline;
}
.quiz-form-wrapper .form_action .quiz-license a:hover {
  color: #00388c;
}
.quiz-form-wrapper .form_action .checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-top: 10px;
}
.quiz-form-wrapper .form_action .checkbox-wrapper:hover {
  opacity: 0.8;
}
.quiz-form-wrapper .form_action .license-checkbox {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #00388c;
}
.quiz-form-wrapper .form_action .action_picture {
  max-width: 300px;
}
.quiz-form-wrapper .form_action .action_picture .mobile_vers {
  display: none;
}
@media only screen and (max-width: 640px) {
  .quiz-form-wrapper .form_action .action_picture .comp_vers {
    display: none;
  }
  .quiz-form-wrapper .form_action .action_picture .mobile_vers {
    display: flex;
    width: 180px;
    margin: 0 auto;
  }
}
.quiz-form-wrapper .form_action .inscription {
  margin: 10px auto;
  font-size: 14px;
  color: #797979;
  display: flex;
  justify-content: center;
}
.quiz-form-wrapper .form_container .answer_user_icon {
  stroke: #016bff;
  width: 100px;
}
.quiz-form-wrapper .form_container .answer_user_title {
  color: #333;
}
.quiz-form-wrapper .form_container .answer_user_text {
  color: #666;
}/*# sourceMappingURL=fix_quiz.css.map */