a {
  outline: none;
  cursor: pointer !important;
}

body {
  top: 0;
  color: #1b354a;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  font-size: 18px;
  line-height: 22px;
  margin: 0 auto;
  overflow-x: hidden;
  cursor: default;
}

a {
  text-decoration: underline;
  color: #00f;
  cursor: auto;
}

a:hover {
  color: #3434fd;
  text-decoration: none;
}

h1 {
  margin: 0 0 17px;
  font-family: sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #1b354a;
}

h2 {
  margin: 18px 0;
  font-family: sans-serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: normal;
  color: #1b354a;
}

img {
  max-width: 100%;
}

ul li,
ol li {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 10px;
}

p {
  margin: 0 0 20px;
}

.container {
  width: 1020px;
  position: relative;
  margin: 0 auto;
}

header {
  position: relative;
  width: 100%;
  background-color: #fff;
  padding: 10px 0;
}

.time {
  line-height: 20px;
  display: inline-block;
  font-size: 11px;
  font-family: sans-serif;
  color: #909090;
  margin-left: 15px;
}

.in {
  background: transparent url("") no-repeat scroll center center / 20px 20px;
}

.header_line_2 {
  margin-top: 0;
  text-align: center;
}

.links {
  padding-top: 5px;
  font-size: 0;
  position: relative;
  margin: 0 auto;
  display: inline-block;
}

.links li {
  font-family: sans-serif;
  font-size: 14px;
  display: inline-block;
  margin-right: 15px;
  cursor: pointer;
  letter-spacing: 0.9px;
  margin-bottom: 0;
}

.links li a {
  color: #1b354a;
  text-decoration: none;
}

.links li a:hover {
  color: #5296db;
}

.links li:nth-child(1) {
  margin-right: 11px;
}

.links li:nth-child(2) {
  margin-right: 11px;
}

.links li:last-child {
  margin-right: 0;
}

.chosen_link {
  border-radius: 3px;
  border: 2px solid #05519d;
  padding: 4px;
}

.wr-search {
  float: right;
  margin-top: 5px;
}

.search {
  width: 25px;
  height: 25px;
  background: transparent url("../images/search.svg") no-repeat scroll center center / contain;
  vertical-align: top;
  margin-right: 10px;
  border-radius: 2px;
  cursor: pointer;
}

.search:hover {
  opacity: 0.7;
}

.text_section {
  position: relative;
  width: 100%;
  background: #260701;
  padding-bottom: 10px;
  border-top: 5px solid #260701;
}

.white_base {
  position: relative;
}

.base {
  padding: 40px 40px 20px;
  width: 940px;
  background-color: #fff;
  overflow: hidden;
}

.comments {
  position: relative;
  margin-top: 40px;
}

.footer__prod {
  max-width: 190px;
  width: 100%;
  margin: 20px auto;
  display: block;
}

.link {
  position: relative;
  margin: 30px auto 0;
  width: 300px;
  height: 71px;
  background: transparent url("") no-repeat scroll 0% 0%;
}

.link a {
  display: block;
  text-align: center;
  height: 100%;
  color: #666;
}

.submit {
  margin-top: 10px;
  height: 50px;
  width: 400px;
  background-color: #b22222;
  color: #fff;
  font-size: 30px;
  border-radius: 3px;
}


input {
  font-family: sans-serif;
  font-size: inherit;
  line-height: inherit;
}

b {
  font-family: sans-serif;
}

input[type='submit']:hover {
  background: #b00 !important;
  transition: background 0.3s;
}

input[type='submit']:active {
  transform: translateY(2px);
  box-shadow: none !important;
}

@media screen and (max-width: 1019px) {
  img {
    max-width: 100%;
  }

  .time {
    display: block;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .header_line_2 {
    text-align: center;
  }

  .base {
    width: calc(100% - 50px);
    padding-right: 15px;
    padding-left: 15px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .container {
    width: 100% !important;
  }

  .links {
    overflow: hidden;
    padding: 0;
    margin: 0;
  }
}

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

  p {
    text-align: left;
  }
}

.comments h2 {
  font-size: 30px;
  margin-bottom: 35px;
}

@-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: '';
  }
}

@media screen and (max-width: 320px) {

  .base p {
    font-size: 16px;
  }
}


.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

