html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #000000;
  background: #f5f6f8;
}

img {
  max-width: 100%;
}

ul,
li {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.overflow {
  overflow-x: hidden;
}


@keyframes super-rotation {
  70% {
    -webkit-transform: rotate(1873deg);
    transform: rotate(1873deg)
  }

  100% {
    -webkit-transform: rotate(1863deg);
    transform: rotate(1863deg)
  }
}


/* -----------------------------------------Common----------------------------------------- */
.outer-container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 8px 16px;
}

.container {
  padding: 0 8px;
}

.round-bg {
  padding: 4px 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #2E4B83;
  background: #F2F2F2;
  border-radius: 96px;
}

.accent {
  color: #C74C4D;
}

.uppercase {
  text-transform: uppercase;
}

.product-link {
  font-weight: 700;
  color: #C74C4D;
  transition: all .3s ease-out;
}

.product-link:hover {
  color: #2E4B83;
  text-decoration: none;
}

.button {
  position: relative;
  display: block;
  width: 100%;
  max-width: 248px;
  margin: 0 auto;
  padding: 12px;
  font: inherit;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-shadow: 0 -1px 2px rgba(255, 255, 255, 0.4), 0 1px 0 rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.4);
  background-color: #12A354;
  border-radius: 8px;
  outline: none;
  border: none;
  box-shadow: 0 8px 16px rgba(18, 163, 84, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: all .3s ease-out;
  cursor: pointer;
  z-index: 1;
}

.button::before,
.button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: all .3s ease-out;
  z-index: -1;
}

.button::before {
  background: linear-gradient(180deg, #3FBE79 0%, #12A354 100%);
}

.button::after {
  background: linear-gradient(180deg, #31B86F 0%, #00853D 100%);
  opacity: 0;
}

.button:hover {
  box-shadow: 0 4px 8px rgba(18, 163, 84, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.button:hover::after {
  opacity: 1;
}

.button:focus,
.button:active {
  box-shadow: 0 2px 4px rgba(18, 163, 84, 0.64), inset 0 1px 0 rgba(0, 0, 0, 0.24), inset 0 -1px 0 rgba(255, 255, 255, 0.24);
}


.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  line-height: 1.25;
  color: #B4B4B4;
}

.info__date {
  max-width: 80px;
  margin-right: 20px;
}

.info__reactions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: calc(100% - 80px - 20px);
}

.info__reaction {
  position: relative;
  padding-left: 20px;
}

.info__reaction::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.info__reaction--views::before {
  background-image: url("../images/views-icon.svg");
}

.info__reaction--comments::before {
  background-image: url("../images/comments-icon.svg");
}

.info__reaction:not(:last-of-type) {
  margin-right: 16px;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  z-index: 10;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: 1;
}

.popup {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin: 0 auto;
  text-align: center;
  background-color: #ffffff;
  border-radius: 10px;
  animation: .7s ease 0s normal none 1 running pop-up-appear;
  z-index: 2;
}

.popup--congrats {
  max-width: 352px;
  padding: 72px 10px 32px;
}

.popup--comeback {
  max-width: 576px;
  padding: 50px 116px 16px;
  background: url("../images/popup-comeback-bg.jpg") bottom center no-repeat, #ffffff;
}

.popup--congrats::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 56px;
  height: 56px;
  background: url("../images/check-icon.svg") center / contain no-repeat;
}

.popup__heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #2E4B83;
}

.popup__text {
  margin-top: 16px;
  font-size: 15px;
}

.popup__button {
  max-width: 169px;
  margin-top: 16px;
  padding: 12px;
  text-transform: none;
}

.popup__button:hover {
  color: #fff;
  text-decoration: none;
}

.popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: url("../images/cross-icon.svg") center no-repeat;
  cursor: pointer;
}

.popup__image {
  position: absolute;
}

.popup__image--box {
  top: -20px;
  left: -65px;
}

