﻿@charset "UTF-8";

/* Указываем box sizing */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Убираем внешние отступы */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/

ul,
ol {
  padding: 0;
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Элементы a, убираем стили по умолчанию с псевдоклассами*/

a {
  text-decoration: none;
}

/* Упрощаем работу с изображениями */

img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/

article>*+* {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */

input,
button,
textarea,
select {
  font: inherit;
}

/* Кнопки убираем стиль по умолчанию*/

button {
  border: none;
  background-color: transparent;
}

body {
  position: relative;
  font-family: "PT Sans";
  font-size: 16px;
  font-weight: 400;
  color: #545454;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

body.fixed {
  position: fixed;
}

a {
  color: inherit;
}

.container {
  max-width: 320px;
  padding: 0 10px;
  margin: 0 auto;
}

.mg-24-32 {
  margin-bottom: 24px;
}

.mg-12-16 {
  margin-bottom: 12px;
}

.header {
  margin-bottom: 24px;
}

.header__top {
  background-color: #26393F;
}

.header__top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__top-cm-1 {
  font-weight: 400;
  font-size: 9px;
  line-height: 130%;
  color: #FFFFFF;
  margin-right: 15px;
}

.header__top-cm-2 {
  font-weight: 400;
  font-size: 9px;
  line-height: 130%;
  color: #FFFFFF;
  margin-right: 15px;
}

.header__top-cm-2 span span {
  color: #29ABE2;
}

.header__top-cm-3 {
  background-color: #666666;
  padding: 10px;
  margin-right: 15px;
}

.header__top-cm-3 img {
  width: 20px;
  height: 20px;
}

.header__top-cm-3 span {
  display: none;
}

.header__top-cm-4 {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
}

.header__top-cm-4 span {
  color: #29ABE2;
}

.header__middle-item-mob {
  width: calc(100% + 40px);
  max-width: none;
  margin-left: -20px;
  margin-right: -20px;
}

.header__middle-item-desctop {
  display: none;
}

.header__bottom {
  display: none;
}

.header__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px;
  background-color: #3E656B;
}

.header__bottom-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  font-size: 9px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: 0 15px;
}

.header__bottom-list-item:not(:last-child) {
  border-right: 1px solid #fff;
}

.container__main {
  max-width: 760px;
}

@media (min-width: 1200px) {
  .container__main {
    grid-column: 1/1;
    grid-row: 1/3;
  }
}

.main__panel-hrefs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 140px;
  margin-bottom: 16px;
}

.main__href {
  font-size: 14px;
  line-height: 1.2;
  color: #29ABE2;
}

.main__panel-hrefs span {
  font-size: 14px;
  line-height: 1.2;
  color: #666666;
}

.main__title {
  max-width: 700px;
  margin-bottom: 16px;
}

.main__panel-auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 255px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.main__panel-auth .main__href {
  position: relative;
  padding-left: 16px;
}

.main__panel-auth .main__href::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/icons.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.main__panel-auth .main__href:not(:last-child) {
  margin-right: 12px;
}

.main__panel-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 220px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 24px;
}

.main__panel-social img {
  width: 30px;
  height: 30px;
}

.img-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.img-item__img {
  margin-bottom: 12px;
}

.img-item__text {
  font-size: 12px;
  line-height: 130%;
  font-style: italic;
}

.title {
  font-family: "Times New Roman";
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  color: #545454;
}

.title_main {
  font-size: 32px;
}

.title_second {
  font-size: 28px;
  line-height: 100%;
  color: #545454;
}

.title__blue-light {
  color: #29ABE2;
}

.title__upper {
  text-transform: uppercase;
}

.text {
  font-family: "PT Sans";
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #545454;
}

.text_border {
  padding: 24px;
  border: 1px solid #545454;
}

.text_border img {
  display: none;
}

.text__bold {
  font-weight: 700;
}

.text__italic {
  font-style: italic;
}

.text__blue-light {
  color: #29ABE2;
}

.text__upper {
  text-transform: uppercase;
}

.main__list {
  padding-bottom: 16px;
}

.list {
  border: 1px solid rgba(84, 84, 84, 0.2);
  border-bottom: none;
}

