footer {
  font-size: 16px;
  text-align: center;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "fontello";
  font-style: normal;
  font-weight: normal;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  margin-left: .2em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-search:before {
  content: '';
  height: 18px;
  background: url(../images/loupe.png);
  background-position: 50%;
  background-size: contain;
}

/* 'î €' */
.icon-down-dir:before {
  content: '\e801';
}

/* 'î ' */
.icon-menu:before {
  content: '';
  height: 18px;
  background: url(../images/menu.png);
  background-position: 50%;
  background-size: contain;
}

/* 'ïƒ‰' */

input {
  outline: medium none;
}

input:active {
  outline: medium none;
}

button:active,
button:focus {
  outline: medium none !important;
}

button::-moz-focus-inner {
  border: 0 none !important;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

::-ms-clear {
  display: none;
}

.order {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

.order * {
  box-sizing: border-box;
}

.order h4 {
  font-size: 16px;
}

.order-info h2 {
  color: red;
  font-size: 24px;
  line-height: 24px;
}

.order-info h2 span {
  text-decoration: underline;
}

.order-info .left_count {
  display: block;
  width: 230px;
  padding: 15px;
  margin: 12px auto;
  background: red;
  color: #fff;
  text-shadow: 0 -1px 0 #000, 0 -1px 0 #000, 0 1px 0 #000, 0 1px 0 #000,
    -1px 0 0 #000, 1px 0 0 #000, -1px 0 0 #000, 1px 0 0 #000, -1px -1px 0 #000,
    1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000, -1px -1px 0 #000,
    1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  font-size: 32px !important;
  border-radius: 5px;
  line-height: 32px;
}

.order-info .prod_left_val {
  font-size: 52px;
  font-weight: 700;
  line-height: 52px;
}

.order-info div h4 span {
  color: green;
}

.order-form {
  max-width: 600px;
  padding: 20px 30px;
  margin: 20px auto;
  background: #fff url(../images/formbg.jpg) no-repeat;
  background-size: 100% 100%;
  position: relative;
}

.order-form .top {
  padding-top: 90px;
}

.hologram {
  width: 80px;
  position: absolute;
  left: 50%;
  top: 3%;
  transform: translateX(-50%);
}

.order-form .top h2 {
  margin: 25px 0 0;
  padding: 0;
  line-height: 32px;
  font-size: 30px;
  font-weight: 700;
}

.order-form .top p {
  font-size: 14px;
  color: #00f;
  font-style: italic;
  text-align: center;
}

.order-form p {
  margin: 0 !important;
}

.order-form .price p span {
  font-size: 21px;
  font-weight: 700;
  color: red;
}

.order-form .frame {
  margin: 25px 0;
  border: 2px solid #0299ff;
  padding: 10px;
}

.order-form .frame p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
  padding: 0;
  text-align: center !important;
}

.order-form label {
  width: 230px;
  display: block;
  margin: 0 auto;
  padding: 5px 0;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
}

.order-form input {
  width: 100%;
  max-width: 300px;
  display: block;
  margin: 0 auto;
  padding: 15px;
  border-radius: 3px;
  border: 2px solid #e9d7dc;
  font-size: 21px;
}

.order-form p {
  font-size: 12px;
  margin: 0;
  line-height: 30px;
  text-align: center !important;
  padding: 0;
}

.order-form button {
  max-width: 245px;
  width: 100%;
  display: block;
  margin: 20px auto;
  padding: 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px 0 rgba(129, 150, 160, 0.45);
  border-radius: 5px;
  background: #0299ff;
  transition: all 0.15s ease-in-out;
  border: none;
  cursor: pointer;
  animation: 1s pulse infinite alternate ease-in-out;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}

.order-form button:after {
  display: inline-block;
  -webkit-animation: dotty steps(1, end) 1.5s infinite;
  animation: dotty steps(1, end) 1.5s infinite;
  content: "";
  position: absolute;
  margin-left: 10px;
  margin-top: 2px;
}

@-webkit-keyframes dotty {
  0% {
    content: "";
  }

  25% {
    content: ">";
  }

  50% {
    content: ">>";
  }

  75% {
    content: ">>>";
  }

  100% {
    content: "";
  }
}

@keyframes dotty {
  0% {
    content: "";
  }

  25% {
    content: ">";
  }

  50% {
    content: ">>";
  }

  75% {
    content: ">>>";
  }

  100% {
    content: "";
  }
}

.order-form button:hover {
  background: #017acc;
  text-decoration: none;
  color: #fff;
}

.order-form button:disabled {
  opacity: 0.5;
}

.order-form button:hover:disabled {
  background-color: #0299ff;
}

.order-form button:active {
  position: relative;
  top: 1px;
}

.order-form .timelimit {
  font-size: 14px;
  margin: 0 0 10px;
}

.timer {
  display: inline-block;
  background: url(../images/timerIcon2.png) no-repeat;
  padding-left: 14px;
  color: red;
  font-weight: 700;
  line-height: 15px;
}

@media screen and (max-width: 480px) {
  .order-form label {
    font-size: 14px;
  }

  .order-form button {
    font-size: 16px;
  }

  .order-form {
    padding: 20px 10px 10px 10px;
  }

  .order-form {
    border: 5px solid #d7d0ce;
    background: #ebece7;
  }

  .product img {
    width: 220px !important;
  }

  .product .natural_label {
    width: 90px !important;
  }
}

@media screen and (max-width: 459px) {
  .order-form input {
    width: 80%;
  }
}

@media screen and (max-width: 349px) {
  .order-form .top h2 {
    margin: 0;
  }

  .order-form input {
    font-size: 17px;
  }

  .order-form .frame {
    margin: 10px;
  }
}

* {
  margin: 0;
  padding: 0;
  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 {
  max-width: 1128px;
  margin: 0 auto;
}

.ttu {
  text-transform: uppercase;
}

.mr10 {
  margin-right: 10px;
}

.header {
  text-decoration: none !important;
}

.header__top-nav {
  padding: 0 15px;
}

.header__top {
  background-color: #fff;
  color: #1b1c1d;
  font-size: 14px;
}

.header__middle {
  background-color: #ff0000;
  color: #fff;
}

.header__bottom {
  background: #333;
  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;
  transition: color ease 0.3s;
}

.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 15px;
}

.header__middle-burger {
  cursor: pointer;
}

.header__middle-logo {
  display: inline-block;
  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;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
  cursor: pointer;
  margin-left: 35px;
  transition: box-shadow ease 0.2s;
}

.header__middle-login:hover {
  box-shadow: 0 0 0 2px #fff inset;
}

.header__middle-search,
.header__middle-login {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

.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;
  transition: border-color ease 0.3s;
}

.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("../fonts/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;
  animation: 1s pulse infinite alternate ease-in-out;
}

.button:hover {
  background-color: #c11f1f;
}

.link {
  display: inline-block;
  color: red;
  text-decoration: none;
  animation: 1s pulse infinite alternate ease-in-out;
  font-size: 22px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.95);
  }
}