input::placeholder {
  font-size: 15px !important;
}

.vk-comment-load {
  margin-bottom: 15px;
  position: relative;
  border-bottom: 1px solid #dae1e8;
  padding-bottom: 15px;
}

.answer {
  padding-left: 40px;
}

.vk-comment-load:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.vk-comment-name {
  color: #a40000;
  font-weight: bold;
  font-size: 18px;
  margin-left: 59px;
}

.vk-avatar img {
  width: 45px !important;
  height: 45px;
}

.vk-avatar img {
  float: left;
  margin-right: 10px;
  border-radius: 1.575em;
}

.vk-comment-text p {
  margin-bottom: 0;
  margin-top: 5px;
  font-size: 18px;
}

.comment__date {
  font-size: 18px;
  display: block;
  margin-top: 5px;
}

.vk-comment-text {
  margin-left: 59px;
}

.vk-comment-text img {
  max-width: 300px;
  width: 100%;
  margin-top: 5px;
  display: block;
}


.base {
  padding-top: 10px;
}

.headline {
  font-weight: bold;
  font-size: 44px;
  line-height: 48px;
  margin: 20px 0;
}

input {
  font-size: 14px;
}

@media (max-width: 1019px) {
  .base h1 {
    margin-top: 0 !important;
  }
}