.list_yello .list__title {
  color: #504DC7;
  background: #FFB500;
}

.list__title {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  text-transform: uppercase;
  padding: 16px 0;
  margin-bottom: 16px;
}

.list-item {
  padding: 0 24px;
  font-size: 14px;
  line-height: 130%;
  color: #545454;
}

.list-item:not(:last-child) {
  margin-bottom: 12px;
}

.list-item span {
  font-weight: 700;
}

.list_blue .list__title {
  color: #FFB500;
  background: #504DC7;
}

.main__lists-footer.text {
  padding: 24px;
  font-size: 16px;
  border: 1px solid rgba(84, 84, 84, 0.2);
  border-top: none;
}

.review .main__img {
  margin-bottom: 24px;
}

.review .img-item {
  width: 100%;
  margin-bottom: 0;
}

.review__auth {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #545454;
}

.main__form {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 40px;
}

.no-webp .form {
  background-image: url(../images/form-bg-mob.jpg);
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 650px;
  padding: 32px 20px 32px 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.form img {
  width: 100px;
  height: 90px;
  margin-bottom: 12px;
}

.form__title {
  font-family: "Times New Roman";
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  text-align: center;
  color: #545454;
  margin-bottom: 16px;
}

.form__descr-text {
  text-align: center;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 16px;
}

.form__descr-text span {
  color: #29ABE2;
}

.form__note-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding: 16px;
  text-align: center;
  border: 1px solid #29ABE2;
  color: #545454;
  margin-bottom: 12px;
}

.form__prices {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 315px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 16px;
}

.form__old-price {
  font-size: 20px;
  line-height: 130%;
  text-decoration-line: line-through;
  color: #545454;
}

.form__new-price {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #29ABE2;
}

.form label {
  width: 100%;
  max-width: 360px;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #545454;
  margin-bottom: 8px;
}

.from__select,
.form__input {
  width: 100%;
  max-width: 360px;
  padding: 16px;
  background-color: #fff;
  border: 1px solid #E9D7DC;
  border-radius: 5px;
}

.form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: rgba(84, 84, 84, 0.5);
}

.form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: rgba(84, 84, 84, 0.5);
}

.form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: rgba(84, 84, 84, 0.5);
}

.form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: rgba(84, 84, 84, 0.5);
}

.form__input::placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: rgba(84, 84, 84, 0.5);
}

.form__btn {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: #F5F5F5;
  padding: 20px 45px;
  background: #29ABE2;
  border: 1px solid #E9D7DC;
  border-radius: 5px;
  margin-top: 16px;
  margin-bottom: 24px;
}

.form__note-btn {
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  color: #999999;
  margin-bottom: 8px;
}

.form__counter {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #999999;
}

.form__counter-value {
  font-weight: 700;
  font-size: 18px;
  color: #29ABE2;
}

.comments__title {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #545454;
  margin-bottom: 32px;
}

.comments__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
  grid-template-columns: 80px 1fr;
  -ms-grid-rows: 80px auto auto;
  grid-template-rows: 80px auto auto;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  row-gap: 16px;
}

.comments__item img:nth-of-type(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  grid-row: 1/1;
}

.comments__item-img-hero {
  border-radius: 50px;
  width: 75px;
  height: 75px;
}

.comments__item-name {
  max-width: 140px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  grid-row: 1/1;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #545454;
}

.comments__item-text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 2;
  grid-row: 2/2;
  font-size: 16px;
  line-height: 120%;
  color: #545454;
}

.comments__item img:nth-of-type(2) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 3;
  grid-row: 3/3;
}

.comments__btn {
  display: none;
}

.footer {
  background-color: #E5F4F4;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 0;
}

.footer__logo-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 230px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}

.footer__logo {
  width: 100%;
  margin-bottom: 24px;
}

.footer__social {
  width: 48px;
  height: 48px;
}

.footer__logo-social a:not(:last-child) {
  margin-right: 16px;
}

.footer__req {
  max-width: 280px;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #545454;
}

.bar {
  display: none;
}

.bar__list {
  margin-bottom: 10px;
}