@media all and (max-width: 1023px) {
  .header__bottom {
    display: none;
  }

  .page-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@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 25px;
  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;
  text-align: justify;
}

.article__figure {
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 25px auto;
}

.article__figure span {
  font-weight: bold;
}

.article__figure-pic {
  display: block;
  width: 100%;
}

.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;
}

.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;
  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;
  text-align: justify;
}

.comment__rew-pic {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-bottom: 15px;
}

.form__note {
  line-height: 24px !important;
}


@media all and (max-width: 767px) {

  .article__info-picture,
  .article__info-text {
    display: block;
    width: 100%;
  }

  .article__info-text {
    padding: 15px 0 0;
  }

  .comment__ava {
    height: 40px;
    width: 40px;
  }

  .comment__body {
    width: calc(100% - 40px);
    padding: 0 0 0 8px;
  }

  .header__top {
    display: none;
  }

  .comment__text,
  .article p {
    text-align: left;
  }
}

/**/

.article__date {
  display: inline-block;
  width: 115px;
  position: relative;
  padding-left: 25px;
}

.article__date::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(../images/clock.png) no-repeat;
  background-size: contain;
}

@media (max-width: 375px) {}

@media (max-width: 400px) {

  .article__date {
    font-size: 15px;
    width: 110px;
  }
}

.breadcrumbs {
  font-size: 15px;
  color: #717171;
  margin: 0 0 10px 0;
}

.product {
  position: relative;
  max-width: 280px;
  width: 100%;
  margin: 35px auto 15px;
}

.product img {
  width: 250px;
  margin: 0 auto;
  display: block;
}

.product .natural_label {
  position: absolute;
  width: 90px;
  right: 7px;
  top: -21px;
}

.reporter::before {
  content: "";
  border-radius: 50%;
  width: 75px;
  height: 75px;
  background-image: url(../images/reporter.jpg);
  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: "";
  border-radius: 50%;
  width: 75px;
  height: 75px;
  background-image: url(../images/info-pic_01.jpg);
  background-size: auto 100%;
  background-position-x: center;
  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 {
    display: none;
  }

  .article__subtitle {
    font-size: 24px;
  }

  .article__accent {
    font-size: 22px;
  }
}

.center {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
}

.inL_240740 {
  font-weight: bold;
  color: blue;
  text-decoration: none
}

.inL_15691 {
  margin-bottom: 0
}

.inL_46870 {
  margin-top: 8px
}

.inL_374556 {
  display: none;
}

.inL_200797 {
  display: block;
}