.popup__image--bottle {
  bottom: -58px;
  right: -68px;
}

.popup--comeback .popup__heading {
  margin-bottom: 32px;
}

.popup--comeback .popup__button {
  margin-top: 109px;
}


.nav {
  padding: 12px 8px;
  color: #ffffff;
  background: #2E4B83;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.nav__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__list {
  margin-right: 30px;
}

.nav__item:not(.nav__item--home) {
  display: none;
}

.nav__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.nav__link--home {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.nav__link-icon {
  flex-shrink: 0;
}

.nav__link-text {
  display: none;
}

.nav__social {
  display: none;
}

.nav__button {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
}

.nav__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 6px 0 0 #ffffff, 0 -6px 0 0 #ffffff;
}


.main-header__wrapper {
  margin-top: 8px;
}

.main-header__portal {
  display: none;
}

.main-header__banner {
  display: flex;
  justify-self: flex-end;
  align-items: center;
  padding: 6px 3px;
  border-radius: 4px;
  background-color: #2E4B83;
  background-image: url("../images/product.png"), url("../images/main-header-banner.jpeg");
  background-repeat: no-repeat;
  background-position: top 60% left 30%, left center;
  background-size: 100px auto, cover;
}

.main-header__banner-button {
  display: none;
}

.main-header__banner-product-name {
  margin-left: auto;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.64);
  border-radius: 8px;
}

.main-header__list {
  display: none;
}

.main-content {
  display: block;
  margin-top: 8px;
}

.article {
  padding: 8px 0;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.article__crumbs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 8px;
  font-size: 12px;
  line-height: 1.2;
  color: #B4B4B4;
  background: #F2F2F2;
  border-radius: 4px;
}

.article__crumb:not(:last-of-type) {
  position: relative;
  padding-right: 13px;
  margin-right: 8px;
}

.article__crumb:not(:last-of-type)::after {
  content: "/";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}

.article__crumb-link {
  color: inherit;
  text-decoration: none;
}

.article__crumb-link--active {
  font-weight: 700;
  color: #000000;
}

.article__crumb-link:not(.article__crumb-link--active):hover {
  text-decoration: underline;
}

.article__title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #2E4B83;
}

.article__title-span {
  padding: 0 4px;
  line-height: 1.3;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #ffffff;
  background: #C74C4D;
  border-radius: 50px;
}

.article__info {
  margin-top: 8px;
  padding: 8px;
  background: #F2F2F2;
  border-radius: 4px;
}

.article__blockquote {
  position: relative;
  margin-top: 16px;
  padding: 8px 12px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #000000;
  background: url("../images/article-blockquote-bg.jpg") center / cover no-repeat;
  border-radius: 4px;
  z-index: 1;
}

.article__blockquote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, #000000 100%);
  border-radius: 4px;
  z-index: -1;
}

.article__blockquote-author {
  font-style: normal;
}

.article__paragraph {
  margin-top: 8px;
}

.article__specialist {
  margin-top: 8px;
}

