* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

html {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  color: #3a3939;
}

body {
  background-color: #f3f4f5;
  min-height: 100vh;
}
a {
  color: blue;
}
.container {
  width: 95%;
  max-width: 1128px;
  margin: 0 auto;
}
.ttu {
  text-transform: uppercase;
}
.mr10 {
  margin-right: 10px;
}

.header {
}

.header__top {
  background-color: #fff;
  color: #1b1c1d;
  font-size: 14px;
}

.header__middle {
  background-color: #ff0000;
  color: #fff;
}

.header__bottom {
  background: #333;
  -webkit-box-shadow: 0px 0px 0px #1b1c1d;
  box-shadow: 0px 0px 0px #1b1c1d;
  color: #ffffff;
}

.header__top-logo {
  display: inline-block;
  cursor: pointer;
  width: 29px;
  height: 21px;
  border-bottom: 2px solid #ff0000;
  text-align: center;
  font-weight: 900;
  color: #ff0000;
}

.header__top-logo,
.header__top-nav-list {
  display: inline-block;
  vertical-align: middle;
}

.header__top-nav-list {
  list-style: none;
  width: calc(100% - 35px);
  display: inline-block;
  padding: 3px 0;
}

.header__top-nav-item {
  display: inline-block;
  cursor: pointer;
  text-transform: uppercase;
  -webkit-transition: color ease 0.3s;
  transition: color ease 0.3s;
}
.header__top-nav-item a {
  text-decoration: none;
  color: inherit;
}

.header__top-nav-item:hover {
  color: #099;
}

.header__top-nav-item:nth-of-type(n + 1) {
  margin-left: 15px;
}

.header__middle-logo-text {
  font-size: 14px;
  font-weight: 300;
}

.header__middle-inner {
  font-size: 0;
  padding: 2px 0;
}

.header__middle-burger {
  cursor: pointer;
}

.header__middle-burger a {
  color: #fff;
}