.bar__list-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #042D48;
  background: #E6E6E6;
}

.bar__list-item:not(:last-child) {
  margin-bottom: 2px;
}

.bar__list-item a {
  display: block;
  padding: 15px 15px 15px 70px;
}

.bar__list-item_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bar__list-item_icon a {
  padding-left: 20px;
}

.bar__list-item_icon img {
  width: 50px;
  height: 50px;
}

.bar__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #F2F2F2;
  padding: 14px 20px 20px 20px;
  margin-bottom: 50px;
}

.bar__hero-title {
  font-size: 20px;
  line-height: 26px;
  text-transform: uppercase;
  color: #666666;
  margin-bottom: 20px;
}

.bar__hero-name {
  font-size: 17px;
  line-height: 22px;
  color: #29ABE2;
}

.bar__hero img {
  margin-bottom: 20px;
}

.bar__item-img {
  max-width: 320px;
  margin: 0 auto;
  margin-bottom: 35px;
}

.bar__product {
  max-width: 320px;
  margin-left: auto;
  /* position: sticky; */
  /* top: 0; */
  /* right: 0; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 35px 22px;
  background-color: #29ABE2;
}

.bar__product-title {
  font-family: "Times New Roman";
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  color: #F5F5F5;
  margin-bottom: 24px;
}

.bar__product-img {
  max-width: 200px;
  margin-bottom: 24px;
}

.bar__product-btn {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-transform: uppercase;
  color: #29ABE2;
  padding: 20px 26px;
  background: #F5F5F5;
  border: 1px solid #E9D7DC;
  border-radius: 5px;
}

@media (min-width: 360px) {
  .container {
    padding: 0 20px;
    max-width: 808px;
  }
}

@media (min-width: 425px) {
  .header__middle-item-mob {
    display: none;
  }

  .header__middle-item-desctop {
    display: block;
    width: calc(100% + 40px);
    max-width: none;
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 1200px;
  }

  .mg-24-32 {
    margin-bottom: 32px;
  }

  .mg-12-16 {
    margin-bottom: 16px;
  }

  .header {
    margin-bottom: 32px;
  }

  .header__top-cm-1 {
    font-size: 10px;
    margin-right: auto;
  }

  .header__top-cm-2 {
    font-size: 12px;
    margin-right: 56px;
  }

  .header__top-cm-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 52px;
    margin-right: 20px;
  }

  .header__top-cm-3 img {
    margin-right: 32px;
  }

  .header__top-cm-3 span {
    display: block;
    font-size: 16px;
    line-height: 130%;
    color: #FFFFFF;
  }

  .header__top-cm-4 {
    font-size: 16px;
  }

  .header__middle-item-desctop {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .header__bottom {
    display: block;
  }

  .main__block-title {
    position: relative;
  }

  .main__panel-auth {
    max-width: 100%;
  }

  .main__panel-social {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 130px;
  }

  .main__panel-social img {
    width: 18px;
    height: 18px;
  }

  .img-item__img {
    margin-bottom: 16px;
  }

  .img-item__text {
    font-size: 14px;
  }

  .title_main {
    font-size: 48px;
  }

  .title_second {
    font-size: 40px;
  }

  .text {
    font-size: 20px;
    line-height: 130%;
  }

  .text_border {
    text-align: center;
    padding: 24px 50px;
  }

  .text_border img {
    display: block;
    margin: 0 auto;
    margin-bottom: 24px;
  }

  .main__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main__list {
    width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .main__lists-footer {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }

  .review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .review .main__img {
    margin-bottom: 0;
    margin-right: 32px;
  }

  .review .img-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 296px;
    flex: 0 0 296px;
  }

  .main__form {
    margin: 0 auto;
    margin-bottom: 48px;
  }

  .no-webp .form {
    background-image: url(../images/form-bg-desctop.jpg);
  }

  .form {
    padding: 58px 50px 58px 50px;
  }

  .form img {
    margin-bottom: 32px;
  }

  .form__title {
    font-size: 40px;
  }

  .form__note-text {
    margin-bottom: 32px;
  }

  .form__prices {
    margin-bottom: 24px;
  }

  .form__old-price {
    font-size: 24px;
  }

  .form__new-price {
    font-size: 40px;
  }

  .form__btn {
    margin-bottom: 24px;
  }

  .comments__title {
    font-size: 28px;
    margin-bottom: 28px;
  }

  .comments__item {
    -ms-grid-columns: 95px 1fr;
    grid-template-columns: 95px 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .comments__item img:nth-of-type(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }

  .comments__item-name {
    max-width: 100%;
  }

  .comments__item-text {
    font-size: 20px;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
  }

  .comments__item img:nth-of-type(2) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 3;
    grid-row: 3/3;
  }

  .comments__btn {
    max-width: 360px;
    display: block;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    text-transform: uppercase;
    color: #F5F5F5;
    background: #29ABE2;
    border: 1px solid #E9D7DC;
    border-radius: 5px;
    padding: 20px 70px;
    margin: 0 auto;
    margin-bottom: 48px;
  }

  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 46px 0;
  }

  .footer__logo-social {
    margin-bottom: 0;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .footer__req {
    text-align: right;
  }
}

@media (min-width: 1200px) {
  .container-main {
    position: relative;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; */
    display: grid;
    grid-template-columns: auto 360px;
    grid-template-rows: 710px auto auto;
  }

  .bar {
    grid-row: 1/1;
    grid-column: 2/2;
    display: block;
    margin-top: -32px;
    margin-left: 40px;
  }

  .bar__product {
    align-self: start;
    grid-column: 2/2;
    grid-row: 2/2;
  }
}