.article__specialist-photo {
  width: 128px;
  height: 146px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.article__specialist-wrapper {
  margin-top: 8px;
  font-weight: 700;

}

.article__specialist-text--topic {
  text-transform: uppercase;
}

.article__question {
  margin-top: 16px;
}

.article__image {
  margin-top: 16px;
}

.article__image-wrapper {
  max-width: 576px;
  margin: 6px auto 0;
  font-size: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.article__order {
  margin-top: 16px;
  margin-bottom: 16px;
}

.order__product {
  font-size: 0;
  text-align: center;
}

.order__wrapper {
  margin-top: 16px;
}

.order__form {
  max-width: 248px;
  margin: 0 auto;
}

.order__label {
  display: block;
  width: 100%;
}

.order__label:not(:first-of-type) {
  margin-top: 16px;
}

.order__field {
  display: block;
  width: 100%;
  padding: 12px;
  font: inherit;
  text-align: center;
  color: #000000;
  background: #FFFFFF;
  border: 1px solid #B4B4B4;
  border-radius: 8px;
  outline: none;
  transition: all .3s ease-out;
}

.order__field--select::-ms-expand {
  display: none;
}

.order__field--select {
  -webkit-appearance: none;
  appearance: none;
  background-image: url("../images/select-icon.svg");
  background-position: center right 12px;
  background-repeat: no-repeat;
}

.order__field::-webkit-input-placeholder {
  font: inherit;
  text-align: center;
  color: #000000;
}

.order__field::-moz-placeholder {
  font: inherit;
  text-align: center;
  color: #000000;
}

.order__field:-moz-placeholder {
  font: inherit;
  text-align: center;
  color: #000000;
}

.order__field:-ms-input-placeholder {
  font: inherit;
  text-align: center;
  color: #000000;
}

.order__field:hover {
  border-color: #000000;
}

.order__field:focus,
.order__field:active {
  color: #2E4B83;
  border-color: #2E4B83;
}

.order__field:focus::-webkit-input-placeholder,
.order__field:active::-webkit-input-placeholder {
  color: #2E4B83;
}

.order__field:focus::-moz-placeholder,
.order__field:active::-moz-placeholder {
  color: #2E4B83;
}

.order__field:focus:-moz-placeholder,
.order__field:active:-moz-placeholder {
  color: #2E4B83;
}

.order__field:focus:-ms-input-placeholder,
.order__field:active:-ms-input-placeholder {
  color: #2E4B83;
}

.order__field:invalid {
  color: #FF0000;
  border-color: #FF0000;
}

.order__field:invalid::-webkit-input-placeholder {
  color: #FF0000;
}

.order__field:invalid::-moz-placeholder {
  color: #FF0000;
}

.order__field:invalid:-moz-placeholder {
  color: #FF0000;
}

.order__field:invalid:-ms-input-placeholder {
  color: #FF0000;
}

.order__button {
  margin-top: 16px;
}

.article__chart {
  margin-top: 16px;
  margin-bottom: 16px;
}

.chart {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.chart__heading {
  padding-left: 32px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #000000
}

.chart__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.chart__axis-desc {
  writing-mode: tb-rl;
  transform: rotate(-180deg);
  font-weight: 700;
  /* font-size: 16px;
  line-height: 1.5; */
}

.chart__scheme {
  position: relative;
  width: 100%;
  max-width: calc(100% - 24px - 8px);
  margin-left: 8px;
}

.chart__rows {
  width: 100%;
}

.chart__row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  min-height: 26px;
  width: 100%;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  border-bottom: 1px solid #b4b4b4;
}

.chart__row:last-of-type {
  border-color: #000000;
}

.chart__columns {
  position: absolute;
  bottom: 1px;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-left: 24px;
}

.chart__column {
  width: 100%;
  max-width: calc((100% - 40px)/6);
}

.chart__column--1 {
  height: 15px;
  background-color: #A6B218;
}

.chart__column--2 {
  height: 35px;
  background-color: #A800AB;
}

.chart__column--3 {
  height: 25px;
  background-color: #109619;
}

.chart__column--4 {
  height: 45px;
  background-color: #3266CC;
}

.chart__column--5 {
  height: 50px;
  background-color: #FF9700;
}

.chart__column--6 {
  height: 105px;
  background-color: #C74C4D;
}

.chart__column-descs {
  margin-top: 16px;
  font-weight: 700;
  font-size: 16px;
  columns: 2 auto;
}

.chart__column-desc {
  position: relative;
  margin-bottom: 16px;
  padding-left: 25px;
}

.chart__column-desc::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 16px;
  height: 16px;
}

.chart__column-desc--1 {
  color: #A6B218;
}

.chart__column-desc--1::before {
  background-color: #A6B218;
}

.chart__column-desc--2 {
  color: #A800AB;
}

.chart__column-desc--2::before {
  background-color: #A800AB;
}

.chart__column-desc--3 {
  color: #109619;
}

.chart__column-desc--3::before {
  background-color: #109619;
}

.chart__column-desc--4 {
  color: #3266CC;
}

.chart__column-desc--4::before {
  background-color: #3266CC;
}

.chart__column-desc--5 {
  color: #FF9700;
}

.chart__column-desc--5::before {
  background-color: #FF9700;
}

.chart__column-desc--6 {
  color: #C74C4D;
}

.chart__column-desc--6::before {
  background-color: #C74C4D;
}

.article__item {
  margin-top: 8px;
}

.article__image-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 520px;
  margin: 4px auto 0;
}