@media (max-width: 767px) {
  .headline {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 480px) {
  .time {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 320px) {

  p {
    font-size: 16px;
  }
}

body * {
  font-family: sans-serif;
}

p,
ul li,
ol li {
  font-size: 20px;
  line-height: 1.3;
}

input[value='ÐŸÐ¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð±ÐµÑÐ¿Ð»Ð°Ñ‚Ð½Ð¾']:hover {
  background: #bb0000 !important;
  transition: background 0.3s;
}

input[value='ÐŸÐ¾Ð»ÑƒÑ‡Ð¸Ñ‚ÑŒ Ð±ÐµÑÐ¿Ð»Ð°Ñ‚Ð½Ð¾']:active {
  transform: translateY(2px);
  box-shadow: none !important;
}

.red-link {
  text-decoration: none !important;
  font-weight: bold;
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #d74000 !important;
  font-size: 25px;
  line-height: 1.4em;
  font-weight: 700;
  max-width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.red-link:hover {
  text-decoration: underline;
}

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

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

  25% {
    content: ">";
  }

  50% {
    content: ">>";
  }

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

  100% {
    content: "";
  }
}

.tcenter {
  text-align: center;
}

.red {
  color: red
}

.order {
  display: flex;
  align-items: center;
  justify-content: center;

}

.order__product {
  max-width: 250px;
  width: 100%;
  padding: 0 25px;
  box-sizing: border-box;
}

.product-img {
  display: block;
  margin: 0 auto;
  max-width: 250px;
  width: 100%;
  padding: 0 25px;
}

.order__form {
  max-width: 350px;
  width: 100%;
}

.form__input {
  width: 100%;
  margin-bottom: 15px;
}

.form__btn {
  width: 100%;
}

.btn {
  display: inline-block;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  background: rgb(229, 0, 38);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-family: inherit;
  border-radius: 5px;
  transition: all 400ms;
  box-shadow: 0 0 15px #000;
}

.btn:hover {
  color: #fff;
  background: rgb(123, 27, 43);
}


.input {
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}

.price {
  display: flex;
  justify-content: center;
  padding: 5px;
  background: #f3f3f3;
  border-radius: 10px;
  margin: 15px 0;
}

.price__item {
  padding: 0 7px;
  text-align: center;
  width: 50%;
}

.price__item-title {
  font-weight: 700;
  margin-bottom: 10px;
}

.price__item--old {
  border-right: 1px solid #ddd;
}

.price__item-value--old {
  text-decoration: line-through;
  font-size: 22px;
  color: gray;
}

.price__item-value--new {
  color: red;
  font-weight: 700;
  font-size: 26px;
  text-shadow: 0 0 1px darkred;
}

.inL_161999 {
  color: rgb(5, 81, 157);
}

.inL_16769 {
  font-size: 13px;
  color: gray
}

.inL_825695 {
  color: red
}

.inL_91874 {
  width: 100%;
  max-width: 700px;
}

.inL_647557 {
  color: #3333fa
}

.inL_674154 {
  width: 100%;
  max-width: 700px;
  margin-bottom: 20px;
}

.inL_639404 {
  color: #3333fa
}

.inL_150154 {
  padding: 10px;
  background-color: rgb(234, 220, 192);
  color: red
}

.inL_632023 {
  width: 100%;
  max-width: 700px;
  margin-bottom: 20px;
}

.inL_349321 {
  color: #3333fa
}

.inL_686566 {
  width: 100%;
  max-width: 700px;
  margin-bottom: 20px;
}

.inL_772860 {
  color: #3333fa
}

.inL_980157 {
  color: #3333fa
}

.inL_869643 {
  width: 100%;
  max-width: 700px;
  margin-bottom: 20px;
}

.inL_382677 {
  color: #3333fa
}

.inL_94537 {
  color: #3333fa
}

.inL_279947 {
  width: 100%;
  max-width: 700px;
}

.inL_968717 {
  color: #7611ff
}

.inL_891826 {
  max-width: 500px;
  width: 100%
}

.inL_535731 {
  color: #7611ff
}

.inL_612011 {
  max-width: 500px;
  width: 100%
}

.inL_574693 {
  color: #7611ff
}

.inL_411215 {
  color: #7611ff
}

.inL_681153 {
  padding: 10px;
  background-color: rgb(234, 220, 192)
}

.inL_66183 {
  color: #7611ff
}

.inL_479069 {
  max-width: 200px;
  width: 100%;
}

.inL_977209 {
  text-align: center;
}

.inL_640365 {
  font-weight: bold;
}

.inL_784325 {
  font-weight: bold;
}

.inL_312876 {
  font-weight: bold;
}

.inL_261817 {
  padding: 10px;
  background-color: rgb(234, 220, 192)
}

.inL_359709 {
  color: #7611ff
}

.inL_930901 {
  color: #7611ff
}

.content__center {
  display: block;
  text-align: center;
}

.figcaption {
  text-align: center;
  font-size: 16px;
  line-height: 1.3;
}

.inL_278419 {
  text-transform: uppercase;
  background: red;
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  font-weight: bold;
  padding: 15px;
  margin: auto;
  display: block;
  max-width: 320px;
  transition: .3s background;
  width: 100%;
  text-align: center
}

.inL_278419:hover {
  color: white;
  background: rgb(141, 0, 0);
}

.inL_451857 {
  text-align: center;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .header_line_2 {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 0;
    text-align: left;
  }

  .links li:last-child {
    display: none;
  }

  .search {
    margin-right: 0;
    width: 22px;
    height: 22px;
  }

  .order {
    display: block;
  }

  .order__product {
    padding: 0;
    margin: 0 auto 20px;
    max-width: 190px;
    display: block;
  }

  .order__form {
    margin: 0 auto;
  }

  .links li:nth-child(n+5) {
    display: none;
  }

  .vk-comment-text img {
    max-width: 270px;
  }
  
  .links {
    height: 30px;
  }
  
  .inL_479069 {
    max-width: 180px;
  }

  p, ul li, ol li {
    font-size: 18px;
  }

  p,
  .inL_869643,
  .inL_686566,
  .inL_632023, 
  .inL_674154 {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 520px) {
  .links li:nth-child(n+5) {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .links li:nth-child(n+4) {
    display: none;
  }

  .comments h2 {
    font-size: 25px;
  }

  .vk-comment-text {
    margin-left: 0;
  }

  .headline {
    font-size: 23px;
    line-height: 29px;
  }

  .base {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }

  .text_section {
    padding-bottom: 0;
  }

  h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  .order__product,
  .footer__prod {
    max-width: 160px;
  }
  
  .inL_479069 {
    max-width: 160px;
  }

  .red-link {
    font-size: 22px;
  }

  ul,
  ol {
    padding-left: 25px;
  }

  p, ul li, ol li {
    font-size: 16px;
  }

  .vk-comment-text p,
  .vk-comment-name,
  .comment__date {
    font-size: 16px;
  }

  .vk-comment-text img {
    max-width: 250px;
  }

}

@media screen and (max-width: 360px) {
  .links li:first-child {
    display: none;
  }

  
  .inL_479069 {
    max-width: 140px;
  }

  .inL_278419 {
    max-width: 275px;
  }
}