@media (min-width: 1300px) {
  .header__bottom-list-item {
    font-size: 15px;
  }
}

.webp .form {
  background-image: url(../images/form-bg-mob.webp);
}

@media (min-width: 768px) {

  .webp .form {
    background-image: url(../images/form-bg-desctop.webp);
  }
}

.main__results {}

.results {
  margin-left: auto;
  margin-right: auto;
  max-width: 690px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px;
  background: #F2F2F2;

}


.results__item {}

.results__item:not(:last-child) {
  margin-bottom: 15px;

}

.results__item img {
  margin-bottom: 10px;
}

.result__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #545454;
  margin-bottom: 4px;
}

.result__value {
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #29ABE2;


}


@media (min-width: 768px) {
  .results {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 0 16px 0;
    background: #F2F2F2;
  }

  .results__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 32px;
  }
}

.main__test {}

.test {
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
}

.test__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 18px;
  border: 20px solid #29ABE2;
}

.test__form-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #545454;
  margin-bottom: 16px;
}

.test__form input::placeholder {
  font-size: 20px;
  line-height: 130%;
  color: #545454;
}

.test__form select {
  margin-bottom: 12px;
}

.test__form input,
.test__form select {
  width: 100%;
  font-size: 20px;
  line-height: 130%;
  color: #545454;
  padding: 16px;
  /* background: #F5F5F5; */
  border: 1px solid #545454;
  border-radius: 5px;
}

.test__form input:not(:last-of-type) {
  margin-bottom: 12px;
}

.test__result {
  background-color: #E5F4F4;
  padding: 24px 20px;
}

.test__result-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 110%;
  text-align: center;
  color: #EE2F2F;
  margin-bottom: 12px;
}

.test__result-warning {
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  color: #545454;
}

@media (min-width: 768px) {
  .main__test {}

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

  .test__form {
    width: 60%;
    padding: 40px;
    border: 20px solid #29ABE2;
  }

  .test__form-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: #545454;
    margin-bottom: 16px;
  }

  .test__result {
    /* width: 40%; */

    /* padding: 80px 50px; */
  }

  .test__result-title {
    margin-bottom: 24px;
  }

  .test__result-warning {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {

  .test {
    /* width: calc(100% + 408px); */
  }

  .test__form {
    max-width: 450px;
    padding: 40px;
    border: 20px solid #29ABE2;
  }

  .test__form-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: #545454;
    margin-bottom: 16px;
  }

  .test__result {
    width: auto;
    max-width: 100%;
    padding: 30px;
  }

  .test__result-title {
    font-size: 40px;
  }

}