.article__image-detail {
  max-width: calc((100% - 16px)/3);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
}

.article__image-detail:nth-child(3) {
  display: none;
}

.article__order--wheel {
  margin-top: 16px;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 2px solid #000000;
}

.order__paragraph {
  font-weight: 700;
  line-height: 1.2;
}

.order__paragraph:not(:first-of-type) {
  margin-top: 8px;
}

.order__update {
  color: #2E4B83;
}

.order__wheel {
  margin-top: 16px;
}

.wheel {
  padding: 8px;
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.wheel__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}

.wheel__title-span {
  display: block;
}

.wheel__title-span:not(:first-of-type) {
  margin-top: 8px;
}

.wheel__image {
  position: relative;
  margin-top: 16px;
  font-size: 0;
  text-align: center;
}

.wheel__cursor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.wheel__cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50%;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  background-color: #ccc;
  border: 1px solid #ccc;
  box-shadow: #ffffff 0 -2px 0 inset, #ffffff 0 2px 0 inset, rgb(0 0 0 / 40%) 0 0 5px;
  background: radial-gradient(ellipse at center, #ffffff 0, #eaeaea 100%), #cccccc;
  user-select: none;
  cursor: pointer;
  z-index: 2;
}

.super-rotation {
  animation-name: super-rotation;
  animation-duration: 7s;
  animation-fill-mode: forwards;
  transition-timing-function: ease-in-out
}

.order__result {
  display: none;
}

.order__offer--wheel {
  padding: 32px 8px 8px;
}

.order__timer {
  font-weight: 700;
  text-align: center;
}

.timer__wrapper {
  max-width: 130px;
  margin: 8px auto 0;
  padding: 8px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
  border: 2px solid #2E4B83;
  background: #C74C4D;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.order__product {
  margin-top: 16px;
}

.discount {
  margin-bottom: 19px;
  padding: 8px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #FF9700;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 151, 0, 0.32);
  background: linear-gradient(180deg, #FFF500 0%, #FFB800 100%);
}

.discount__prices {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-top: 4px;
}

.discount__price {
  padding: 4px;
}

.discount__price--old {
  font-weight: 400;
  text-decoration: line-through;
}

.discount__price--new {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  color: #C74C4D;
}

.main-content__comments {
  margin-top: 10px;
}

.comments {
  padding: 13px 0 16px;
  background: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
}

.comments__title {
  position: relative;
  padding-bottom: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #2E4B83;
}

.comments__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 50px;
  background-color: #2E4B83;
}

.comments__list {
  margin-top: 10px;
}

.comments__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px 0;
}

.comments__item:nth-last-of-type(n+7) {
  display: none;
}

.comments__item:not(.comments__item--reply, :first-of-type) {
  border-top: 1px solid #F2F2F2;
}

.comments__item:last-of-type {
  border-bottom: 1px solid #F2F2F2;
}

.comments__item--reply {
  margin-left: 16px;
}

.comments__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-right: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.comments__wrapper {
  width: 100%;
  max-width: calc(100% - 52px - 8px);
}

.comments__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  line-height: 1.2;
}