.header__middle-logo {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin: 0 10px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.header__middle-left,
.header__middle-right {
  display: inline-block;
  font-size: 1rem;
  vertical-align: middle;
}

.header__middle-left {
  text-align: left;
  width: 80%;
}
.header__middle-right {
  text-align: right;
  width: 20%;
}

.header__middle-login {
  padding: 10px 15px;
  font-size: 13px;
  color: #f9fafb;
  border: none;
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
  cursor: pointer;
  margin-left: 35px;
  -webkit-transition: -webkit-box-shadow ease 0.2s;
  transition: -webkit-box-shadow ease 0.2s;
  transition: box-shadow ease 0.2s;
  transition: box-shadow ease 0.2s, -webkit-box-shadow ease 0.2s;
}
.header__middle-login:hover {
  -webkit-box-shadow: 0 0 0 2px #fff inset;
  box-shadow: 0 0 0 2px #fff inset;
}

.header__middle-search,
.header__middle-login {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.header__middle-search a {
  color: #fff;
}

.header__middle-search {
  opacity: 0.8;
}

.header__middle-search:hover {
  opacity: 1;
}

.header__bottom-nav-item {
  display: inline-block;
  padding: 11px 13px 9px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  border-width: 0 0 3px;
  border-style: solid;
  border-color: transparent;
  -webkit-transition: border-color ease 0.3s;
  transition: border-color ease 0.3s;
}

.header__bottom-nav-item a {
  color: inherit;
  text-decoration: none;
}

.header__bottom-nav-item:hover {
  border-bottom-color: #ff0000;
}

.icon-virus {
  position: relative;
}

.icon-virus::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 14px;
  background-image: url("../img/virus-pic.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  vertical-align: middle;
  margin-right: 5px;
}
.button {
  font-weight: bold;
  font-size: 23px;
  text-align: center;
  color: #fff !important;
  background-color: red;
  display: block;
  margin: 25px auto;
  width: 400px;
  max-width: 100%;
  border-radius: 15px;
  text-decoration: none;
  padding: 15px;
  -webkit-animation: 1s pulse infinite alternate ease-in-out;
  animation: 1s pulse infinite alternate ease-in-out;
}
.button:hover {
  background-color: #c11f1f;
}
.link {
  display: inline-block;
  color: red;
  text-decoration: none;
  -webkit-animation: 1s pulse infinite alternate ease-in-out;
  animation: 1s pulse infinite alternate ease-in-out;
  font-size: 22px;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@media all and (max-width: 1023px) {
  .header__bottom {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .header__middle-logo-text,
  .header__middle-login {
    display: none;
  }
  .header__middle {
    padding: 5px 0;
  }
  .header__middle-right {
    width: 30px;
  }
  .header__middle-left {
    width: calc(100% - 30px);
  }
}
@media all and (max-width: 376px) {
  .header__middle-logo {
    font-size: 24px;
  }
}

.page {
  padding: 12px 0;
}

.page-inner {
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  box-shadow: 0 1px 2px 0 rgba(34, 36, 38, 0.15);
  padding: 16px;
  border-radius: 0.28571429rem;
  border: 1px solid rgba(34, 36, 38, 0.15);
}

.article {
  margin-bottom: 35px;
}

.article__title {
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}

.article__title--tag {
  text-decoration: underline;
}

.article__subtitle {
  font-size: 32px;
  margin: 20px 0 16px;
}

.article__accent {
  font-size: 27px;
  margin: 28px 0 16px;
}

.article p {
  margin: 15px 0;
}

.article__figure {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 15px auto;
}
.article__figure span {
  font-weight: bold;
}
.article__figure-pic {
  display: block;
  width: 100%;
}
.article__figure-prod {
  position: absolute;
  width: 15%;
  bottom: 2%;
  right: 43%;
}
.article__info-block {
  display: block;
  width: 100%;
  border-width: 1px 0;
  border-color: #eeeeee;
  border-style: solid;
  padding: 15px;
  font-size: 0;
}

.article__info-picture,
.article__info-text {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
}

.article__info-picture {
  width: 30%;
}

.article__info-text {
  padding: 0 20px;
  width: 70%;
}
.info-text--small {
  font-weight: 300;
  font-size: 18px;
}

.article__list {
  padding: 0 0 0 35px;
  margin: 16px 0;
}

.fz-smaller {
  font-size: 0.8em;
}

.alignCenter {
  text-align: center;
}
.redText {
  color: #ff0000;
}

.hologram-block {
  text-align: center;
  margin-bottom: 16px;
}

.hologram-pic {
  display: inline-block;
  max-width: 70px;
}

.comments__title {
  margin: 28px 0 16px;
  font-size: 28px;
  font-weight: 400;
}

.comments__list {
  list-style: none;
}

.comment {
  display: block;
  padding: 15px 0;
  font-size: 0;
  border-bottom: 1px solid #eee;
}

.comment__ava,
.comment__body {
  display: inline-block;
  vertical-align: top;
  font-size: 0.9rem;
}

.comment__ava {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment__body {
  width: calc(100% - 70px);
  padding: 0 15px;
}

.comment__body > span {
  display: block;
}

.comment__name {
  font-weight: 600;
}

.comment__text {
  margin: 15px 0;
}

.comment__rew-pic {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-bottom: 15px;
}

@media all and (max-width: 767px) {
  .article__info-text {
    display: block;
    width: 100%;
  }
  .article__info-text {
    padding: 15px 0 0;
  }
  .article__info-picture {
    display: block;
    /* max-width: 300px; */
    width: 100%;
    margin: 0 auto;
  }
  .comment__ava {
    height: 40px;
    width: 40px;
  }
  .comment__body {
    width: calc(100% - 40px);
    padding: 0 0 0 8px;
  }
  .header__top-nav-item a {
    font-size: 10px;
  }
  .header__top-nav-item:last-child {
    display: none;
  }
  .header__top-nav-item:nth-of-type(n+1) {
    margin-left: 8px;
  }
}
/**/

.article__date {
  display: inline-block;
  width: 115px;
  position: relative;
  padding-left: 25px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.article__social {
  display: inline-block;
  width: calc(100% - 120px);
  text-align: right;
}

.social {
  font-size: 0;
}

.social__item {
  display: inline-block;
}

.social__item:not(:last-of-type) {
  margin-right: 5px;
}

.social__link {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: #00a8ff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.social__link--rss {
  background-color: #f7d070;
}

.social__link--facebook {
  background-color: #7a8abb;
}

.social__link--twitter {
  background-color: #8ac8eb;
}

.social__link--pinterest {
  background-color: #f1615d;
}

.social__link--youtube {
  background-color: #d6595a;
}

.social__link--instagram {
  background-color: #8aa6bf;
}

.social__link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
}

.social__link--rss::after {
  background: url("../img/rss.svg") no-repeat;
  background-size: contain;
}

.social__link--facebook::after {
  background: url("../img/facebook.svg") no-repeat;
  background-size: contain;
}

.social__link--twitter::after {
  background: url("../img/twitter.svg") no-repeat;
  background-size: contain;
}

.social__link--pinterest::after {
  background: url("../img/pinterest.svg") no-repeat;
  background-size: contain;
}

.social__link--youtube::after {
  background: url("../img/youtube.svg") no-repeat;
  background-size: contain;
}

.social__link--instagram::after {
  background: url("../img/instagram.svg") no-repeat;
  background-size: contain;
}

.article__date::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../img/clock.png) no-repeat;
  background-size: contain;
}
.social__link:hover {
  background-color: #8bc741;
}
@media (max-width: 375px) {
}
@media (max-width: 400px) {
  .social__item:not(:last-of-type) {
    margin-right: 3px;
  }
  .article__social {
    width: calc(100% - 115px);
  }
  .social__link {
    width: 23px;
    height: 23px;
  }
  .article__date {
    font-size: 15px;
    width: 110px;
  }
}
.breadcrumbs {
  font-size: 15px;
  color: #717171;
  margin: 0 0 10px 0;
}
.today {
  color: red;
  font-weight: bold;
}
.product {
  position: relative;
  max-width: 280px;
  width: 100%;
  margin: 35px auto 15px;text-align: center;
}

.product .natural_label {
  position: absolute;
  width: 90px;
  right: 7px;
  top: -21px;
}
.reporter::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  background-image: url(../img/reporter.png);
  background-size: contain;
  margin: 0px 10px 5px 0;
  float: left;
  vertical-align: middle;
}
.reporter::after,
.Dr::after {
  clear: both;
  content: "";
  display: block;
}
.Dr::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  background-image: url(../img/info-pic_01.jpg);
  background-size: contain;
  margin: 0 10px 5px 0;
  float: left;
}
.reporter span:nth-of-type(1) {
  font-weight: bold;
  color: red;
}
.Dr span:nth-of-type(1) {
  font-weight: bold;
}
@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 12px;
  }
}


.order-form .top {
  margin-bottom: 5px !important;
}

.order-form .top h2 {
  margin-bottom: 5px !important;
}