@charset "UTF-8";

* {box-sizing: border-box; scroll-behavior: smooth;}

body {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  background-image: url(../img/main_bg.png);
  background-position: center top 90px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #14131d;
  font-size: 17px;
  line-height: 130%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.wrapper {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
 }
  @media (max-width: 500px) {
    .wrapper {
      background-position: 40px 0; } }

h1,
h2,
h3,
h4,
p,
ul {
  font-weight: normal;
  margin: 0;
  padding: 0;
  list-style-type: none;
  line-height: 130%; }

picture { display: flex; }
  picture img {
    max-width: 100%; }

.container {
  width: 100%;
  max-width: 1258px;
  margin: 0 auto;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden; }

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="radio"].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden; }

.btn {
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  color: #ffffff;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .btn--blue,
  .btn--blue:hover ,
  .btn--blue:active {
    background: rgb(97,217,212);
    background: -moz-linear-gradient(left, rgba(97,217,212,1) 0%, rgba(39,163,250,1) 100%);
    background: -webkit-linear-gradient(left, rgba(97,217,212,1) 0%,rgba(39,163,250,1) 100%);
    background: linear-gradient(to right, rgba(97,217,212,1) 0%,rgba(39,163,250,1) 100%);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
            box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
    font-weight: 600; }
    .btn--blue:disabled {
      opacity: 0.6;
      cursor: not-allowed; }
  .btn--outline {
    border: 2px solid #ffffff;
    background-color: transparent;
    font-family: 'Montserrat', Arial, sans-serif; }
    .btn--outline:hover {
      border-color: #28a4fa; }
    .btn--outline:active {
      background: #28a4fa;
      border-color: #28a4fa;
      color: #ffffff; }
    .btn--outline:disabled {
      background: #2c2c39;
      border-color: #2c2c39;
      color: #6a6a83;
      cursor: not-allowed; }
    @media (max-width: 998px) {
      .btn--outline {
        font-size: 18px; } }

.timer {
  position: relative;
  display: flex;
  padding: 20px 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #0f0f13;
  border: 2px solid #28a4fa;
  -webkit-box-shadow: 0px 0px 30px rgba(30, 27, 212, 0.5);
          box-shadow: 0px 0px 30px rgba(30, 27, 212, 0.5);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .timer__header:is(div) h4 {
    margin: 0;
    font-size: 17px;
    line-height: 130%;
    font-weight: normal; }
  .timer__body {
    display: flex; }
    .timer__body span {
      display: flex;
      width: 80px;
      height: 60px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      background: #28a4fa;
      font-size: 13px;
      border-radius: 10px; }
    .timer__body span + span {
      margin-left: 10px; }
  .timer__num {
    font-weight: 500;
    font-size: 30px; }
  @media (max-width: 998px) {
    .timer {
      padding: 15px; }
      .timer__header:is(div) h4 {
        font-size: 13px; }
      .timer__body {
        display: flex; }
        .timer__body span {
          width: 63px;
          height: 50px;
          font-size: 11px; }
        .timer__body span + span {
          margin-left: 5px; }
      .timer__num {
        font-size: 24px; } }

.form { margin-top: 20px; }
  .form__mail {
    display: none;
    padding: 16px 21px 29px 16px;
    background-color: #ffffff;
    width: 100%;
    -webkit-box-shadow: 0px 4px 8px rgba(165, 165, 165, 0.21);
            box-shadow: 0px 4px 8px rgba(165, 165, 165, 0.21);
    border-radius: 4px;
    margin-bottom: 20px; }
  .form__error {
    display: none;
    color: #000000;
    font-size: 14px;
    text-align: center;
    margin-top: 10px; }
  .form__title {
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    color: #000000;
    margin-bottom: 8px; }
  .form__input-container {
    position: relative; }
  .form__input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: none;
    font-size: 16px;
    border-radius: 4px;
    background: #0f0f13;
    border: 2px solid #323248;
    border-radius: 10px;
    font-size: 17px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: #ffffff; }
    .form__input::-webkit-input-placeholder {
      color: #ffffff; }
    .form__input::-moz-placeholder {
      color: #ffffff; }
    .form__input:-ms-input-placeholder {
      color: #ffffff; }
    .form__input::-ms-input-placeholder {
      color: #ffffff; }
    .form__input::placeholder {
      color: #ffffff; }
  .form .button {
    max-width: none; }

  /*--------------*/
  .form-line { margin: 0 0 10px 0; padding: 0 10px; font-family: 'Montserrat', Arial, sans-serif; font-size:18px; font-weight: 600; line-height: 1.2; color :#ffffff; text-align: left;}

  .form-sub-line { margin: 5px 0 10px 0; padding: 0 10px; font-family: 'Montserrat', Arial, sans-serif; font-size:12px; font-weight: 400; line-height: 1.2; color :#ffffff; text-align: left;}
  .form-field  {margin: 0 0 12px 0;}

  .form-check {position: relative; margin: 0 0 12px 0; padding: 0 10px; line-height: 1;} 
  .form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-color: #5fd8d5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }  
  .form-check-input:focus { box-shadow: none; border-color: #5fd8d5;}
  .form-check-input:checked { background-color: #000000; border-color: #5fd8d5; }
  .form-check-input:checked[type=checkbox] { background: url('../img/checkbox.svg'); }
  .form-check label {margin: 0 0 6px 0; font-size: 12px; line-height: 1.2; color :#ffffff;}
  .form-check label a {font-size: 12px; color :#2095f9;}
  .form-check label a:hover {text-decoration: none;}
/*----------*/

.basket__content {
  /* max-width: 287px; */
  width: 100%; }

.basket__button {
  width: 100%;
  max-width: 100%;
  height: 60px;
  margin-top: 10px;
  margin-bottom: 16px; }

@-webkit-keyframes animatedButton {
  from {
    background-position: -3000px; }
  to {
    background-position: 0; } }

@keyframes animatedButton {
  from {
    background-position: -3000px; }
  to {
    background-position: 0; } }

.basket__button-loader:disabled {
  background-size: 3000%;
  background-image: -o-repeating-linear-gradient(315deg, #4979f7, #4979f7 10px, #0b47e4 10px, #0b47e4 20px);
  background-image: repeating-linear-gradient(135deg, #4979f7, #4979f7 10px, #0b47e4 10px, #0b47e4 20px);
  -webkit-animation: animatedButton 60s infinite linear;
          animation: animatedButton 60s infinite linear; }

.basket__check, .basket__check2, .basket__check3 {
  position: relative;
  display: none;
  width: 100%;
  margin-top: 10px;
  padding-left: 28px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 10;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.basket__check-input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.basket__check-box {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

.basket__check-input + label::after,
.basket__check-input + label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 2px;
  margin-right: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #9f9eae;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  cursor: pointer; }

.basket__check-input + label::before {
  border: 0;
  z-index: -2; }

.basket__check-input:checked + label::before {
  background-image: url("../img/Checkbox.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%; }

.basket__check-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 11px;
  line-height: 130%;
  color: #9f9eae; }
  .basket__check-text a {
    color: #4979f6; }
  .basket__check-text--data {
    text-decoration: underline; }
  .basket__check-text--data-top {
    text-decoration: underline; }

.form--v2 .basket__button:active {
  background: -o-linear-gradient(358.41deg, #ea01c4 0%, #8e0078 100%);
  background: linear-gradient(91.59deg, #ea01c4 0%, #8e0078 100%); }

.form--v2 .basket__button-loader:disabled {
  background-size: 3000%;
  -webkit-animation: animatedButton 60s infinite linear;
          animation: animatedButton 60s infinite linear; }

.footer {
  padding: 20px;
  color: #595959;
  background-color: transparent; }
  .footer__content {
    display: none; }
  .footer__row {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    @media (max-width: 842px) {
      .footer__row {
        gap: 10px 42px; } }
    @media (max-width: 530px) {
      .footer__row {
        gap: 10px; } }
    @media (max-width: 480px) {
      .footer__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 0;
        text-align: center; } }
  .footer__inner {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 15px; }
  .footer__item {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content; }
  .footer__info {
    margin-bottom: 8px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 113%; }
    .footer__info--link {
      color: #595959;
      text-decoration: none; }
      .footer__info--link:last-child {
        margin-bottom: 0; }
    .footer__info--legal {
      margin-bottom: 0;
      line-height: 170%; }
      @media (max-width: 600px) {
        .footer__info--legal {
          text-align: center; } }
      .footer__info--legal--bold {
        font-weight: 700; }
    .footer__info--title {
      margin: 0 0 8px;
      font-weight: bold;
      text-align: center;
      text-transform: uppercase; }
  @media (max-width: 600px) {
    .footer__logo {
      margin: 0 auto;
      max-width: 220px;} }
  .footer__pay {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    /*max-width: 200px;*/
    margin: 0 auto;
    gap: 10px; }
    .footer__pay--cards {
      -webkit-box-align: baseline;
      -webkit-align-items: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      /*max-width: 111px;*/
      margin: 0 auto 16px; }

@media (max-width: 600px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px; }
  .footer__item {
    max-width: 270px; }
    .footer__item:nth-child(1) {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3; }
    .footer__item:nth-child(2) {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 12px; }
    .footer__item:nth-child(3) {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; }
  .footer__info { text-align: left; }
    .footer__info--title { margin-bottom: 10px; text-align: center; font-weight: 400; }
  .footer .footer__img { max-height: 23px; } 
}

.footer { color: #9f9eae; background: #03233c; padding: 20px 0; }
  .footer__info { color: #ffffff; }

.header { width: 100%; background-color: #03233c; box-sizing: border-box; }
  .header__container {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
    padding-bottom: 20px; 
    background-color: #03233c;
  }

  .header__logo { max-width: 180px; }
  .header__logo img { max-width: 180px; }

  /*--- Header Button ---*/
  .header-btn-container {position: relative; margin: 0; padding: 0; text-align: center;}

  .login-btn,
  .login-btn:link,
  .login-btn:visited,
  .login-btn:hover,
  .login-btn:active {
    display: inline-block;
    margin: 0;
    padding: 8px 36px;
    width: 100%;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    color:var(--font-white);
    text-align: center;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 10px 5px rgba(0,191,255,0.28);
    background: rgb(97,217,212);
    background: -moz-linear-gradient(left, rgba(97,217,212,1) 0%, rgba(39,163,250,1) 100%);
    background: -webkit-linear-gradient(left, rgba(97,217,212,1) 0%,rgba(39,163,250,1) 100%);
    background: linear-gradient(to right, rgba(97,217,212,1) 0%,rgba(39,163,250,1) 100%);
  }
  .login-btn:hover {
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
  }
  /*------------*/
  
  .header__button { width: 200px; height: 50px; }

  @media (max-width: 998px) {
    .header__container { padding-top: 20px; }
    .header__logo { max-width: 140px; }
    .header__logo img { max-width: 140px; }
    .login-btn,
    .login-btn:link,
    .login-btn:visited,
    .login-btn:hover,
    .login-btn:active {padding: 8px 20px;}
    .header__button { width: 120px; height: 40px; } }

.quiz {padding: 20px 0;}

.quiz-item {
  position: relative;
  display: none; }
  .quiz-item.active {
    display: block; }
  .quiz-item__title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 32px;
    color: #28a4fa;
    text-align: center; }
    .quiz-item__title--main {
      font-size: 40px;
      line-height: 145%;
      text-transform: uppercase;
      text-align: left; }
  .quiz-item__el { cursor: pointer; border-radius: 16px; padding: 5px 5px; box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);}
    .quiz-item__el input[type="checkbox"],
    .quiz-item__el input[type="radio"] {
      display: none; }
    .quiz-item__el input[type="number"]::-webkit-inner-spin-button {
      -webkit-appearance: none; }
    .quiz-item__el input {
      height: 60px;
      width: 100%;
      padding: 0 30px;
      background: #0f0f13;
      border: none;
      border: 2px solid #28a4fa;
      border-radius: 10px;
      font-size: 17px;
      color: #ffffff;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .quiz-item__el input:focus,
      .quiz-item__el input:focus-visible {
        outline: none;
        border: 2px solid #ffffff;}
      .quiz-item__el input::-webkit-input-placeholder {
        color: #9f9eae; }
      .quiz-item__el input::-moz-placeholder {
        color: #9f9eae; }
      .quiz-item__el input:-ms-input-placeholder {
        color: #9f9eae; }
      .quiz-item__el input::-ms-input-placeholder {
        color: #9f9eae; }
      .quiz-item__el input::placeholder {
        color: #9f9eae; }
    .quiz-item__el label {
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
      background: #ffffff;
      border: 2px solid #ffffff;
      cursor: pointer;
      -webkit-box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
      box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
      -webkit-transition: 0.3s;
      -o-transition: 0.3s;
      transition: 0.3s;
      border-radius: 12px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box; }
      .quiz-item__el label p {
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: bold;
        font-size: 20px;
        color: #000; }
      .quiz-item__el label p + span {
        margin-top: 4px; color: #03233c;}
      .quiz-item__el label span {
        font-weight: 400;
        font-size: 15px;
        line-height: 130%;
        font-family: 'Montserrat', Arial, sans-serif; }
    .quiz-item__el input:checked ~ label {
      background: #ffffff;
      border: 2px solid #28a4fa;
      color: #0f0f13; }
  .quiz-item__el + .quiz-item__el {
    margin-top: 20px; }
  .quiz-item .row {
    display: flex; }
    .quiz-item .row .quiz-item__el + .quiz-item__el {
      margin-top: 0;
      margin-left: 30px; }
  .quiz-item__container {
    max-width: 480px;
    margin: 0 auto;
    text-align: center; }
    .quiz-item__container h2 + p {
      margin-top: 20px; }
  .quiz-item__nav {
    display: flex;
    margin-top: 50px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .quiz-item__nav span {
      font-weight: 500;
      font-size: 17px;
      line-height: 130%;
      text-align: center;
      color: #747d95; }
    .quiz-item__nav button {
      width: 131px;
      height: 60px; }
  @media (max-width: 998px) {
    .quiz-item__title {
      font-size: 20px; }
      .quiz-item__title--main {
        font-size: 20px; }
    .quiz-item__el label p {
      font-size: 17px; }
    .quiz-item--8 .quiz-item__el label p { padding: 0 12px;}
    .quiz-item__el input:checked ~ label {
      background: #ffffff;
      border: 2px solid #28a4fa;
      color: #0f0f13; }
    .quiz-item__el + .quiz-item__el {
      margin-top: 10px; }
    .quiz-item__container h2 + p {
      margin-top: 10px; }
    .quiz-item__container p {
      font-size: 15px; } }
  @media (max-width: 400px) {
    .quiz-item__nav {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
      margin-top: 20px; }
      .quiz-item__nav span {
        width: 100%;
        margin-bottom: 20px;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
            -ms-flex-order: -1;
                order: -1; } }
  .quiz-item--1 {
    padding: 140px 0 168px; }
    .quiz-item--1 .container {
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
    .quiz-item--1 .quiz-item__text-content {
      max-width: 620px;
      width: 55%; }
    .quiz-item--1 h1 + p {
      margin-top: 30px; }
    .quiz-item--1 p {
      font-size: 24px; }
    .quiz-item--1 p + button {
      margin-top: 80px; }
    .quiz-item--1 button {
      width: 282px;
      height: 60px; }
    .quiz-item--1 h3 {
      margin-bottom: 50px;
      font-family: 'Montserrat', Arial, sans-serif;
      font-weight: bold;
      font-size: 32px; }
    .quiz-item--1 .quiz-item__col {
      max-width: 385px;
      width: 35%; }
    .quiz-item--1 .quiz-item__el {
      width: 100%; }
      .quiz-item--1 .quiz-item__el label {
        min-height: 120px;
        padding-right: 5px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
              align-items: center; }
      .quiz-item--1 .quiz-item__el p {
        padding: 0 0 0 25px; }
      .quiz-item--1 .quiz-item__el picture {
        -webkit-align-self: flex-end;
            -ms-flex-item-align: end;
                align-self: flex-end; }
    @media (max-width: 998px) {
      .quiz-item--1 {
        padding: 0 0 60px; }
        .quiz-item--1 .container {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; }
        .quiz-item--1 .quiz-item__text-content {
          max-width: 100%;
          width: 100%; }
        .quiz-item--1 h1 + p {
          margin-top: 10px; }
        .quiz-item--1 p {
          font-size: 17px; }
        .quiz-item--1 p + button {
          margin-top: 30px; }
        .quiz-item--1 button {
          max-width: 282px;
          width: 100%; }
        .quiz-item--1 h3 {
          margin-bottom: 30px;
          font-size: 20px; }
        .quiz-item--1 .quiz-item__col {
          max-width: 100%;
          width: 100%;
          margin-top: 60px; }
        .quiz-item--1 .quiz-item__el {
          width: 100%; }
          .quiz-item--1 .quiz-item__el label {
            min-height: 120px;
            padding-right: 5px;
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
                -ms-flex-pack: justify;
                    justify-content: space-between; }
          .quiz-item--1 .quiz-item__el p {
            max-width: 50%;
            padding: 0 0 0 25px;
            font-size: 17px;
            -webkit-align-self: center;
                -ms-flex-item-align: center;
                    align-self: center;
            -webkit-box-sizing: border-box;
                    box-sizing: border-box; } }
  .quiz-item--8, .quiz-item--2 {
    padding: 0 0 115px; }
    .quiz-item--8 .row, .quiz-item--2 .row {
      max-width: 900px;
      margin: 50px auto 0; }
    .quiz-item--8 .quiz-item__el, .quiz-item--2 .quiz-item__el {
      display: flex;
      width: 33%; }
      .quiz-item--8 .quiz-item__el label, .quiz-item--2 .quiz-item__el label {
        width: 100%;
        padding: 30px 30px 35px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
        .quiz-item--8 .quiz-item__el label picture, .quiz-item--2 .quiz-item__el label picture {
          margin-bottom: 20px; }
    @media (max-width: 998px) {
      .quiz-item--8, .quiz-item--2 {
        padding-bottom: 60px; }
        .quiz-item--8 .row, .quiz-item--2 .row {
          margin: 20px auto 0; } }
    @media (max-width: 700px) {
      .quiz-item--8 .row, .quiz-item--2 .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .quiz-item--8 .row .quiz-item__el + .quiz-item__el, .quiz-item--2 .row .quiz-item__el + .quiz-item__el {
          margin-top: 10px;
          margin-left: 0px; }
      .quiz-item--8 .quiz-item__el, .quiz-item--2 .quiz-item__el {
        width: 100%;
        max-width: 100%; }
        .quiz-item--8 .quiz-item__el label, .quiz-item--2 .quiz-item__el label {
          width: 100%;
          padding: 10px;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
          -webkit-flex-direction: row;
              -ms-flex-direction: row;
                  flex-direction: row;
          -webkit-box-align: center;
          -webkit-align-items: center;
              -ms-flex-align: center;
                  align-items: center;
          text-align: left; }
          .quiz-item--8 .quiz-item__el label picture, .quiz-item--2 .quiz-item__el label picture {
            width: 100px;
            height: 110px; }
          .quiz-item--8 .quiz-item__el label .text, .quiz-item--2 .quiz-item__el label .text {
            max-width: calc(100% - 115px);
            /*margin-left: auto;*/ } }
  .quiz-item--3 {
    padding: 10px 0 140px; }
    .quiz-item--3 h2 {
      margin-bottom: 50px; }
    .quiz-item--3 .quiz-item__el label {
      display: flex;
      min-height: 86px;
      padding: 0 30px;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    @media (max-width: 998px) {
      .quiz-item--3 {
        padding: 0 0 50px; }
        .quiz-item--3 h2 {
          margin-bottom: 20px; }
        .quiz-item--3 .quiz-item__el label {
          min-height: 62px;
          padding: 0 20px; } }
  .quiz-item--7, .quiz-item--6, .quiz-item--5, .quiz-item--4 {
    padding: 10px 0 140px; }
    .quiz-item--7 h2, .quiz-item--6 h2, .quiz-item--5 h2, .quiz-item--4 h2 {
      margin-bottom: 50px; }
    .quiz-item--7 .quiz-item__el, .quiz-item--6 .quiz-item__el, .quiz-item--5 .quiz-item__el, .quiz-item--4 .quiz-item__el {
      position: relative; }
      .quiz-item--7 .quiz-item__el::before, .quiz-item--6 .quiz-item__el::before, .quiz-item--5 .quiz-item__el::before, .quiz-item--4 .quiz-item__el::before {
        position: absolute;
        right: 30px;
        top: 50%;
        -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
                transform: translate(0, -50%);
        font-family: 'Montserrat', Arial, sans-serif;
        font-size: 17px;
        line-height: 130%;
        text-align: right;
        color: #ffffff;
        content: "см";
        z-index: 1; }
      .quiz-item--7 .quiz-item__el label, .quiz-item--6 .quiz-item__el label, .quiz-item--5 .quiz-item__el label, .quiz-item--4 .quiz-item__el label {
        display: flex;
        min-height: 86px;
        padding: 0 30px;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; }
    @media (max-width: 998px) {
      .quiz-item--7, .quiz-item--6, .quiz-item--5, .quiz-item--4 {
        padding: 0 0 50px; } }
  .quiz-item--7 .quiz-item__el, .quiz-item--6 .quiz-item__el, .quiz-item--5 .quiz-item__el {
    position: relative; }
    .quiz-item--7 .quiz-item__el::before, .quiz-item--6 .quiz-item__el::before, .quiz-item--5 .quiz-item__el::before {
      content: "кг"; }
  .quiz-item--7 .quiz-item__el {
    position: relative; }
    .quiz-item--7 .quiz-item__el::before {
      content: "лет"; }
  .quiz-item--8 {
    padding: 10px 0 125px; }
    @media (max-width: 998px) {
      .quiz-item--8 {
        padding: 0 0 60px; } }
  .quiz-item--9 {
    padding: 40px 0 0; }
    .quiz-item--9 h2 {
      max-width: 700px;
      margin: 0 auto 50px;
      text-align: center; }
    .quiz-item--9 .quiz-item__block {
      display: grid;
      grid-gap: 30px;
      grid-template-columns: 1fr 1fr 1fr 1fr; }
    .quiz-item--9 .quiz-item__content {
      padding: 40px;
      background-color: #ffffff;
      border: 2px solid #28a4fa;
      box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
      border-radius: 10px;
      box-sizing: border-box; }
      .quiz-item--9 .quiz-item__content.motivation {
        padding-bottom: 175px; }
      .quiz-item--9 .quiz-item__content h3 {
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: bold;
        font-size: 20px;
        color: #282828; }
    @media (max-width: 1250px) {
      .quiz-item--9 {
        padding: 0; }
        .quiz-item--9 h2 {
          margin: 0 auto 40px; }
        .quiz-item--9 .quiz-item__block {
          grid-gap: 10px; }
        .quiz-item--9 .quiz-item__content {
          padding: 20px 20px 30px; }
          .quiz-item--9 .quiz-item__content.motivation {
            padding-bottom: 135px; } }
    @media (max-width: 998px) {
      .quiz-item--9 .quiz-item__block {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .quiz-item--9 .quiz-item__block .motivation h3 {
          font-size: 17px;
          padding-right: 75px; }
        .quiz-item--9 .quiz-item__block .motivation p {
          padding-right: 50px; }
        .quiz-item--9 .quiz-item__block .practice {
          padding-bottom: 185px;
          background-position: center bottom;
          background-size: 150px auto; }
          .quiz-item--9 .quiz-item__block .practice h3 {
            font-size: 17px;
            padding-right: 40px; } }
    @media (max-width: 550px) {
      .quiz-item--9 .quiz-item__block .motivation p {
        max-width: calc(100% - 150px);
        padding-right: 0; } }
    @media (max-width: 360px) {
      .quiz-item--9 .quiz-item__block .motivation p {
        max-width: calc(100% - 70px); } }

.last-screen .wrapper {
  background-size: auto 910px; }
  @media (max-width: 998px) {
    .last-screen .wrapper {
      background-size: auto 580px;
      background-position: 50px 0; } }

.order {
  margin-top: 100px;
  padding: 80px 0;
  background: #14131d; }
  .order h2 {
    margin-bottom: 50px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 40px;
    line-height: 145%;
    text-align: center;
    text-transform: uppercase; }
  .order h3 {
    margin-bottom: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 130%; }
  .order__body {
    display: flex;
    padding: 50px 90px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background: url(../img/order-bg.png), #0f0f13;
    background-repeat: no-repeat;
    background-position: left center;
    border: 2px solid #28a4fa;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
            box-shadow: 0px 0px 20px rgba(0, 191, 255, 0.63);
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .order__col {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .order__col + .order__col {
      margin-left: 20px; }
    .order__col--text {
      max-width: 500px; }
    .order__col--form {
      max-width: 450px; }
  .order__prices {
    max-width: 390px; }
  @media (max-width: 1150px) {
    .order__body {
      padding: 50px 30px; } }
  @media (max-width: 998px) {
    .order {
      padding: 60px 0;
      margin-top: 60px; }
      .order h2 {
        margin-bottom: 40px;
        font-size: 20px; }
      .order h3 {
        font-size: 20px; }
      .order__col--text {
        width: 40%; } }
  @media (max-width: 750px) {
    .order__body {
      padding: 18px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
    .order__col + .order__col {
      margin-left: 0;
      margin-top: 20px; }
    .order__col--text {
      max-width: 100%;
      width: 100%; }
    .order__col--form {
      max-width: 100%; }
    .order__prices {
      max-width: 100%; } }

.prices {
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .prices__text {
    max-width: 225px; }
  .prices__item {
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    font-size: 74px;
    line-height: 86px;
    -webkit-font-feature-settings: "pnum" on, "lnum" on;
            font-feature-settings: "pnum" on, "lnum" on;
    color: #2095f9; }
    .prices__item .js-display-currency-symbol {
      padding-left: 12px; }
  @media (max-width: 998px) {
    .prices__item {
      font-size: 40px;
      line-height: 46px; }
      .prices__item .js-display-currency-symbol {
        padding-left: 5px; } }
  @media (max-width: 400px) {
    .prices {
      -webkit-flex-wrap: wrap;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap; }
      .prices__item {
        width: 100%;
        margin-top: 10px; } }

.result {
  margin-top: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 130%;
  color: #28a4fa; }
  @media (max-width: 998px) {
    .result {
      margin-top: 10px; } }

.imt {
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-area: 1/1/2/3; }
  .imt__text-content {
    max-width: 160px; }
  .imt__range {
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .imt__range input {
      width: 100%;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-color: transparent; }
      .imt__range input::-webkit-slider-runnable-track {
        height: 4px;
        background-color: #fff;
        background: linear-gradient(90.01deg, #ec4444 0%, #28a4fa 52.08%, #ec4444 100%);
        border-radius: 100px; }
      .imt__range input::-webkit-slider-thumb {
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -10px;
        width: 24px;
        height: 24px;
        background: #28a4fa;
        border-radius: 100%;
        border: 2px solid #ffffff;
        -webkit-box-sizing: border-box;
                box-sizing: border-box; }
      .imt__range input::-moz-range-track {
        height: 4px;
        background-color: transparent;
        background: linear-gradient(90.01deg, #ec4444 0%, #28a4fa 52.08%, #ec4444 100%);
        border-radius: 100px; }
      .imt__range input::-moz-range-thumb {
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -10px;
        width: 24px;
        height: 24px;
        background: #28a4fa;
        border-radius: 100%;
        border: 2px solid #ffffff;
        box-sizing: border-box; }
    .imt__range span {
      margin-top: 15px;
      font-size: 15px;
      line-height: 130%;
      text-align: center;
      color: #9f9eae; }
  .imt__result {
    display: flex;
    margin-bottom: 5px; }
  @media (max-width: 1250px) {
    .imt__text-content {
      max-width: 200px; }
    .imt__range {
      max-width: 250px; } }
  @media (max-width: 550px) {
    .imt {
      position: relative;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column; }
      .imt__text-content {
        max-width: 100%;
        width: 100%;
        margin-bottom: 15px; }
        .imt__text-content span {
          position: absolute;
          right: 15px;
          top: 15px;
          max-width: 100px;
          color: #9f9eae;
          text-align: right; }
      .imt__range {
        max-width: 100%;
        width: 100%; } }

.ccal {
  position: relative;
  grid-area: 1/4/2/3; }
  .ccal::before {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background-image: url(../img/water.svg);
    content: ""; }

.water {
  grid-area: 1/4/2/4;
  position: relative; }
  .water::before {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background-image: url(../img/ccal.svg);
    content: ""; }
  @media (max-width: 1250px) {
    .water h3 {
      padding-right: 40px; } }

.motivation:is(div) {
  grid-area: 2/1/6/3;
  background-image: url(../img/mot.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%; }
  .motivation:is(div) h3 {
    max-width: 300px; }
  .motivation:is(div) h3 + p {
    margin-top: 10px; }
  .motivation:is(div) p {
    max-width: 200px;
    padding-top: 10px;
    border-top: 1px solid #323248;
    letter-spacing: 0.02em;
    color: #9f9eae; }
  @media (max-width: 550px) {
    .motivation:is(div) {
      background-position: calc(100% + 60px) center; }
      .motivation:is(div) h3 {
        max-width: calc(100% - 110px);
        font-size: 17px; } }
  @media (max-width: 360px) {
    .motivation:is(div) {
      background-position: calc(100% + 100px) center; }
      .motivation:is(div) h3 {
        max-width: calc(100% - 75px); } }

.practice {
  position: relative;
  grid-area: 2/3/6/5;
  background-image: url(../img/practice.png);
  background-repeat: no-repeat;
  background-position: 90% bottom; }
  .practice::before {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    background-image: url(../img/excertise.svg);
    content: ""; }
  .practice p {
    color: #9f9eae; }
  .practice p + h3 {
    margin-top: 20px; }
  .practice h3 {
    max-width: 250px; }

.quiz-item--2 .quiz-item__next-button, .quiz-item--3 .quiz-item__next-button, .quiz-item--8 .quiz-item__next-button {
  visibility: hidden; }

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;
  display: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #14131d; }
  .overlay .loader {
    font-size: 10px;
    margin: 50px auto;
    text-indent: -9999em;
    width: 11em;
    height: 11em;
    border-radius: 50%;
    background: #2c39f2;
    background: -o-linear-gradient(left, #2c39f2 10%, rgba(255, 0, 31, 0) 42%);
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, #2c39f2), color-stop(42%, rgba(255, 0, 31, 0)));
    background: linear-gradient(to right, #2c39f2 10%, rgba(255, 0, 31, 0) 42%);
    position: relative;
    -webkit-animation: load3 1.4s infinite linear;
    animation: load3 1.4s infinite linear;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0); }
  .overlay .loader:before {
    width: 50%;
    height: 50%;
    background: #2c39f2;
    border-radius: 100% 0 0 0;
    position: absolute;
    top: 0;
    left: 0;
    content: ''; }
  .overlay .loader:after {
    background: #14131d;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    content: '';
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
  .overlay .loader__text {
    width: 100%;
    max-width: 280px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 10px;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 0 0 50px;
    color: white; }
    @media (min-width: 600px) {
      .overlay .loader__text {
        max-width: 480px;
        font-size: 18px;
        line-height: 24px; } }