.comments__author {
  width: 100%;
  max-width: calc(100% - 70px - 16px);
  font-weight: 700;
  color: #2E4B83;
}

.comments__date {
  max-width: 70px;
  color: #b4b4b4;
}

.comments__content {
  margin-top: 8px;
}

.comments__text {
  margin-bottom: 8px;
}

.comments__image {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.comments__link {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-decoration: none;
  color: #B4B4B4;
}

.comments__link:hover {
  text-decoration: underline;
}

.comments__recipient {
  color: #2E4B83;
}

.comments__info {
  margin-top: 16px;
}

.comments__button {
  margin-top: 8px;
}

.main-content__sidebar {
  display: none
}


@media (min-width: 992px) {  
  .container {
    padding: 0 16px;
  }
  
  .nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  
  .nav__item:not(.nav__item--home) {
    display: block;
  }

  .nav__item:not(:last-of-type) {
    margin-right: 30px;
  }

  .nav__link:not(.nav__link--home) {
    display: block;
  }
  
  .nav__link {
    font-weight: 700;
    transition: all .3s ease-out;
  }
  
  .nav__link:hover {
    color: #12A354;
  }
  
  .nav__link-icon {
    margin-right: 16px;
  }
  
  .nav__link-text {
    display: block;
  }
  
  .nav__social {
    position: relative;
    padding-left: 16px;
  }

  .nav__social::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 1px;
    height: calc(100% + 12px + 12px);
    background-color: rgba(255, 255, 255, 0.16);
  }
  
  .social,
  .social__list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .social__text {
    font-weight: 700;
    text-align: right;
    text-transform: uppercase;
  }

  .social__item {
    margin-left: 8px;
  }

  .social__link {
    display: block;
    width: 24px;
    height: 24px;
    color: inherit;
    text-decoration: none;
    background-position: center;
    /* background-size: contain; */
    background-repeat: no-repeat;
    transition: all .3s ease-out;
  }

  .social__link--1 {
    background-image: url("../images/social-icon1.svg");
  }

  .social__link--2 {
    background-image: url("../images/social-icon2.svg");
  }

  .social__link--3 {
    background-image: url("../images/social-icon3.svg");
  }

  .social__link--4 {
    background-image: url("../images/social-icon4.svg");
  }

  .social__link--5 {
    background-image: url("../images/social-icon5.svg");
  }

  .social__link:hover {
    transform: scale(1.1);
  }
  
  .nav__button {
    display: none;
  }
  
  .main-header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-top: 16px;
  }
  
  .main-header__portal {
    display: block;
    margin-right: 16px;
  }

  .main-header__portal-top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 224px;
    width: 100%;
  }

  .main-header__portal-abbr {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 72px;
    height: 72px;
    padding: 8px;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #2E4B83;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50%;
    border: 4px solid #2E4B83;
  }

  .main-header__portal-abbr:not(:last-of-type) {
    margin-right: 4px;
  }

  .main-header__portal-bottom {
    display: block;
    width: 100%;
    padding: 4px 8px;
    margin-top: 4px;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 50px;
    background: #C74C4D;
  }
  
  .main-header__banner {
    display: block;
    width: 100%;
    max-width: calc(100% - 224px - 16px);
    padding: 17px 3px 17px 410px;
    border-radius: 8px;
  }
  
  .main-header__banner-product-name {
    display: inline-block;
    margin-left: 0;
    padding: 4px 8px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.64);
    border-radius: 8px;
  }

  .main-header__banner-button {
    display: block;
    max-width: 120px;
    margin-top: 8px;
    margin-left: 0;
    padding: 4px 8px;
    font-size: 12px;
  }

  .main-header__list {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 16px;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
  }

  .main-header__item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
  }

  .main-header__item:not(:last-of-type) {
    border-right: 1px solid #F2F2F2;
  }

  .main-header__link {
    position: relative;
    display: block;
    width: 100%;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    color: #000000;
    transition: all .3s ease-out;
    z-index: 1;
  }

  .main-header__link::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background-color: #2E4B83;
    transition: all .3s ease-out;
    z-index: -1;
  }

  .main-header__link--active {
    color: #ffffff;
  }

  .main-header__link--active::before {
    width: 100%;
    background-color: #C74C4D;
  }
  
  .main-header__link:not(.main-header__link--active):hover {
    color: #ffffff;
  }

  .main-header__link:not(.main-header__link--active):hover::before {
    width: 100%;
  }
  
  .main-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 28px;
  }

  .main-content__wrapper {
    max-width: calc(100% - 352px - 32px);
    margin-right: 32px;
  }
  
  .article {
    padding: 16px 0;
  }
  
  .article__crumbs {
    padding: 8px 16px;
  }
  
  .article__title {
    margin-top: 16px;
    font-size: 32px;
  }
  
  .article__title-span {
    padding: 0 8px;
    line-height: 1.3;
    margin-left: -8px;
  }
  
  .article__info {
    margin-top: 16px;
    padding: 8px 16px;
  }
  
  .article__blockquote {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: 344px;
    margin: 16px auto;
    padding: 16px;
  }
  
  .article__blockquote::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.47%, #000000 100%);
  }
  
  .article__paragraph {
    margin-top: 8px;
  }
  
  .article__specialist {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 16px auto;
  }
  
  .article__specialist-photo {
    width: 140px;
    height: 160px;
    margin-left: 0;
    margin-right: 32px;
  }

  .article__specialist-wrapper {
    max-width: calc(100% - 140px - 32px);
    margin-top: 0;
  }
  
  .article__specialist-text {
    margin-top: 0;
  }
  
  .article__specialist-text--topic {
    margin-top: 16px;
  }
  
  .article__question {
    margin-top: 32px;
  }

  .article__question + .article__paragraph,
  .article__question + .article__image,
  .article__image + .article__paragraph {
    margin-top: 16px;
  }
  
  .article__image {
    margin-top: 32px;
  }
  
  .article__image-wrapper {
    margin-top: 16px;
  }
  
  .order__offer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
  }
  
  .order__product {
    flex-shrink: 0;
    width: 100%;
    max-width: 172px;
    margin: 0 auto;
  }
  
  .order__wrapper {
    width: 100%;
    max-width: 248px;
    margin-top: 0;
  }
  
  
  .order__button {
    margin-top: 16px;
  }
  
  .article__chart {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  
  .chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
  }

  .chart__figure {
    width: 100%;
    max-width: 414px;
    margin-right: 24px;
  }
  
  .chart__heading {
    margin-top: 16px;
    padding-left: 48px;
  }
  
  .chart__scheme {
    max-width: calc(100% - 24px - 24px);
    margin-left: 24px;
  }
  
  .chart__row {
    min-height: 40px;
    font-size: 16px;
  }
  
  .chart__columns {
    padding-left: 38px;
  }
  
  .chart__column--1 {
    height: 24px;
  }
  
  .chart__column--2 {
    height: 49px;
  }
  
  .chart__column--3 {
    height: 37px;
  }
  
  .chart__column--4 {
    height: 65px;
  }
  
  .chart__column--5 {
    height: 69px;
  }
  
  .chart__column--6 {
    height: 157px;
  }
  
  .chart__column-descs {
    width: 100%;
    max-width: calc(100% - 414px - 24px);
    margin-top: 0;
    columns: auto;
  }
  
  .chart__column-desc {
    margin-bottom: 10px;
    padding-left: 27px;
  }
  
  .article__image-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 520px;
    margin: 4px auto 0;
  }
  
  .article__image-detail {
    max-width: 98px;
    font-size: 12px;
  }
  
  .article__image-detail:nth-child(3) {
    display: block;
  }
  
  .article__order--wheel {
    display: block;
    max-width: 100%;
    margin-top: 32px;
    margin-bottom: 0;
    padding-top: 32px;
  }

  .wheel {
    padding: 32px 32px 50px;
  }

  .order__offer--wheel {
    flex-wrap: wrap;
    max-width: 100%;
  }
  
  .order__timer {
    width: 100%;
  }
  
  .order__offer--wheel .order__product {
    max-width: 205px;
    margin-top: 4px;
  }

  .main-content__comments {
    margin-top: 32px;
  }
  
  .comments {
    padding: 16px 0 32px;
  }
  
  .comments__list {
    margin-top: 0;
  }
  
  .comments__item {
    padding: 16px 0;
  }

  .comments__item:nth-last-of-type(n+7) {
    display: flex;
  }
  
  .comments__avatar {
    width: 72px;
    height: 72px;
    margin-right: 16px;
  }
  
  .comments__wrapper {
    max-width: calc(100% - 72px - 16px);
  }
  
  .comments__button {
    margin-top: 32px;
  }
  
  .main-content__sidebar {
    display: block;
    width: 100%;
    max-width: 352px;
  }

  .sidebar__search {
    text-decoration: none;
  }

  .sidebar__search-input {
    display: block;
    width: 100%;
    padding: 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    font-family: inherit;
    color: #B4B4B4;
    background-color: #ffffff;
    background: url("../images/search-icon.svg") center right 16px no-repeat, #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    border: none;
  }

  .sidebar__search-input::-webkit-input-placeholder {
    font: inherit;
    color: #B4B4B4;
  }

  .sidebar__search-input::-moz-placeholder {
    font: inherit;
    color: #B4B4B4;
  }

  .sidebar__search-input:-moz-placeholder {
    font: inherit;
    color: #B4B4B4;
  }

  .sidebar__search-input:-ms-input-placeholder {
    font: inherit;
    color: #B4B4B4;
  }

  .sidebar__block {
    margin-top: 32px;
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
  }

  .note {
    font-weight: 700;
    line-height: 1.2;
    color: #2E4B83;
  }

  .note__paragraph:not(:first-of-type) {
    margin-top: 8px;
  }

  .note__image {
    margin-top: 16px;
    font-size: 0;
  }

  .sidebar__title {
    position: relative;
    padding-bottom: 5px;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #2E4B83;
  }

  .sidebar__title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #2E4B83;
    border-radius: 8px;
  }

  .sidebar__list {
    margin-top: 16px;
  }

  .sidebar__item:not(:first-of-type) {
    margin-top: 8px;
  }

  .sidebar__link {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: inherit;
    text-decoration: none;
  }

  .sidebar__poster {
    width: 72px;
    height: 72px;
    margin-right: 16px;
    font-size: 0;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
  }

  .sidebar__article {
    width: 100%;
    max-width: calc(100% - 72px - 16px);
  }

  .sidebar__article-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
  }

  .sidebar__article-info {
    margin-top: 8px;
  }

  .sidebar__link:hover .sidebar__article-title {
    text-decoration: underline;
  }
  
  .sidebar__banner {
    display: block;
    margin-top: 32px;
    text-decoration: none;
    color: inherit;
  }

  .sidebar__product {
    font-size: 0;
    text-align: center;
  }

  .sidebar__button {
    margin-top: 16px;
  }

  .sidebar__banner:hover .button {
    box-shadow: 0 4px 8px rgba(18, 163, 84, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  .sidebar__banner:hover .button::after {
    opacity: 1;
  }

  .sidebar__banner:focus .button,
  .sidebar__banner:active .button {
    box-shadow: 0 2px 4px rgba(18, 163, 84, 0.64), inset 0 1px 0 rgba(0, 0, 0, 0.24), inset 0 -1px 0 rgba(255, 255, 255, 0.24);
  }
}
.sidebar__banner.fixed {
    position: fixed;
    top: 25px;
    margin-top: 0;width: 352px;
  }