@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

 .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}
form .card{
  display: none !important;
}


.tags{
    margin-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.tags__title{
  font-weight: bold;
  display: inline-block;
}
.tags__item{
  display: inline-block;
  margin: 5px;
  background-color: #fff;
  border-radius: 4px;
  padding: 2px 0 3px;
  color: #aeaeae;
  font-size: 14px;/*
  -webkit-transition: background-color .2s ease;
  -o-transition: background-color .2s ease;
  transition: background-color .2s ease;*/
}
.tags__item:hover{
  /*background-color: #d4383a;*/
  /*text-decoration: none;*/
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0,-100%,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%,0,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px,0,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%,0,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px,0,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0,100%,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0,2000px,0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0,100%,0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0,2000px,0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%,0,0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px,0,0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%,0,0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px,0,0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0,-100%,0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0,-2000px,0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0,-100%,0);
    visibility: visible;
  }

  to {
    transform: translate3d(0,0,0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%,0,0);
    visibility: visible;
  }

  to {
    transform: translate3d(0,0,0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%,0,0);
    visibility: visible;
  }

  to {
    transform: translate3d(0,0,0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0,100%,0);
    visibility: visible;
  }

  to {
    transform: translate3d(0,0,0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0,100%,0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%,0,0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%,0,0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0,0,0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0,-100%,0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

.delay100 {
  -webkit-animation-delay: .1s;
  animation-delay: .1s;
}

.delay200 {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

.delay300 {
  -webkit-animation-delay: .3s;
  animation-delay: .3s;
}

.delay400 {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.delay500 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.delay600 {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.delay700 {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

.delay800 {
  -webkit-animation-delay: .8s;
  animation-delay: .8s;
}

.delay900 {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
}

.delay1000 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.delay1200 {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.delay1400 {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.delay1600 {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.delay1800 {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.delay2000 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.delay2400 {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.delay3000 {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.Unpc {
  display: none!important;
}

.slider {
  height: 560px;
  overflow: hidden;
  position: relative;
  padding-bottom: 56px;
}

.slider .bann_img {
  height: 560px;
  width: 1366px;
  position: absolute;
  left: 0;
  right: 0;
  margin: autotop:0;
}

.slider .slide_nav {
  position: absolute;
  bottom: 24px;
  width: 100%;
  text-align: center;
  left: 0;
  z-index: 4;
}

.slider .slide_nav a {
  display: inline-block;
  width: 9px;
  height: 9px;
  line-height: 99;
  overflow: hidden;
  border-radius: 50%;
  border: 1px #707070 solid;
  background: url(about:blank);
  margin-right: 14px;
}

.slider .slide_nav a.on {
  background-color: #c70025;
}

.slider .arrs {
  width: 60px;
  height: 60px;
  background: url(../img/slider_btn_new.png) no-repeat;
  position: absolute;
  top: 50%;
  margin-top: -55px;
  left: 2%;
  opacity: 0;
  z-index: 10;
}

.slider .arr_next {
  background-position: -60px 0;
  left: auto;
  right: 2%;
}

.slider:hover .arrs {
  opacity: 1;
}

#menus {
  position: absolute;
  bottom: 112px;
  left: 50%;
  margin-left: -569px;
  width: 576px;
  height: 100px;
}

#menus div {
  width: 95px;
  height: 110px;
  margin: 0 7px;
  position: relative;
  cursor: default;
  float: left;
  line-height: 20px;
}

#menus div img {
  position: absolute;
  top: 0;
  left: 19px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

#menus div p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 105px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-animation: fadeIn .8s 1s both;
  animation: fadeIn .8s 1s both;
}

#menus .m_act .circle {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

#menus .m_act p {
  color: #fff;
}

#menus .m_act .lv_w {
  opacity: 0;
}

.slider .info {
  position: absolute;
  left: 130px;
  top: 70px;
}

.slider .car {
  position: absolute;
  top: 40px;
  right: 140px;
  -webkit-animation-duration: 3.4s;
  animation-duration: 3.4s;
}

.slider .box,
.slider .box2 {
  position: absolute;
  bottom: 118px;
  left: 51%;
  margin-left: -150px;
  z-index: 5;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.slider .box2 {
  z-index: 6;
  -webkit-animation: cargos 6s ease-out 3s infinite both;
  animation: cargos 6s ease-out 3s infinite both;
}

.sa_arra {
  position: absolute;
  bottom: 135px;
  z-index: 10;
  left: 50%;
  margin-left: -100px;
  -webkit-animation: saarr 2s ease-out 3.2s infinite both;
  animation: saarr 2s ease-out 3.2s infinite both;
}

.sa_arrb {
  position: absolute;
  bottom: 135px;
  z-index: 10;
  left: 50%;
  margin-left: 30px;
  -webkit-animation: saarr 2s ease-out 3.2s infinite both;
  animation: saarr 2s ease-out 3.2s infinite both;
}

.slider .animated {
  position: absolute;
}

@-webkit-keyframes cargos {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-60px);
  }

  10% {
    opacity: 1;
  }

  70% {
    -webkit-transform: translateY(0);
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
  }
}

@keyframes cargos {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }

  10% {
    opacity: 1;
  }

  70% {
    transform: translateY(0);
  }

  85% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@-webkit-keyframes saarr {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(0);
  }
}

@keyframes saarr {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3,1.3);
  transform: scale(1.3,1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

@font-face {
  font-family: "PT Sans";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/PTSansRegular/PTSansRegular.eot);
  src: url(../fonts/PTSansRegular/PTSansRegular.eot?#iefix) format("embedded-opentype"),url(../fonts/PTSansRegular/PTSansRegular.woff) format("woff"),url(../fonts/PTSansRegular/PTSansRegular.ttf) format("truetype");
}

@font-face {
  font-family: "PT Sans";
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/PTSansBold/PTSansBold.eot);
  src: url(../fonts/PTSansBold/PTSansBold.eot?#iefix) format("embedded-opentype"),url(../fonts/PTSansBold/PTSansBold.woff) format("woff"),url(../fonts/PTSansBold/PTSansBold.ttf) format("truetype");
}

.red {
  color: #ba0105;
}

.bold {
  font-weight: 700;
}

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

::-webkit-input-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

:-moz-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

::-moz-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

:-ms-input-placeholder {
  color: #5e5d5d;
  opacity: 1;
  font-style: italic;
}

address,
article,
aside,
audio,
body,
canvas,
caption,
div,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
html,
iframe,
img,
label,
li,
mark,
nav,
object,
ol,
p,
section,
small,
span,
strong,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
  outline: 0;
  line-height: initial;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: #868686;
}

body input:required:valid,
body textarea:required:valid {
  color: #868686;
}

html {
  height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-size: 16px;
  min-width: 320px;
  position: relative;
  line-height: 1.75;
  font-family: "PT Sans",sans-serif;
  color: #555;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: 0 0;
  text-decoration: none;
  outline: 0;
  color: #ba0105;
  -webkit-transition: color .2s ease-out;
  transition: color .2s ease-out;
}

a:hover {
  text-decoration: underline;
}

::-moz-selection {
  background: #6daef0;
  color: #fff;
}

::selection {
  background: #6daef0;
  color: #fff;
}

::-moz-selection {
  background: #6daef0;
  color: #fff;
}

.nav {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(58.333333333333336% - 30px);
  width: calc(58.333333333333336% - 30px);
}

.nav__hider {
  position: absolute;
  width: 100%;
  height: 52px;
  margin-top: -52px;
  z-index: 100;
}

.nav__close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
}

.nav__list {
  padding: 0;
}

.nav__list::after {
  display: block;
  content: "";
  clear: both;
}

.nav__list>li {
  float: left;
  position: relative;
  padding-right: 2.5%;
}

.nav__list>li:hover>ul {
  max-height: 10000px;
  opacity: 1;
  overflow: visible;
}

.nav__list li>a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 15px;
  position: relative;
  line-height: 90px;
  color: #555;
}

.nav__list li>a:hover {
  color: #ba0105;
}

.nav__list li>a+ul {
  max-height: 0;
  overflow: hidden;
  width: 160px;
  padding: 8px;
  position: absolute;
  top: 90px;
  left: 50%;
  margin-left: -85px;
  background-color: #ba0105;
  opacity: 0;
  display: block;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}

.nav__list li>a+ul li {
  line-height: 25px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.nav__list li>a+ul li ul {
  width: 160px;
  position: absolute;
  left: 152px;
  top: -2px;
  margin: 0;
  text-align: left;
  max-height: 10000px;
  background: #fff;
  border: 2px solid #ba0105;
  z-index: 0;
}

.nav__list li>a+ul li ul li:last-child a {
  border: none;
}

.nav__list li>a+ul li ul a {
  color: #ba0105;
  border-bottom: 1px solid #fe898b;
}

.nav__list li>a+ul li ul a:hover {
  background: #ba0105;
  color: #fff;
}

.nav__list li>a+ul li>a {
  display: block;
  color: #fff;
  font-size: 15px;
  padding: 3px 5px;
  line-height: 1.4;
}

.nav__list li>a+ul li>a:hover {
  background: #fff;
  color: #ba0105;
}

.nav__list li>a+ul li:hover {
  z-index: 100;
}

.nav__list li>a+ul li:hover>ul {
  opacity: 1;
  z-index: 100;
}

.nav ul {
  list-style-type: none;
}

.nav a:hover {
  text-decoration: none;
}

.nav__zero-level>.nav__parent>a::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px transparent solid;
  border-right: 4px transparent solid;
  border-top: 6px #c9c9c9 solid;
  position: absolute;
  bottom: 17px;
  left: 50%;
  margin-left: -4px;
}
ul.nav__list.nav__zero-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media only screen and (max-width:992px) {
ul.nav__list.nav__zero-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}
}
.get-back {
  position: absolute;
  top: -33px;
  width: 50%;
  margin-left: 20px;
  text-transform: uppercase;
  font-size: 14px;
  color: #5e5d5d;
  letter-spacing: 1px;
}

.get-back_first {
  left: 100%;
}

.get-back_second {
  left: 200%;
}

.get-back_third {
  left: 300%;
}

.get-back_fourth {
  left: 400%;
}

body {
  color: #555;
}

.header {
  max-width: 1366px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding: 0 20px;
  background: #fff;
  position: relative;
  z-index: 100;
}

.header__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.header__info {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
  padding-top: 15px;
  padding-bottom: 15px;
}

.header__contact {
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  float: left;
  padding-left: 15px;
  text-align: center;
}

.header__contact .bold {
  margin-bottom: 3px;
  line-height: 1;
  font-size: 20px;
  display: block;
  max-height: 23px;
  width: 100%;
  height: 23px;
  max-width: 200px;
  /*background: url(../img/heli_phone.png) no-repeat top center;*/
  background-size: contain;
}

.header .button {
  line-height: 32px;
  padding: 0 10px;
}

.logo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(16.666666666666668% - 30px);
  width: calc(16.666666666666668% - 30px);
  padding-top: 24px;
}

.logo a {
  display: block;
  width: 100%;
  min-height: 40px;
  background: url(../img/logo.jpg) no-repeat center/contain;
}

.search {
  float: left;
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
}

.search__icon {
  position: relative;
  padding-top: 8px;
  width: 100%;
  height: 100%;
  border: 2px solid #e4e4e4;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  z-index: 10;
}

.search__icon img {
  max-width: 24px;
}

.search__window {
  display: none;
  position: absolute;
  top: 58px;
  right: 0;
  width: 320px;
  height: 40px;
  background: #e4e4e4;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.search:hover .search__window {
  display: block;
}

.search:hover .search__icon {
  background: #f6f6f6;
}

.search input {
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  height: 40px;
  border: 1px solid #e4e4e4;
  padding: 5px 10px;
  background: #fff;
}

.search .button-search {
  width: 60px;
  float: right;
  line-height: 42px;
  color: #fff;
  background: #ba0105;
  text-align: center;
  height: 40px;
  font-size: 14px;
  cursor: pointer;
}

.search .button-search:hover {
  background-color: #a10104;
}

.mobile-trigger {
  display: none;
  position: absolute;
  top: 40%;
  right: 15px;
  width: 25px;
  height: 20px;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.mobile-trigger span {
  display: block;
  position: absolute;
  height: 20%;
  width: 100%;
  background: #555;
  -webkit-border-radius: 9px;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.mobile-trigger span:nth-child(1) {
  top: 0;
}

.mobile-trigger span:nth-child(2),
.mobile-trigger span:nth-child(3) {
  top: 40%;
}

.mobile-trigger span:nth-child(4) {
  top: 80%;
}

.mobile-trigger.open span:nth-child(1) {
  top: 40%;
  width: 0%;
  left: 50%;
}

.mobile-trigger.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-trigger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mobile-trigger.open span:nth-child(4) {
  top: 40%;
  width: 0%;
  left: 50%;
}

.section__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 30px;
}

.section__body_no-padding {
  padding: 20px 0;
}

.advantages {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.advantages__item {
  width: -webkit-calc(100% / 7 - 10px);
  width: calc(100% / 7 - 10px);
  margin: 0 5px;
  text-align: center;
  position: relative;
}

.advantages__item:last-child img {
  max-height: 110px;
}

.advantages__item:last-child .advantages__title {
  margin-top: -20px;
}

.advantages img {
  max-height: 90px;
}

.advantages__title {
  display: block;
  margin-top: -10px;
  width: 100%;
  text-align: center;
  font-size: 12px;
}

.categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin: 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.categories__item {
  position: relative;
  width: -webkit-calc(33.333% - 15px);
  width: calc(33.333% - 15px);
  margin: 0 10px 10px;
  text-align: center;
  background: #e8e8e8;
  overflow: hidden;
  border: 10px solid transparent;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.categories__item:nth-child(3n+2) {
  margin: 0 0 10px;
}

.categories__item:hover {
  border-color: #e00038;
}

.categories__item:hover .categories__title {
  -webkit-box-shadow: 0 0 0 100px rgba(0,0,0,.6);
  box-shadow: 0 0 0 100px rgba(0,0,0,.6);
}

.categories__item:hover .categories__title::after {
  opacity: 1;
}

.categories__title {
  display: block;
  width: 100%;
  max-width: 260px;
  font-size: 22px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  padding: 10px;
  letter-spacing: 1px;
  color: #fff;
  background: rgba(0,0,0,.6);
  -webkit-transform: translate3D(0,-50%,0);
  -ms-transform: translate3D(0,-50%,0);
  transform: translate3D(0,-50%,0);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 10;
}

.categories__title::after {
  content: 'Подробнее >';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.article h1,
.article__title {
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 2rem;
}

.article__title {
  text-align: left;
}

.article p {
  font-size: 15px;
  line-height: 25px;
}

.article p+p {
  padding-top: 25px;
}

.article p+blockquote {
  margin-top: 25px;
}

.article h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 30px;
}

.article h2 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 20px;
}

.article blockquote {
  position: relative;
  display: block;
  line-height: 25px;
  margin: 1rem auto;
  padding-left: 20px;
  padding-right: 40px;
  font-style: italic;
  border-left: 2px solid #e4e4e4;
  font-size: 15px;
}

.article__sku{
  font-size: 12px!important;
  color: #9e9e9e;
}

.article__available{
  font-size: 14px!important;
  padding-top: 0!important;
}

.article__available img{
  max-width: 16px;
  margin-right: 5px;
  vertical-align: text-top;
}

/*
.advantages_new {
  max-width: 430px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}

.advantages_new .advantages__item{
  max-width: 50%;
  width: 100%;
  margin: 0;
  display: inline-block;
  padding: 0 28px;
  margin-bottom: 20px;
  text-align: center;
}
*/
.advantages_new {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: space-between;
}
.advantages_new .advantages__item{
  max-width: 25%;
  width: 100%;
  margin: 0;
  display: inline-block;
  padding: 0 28px;
  margin-bottom: 20px;
  text-align: center;
}
@media(max-width:767px){
.advantages_new .advantages__item{
  max-width: 50%;
}	
}

.advantages_new .advantages__item:last-child .advantages__title{
  margin-top: 0;
}

.advantages_new img{
  max-width: 60%;
  max-height: 60%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.advantages_new .advantages__image{
  position: relative;
  border-radius: 50%;
  background-color: #f7f7f7;
  text-align: center;
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 10px;
}

.advantages_new .advantages__title{
  font-size: 16px;
  margin-top: 0;
  width: 100%;
  display: block;
}

.green{
  color: #8cc14c;
  font-weight: bold;
}

.article__excerpt{
  padding: 0!important;
  font-size: 16px;
}

.article__buttons{
  display: flex;
  width: 100%; 
  max-width: 420px;
  margin-top: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.button_half{
  width: calc(50% - 2.5px);
  margin-right: 5px;
}

.button_half + .button_half{
  margin-right: 0;
}

.article__buttons .button{
  margin-bottom: 5px;
  text-align: center;
}

.article_item {
  margin-top: 1rem;
}

.article_info h1 {
  font-size: 32px;
}

.article ul {
  list-style-type: none;
  margin: 14px 0;
}

.article li {
  display: block;
}

.article li::before {
  content: '\00B7';
  display: inline-block;
  margin-right: 10px;
  font-size: 3rem;
  color: #ba0105;
  vertical-align: middle;
  padding-bottom: 9px;
  line-height: .6;
}

.article table {
  width: 100%!important;
  margin-top: 15px;
  border-spacing: 0;
}

.article table thead h3 {
  display: block;
  margin: 5px auto;
  text-align: center;
}

.article table td,
.article table th {
  line-height: 30px;
  font-size: 15px;
  vertical-align: middle;
}

.article table th,
.article table thead tr {
  background: #ba0105;
  color: #fff;
  font-weight: 400;
  border: 1px solid #ba0105;
  border-right: 1px solid #c4c3c3;
}

.article table th{
  vertical-align: middle;
    line-height: 1.2;
    padding: 10px;
    max-width: 180px;
}

.article table tr td:last-child{
  min-width: 140px;
}

.article table th:last-child,
.article table thead tr:last-child {
  border-right: none;
}

.article table tbody {
  border: 1px solid #e4e4e4;
}

.article table tbody tr:nth-child(odd) td {
  background: #f6f6f6;
}

.article table tbody td {
  min-width: 84px;
  padding: 0 20px;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  border-top: none;
}

.article table tbody tr:first-child td{
  border-top: 1px solid #e4e4e4;
}

.article table tbody td:first-child {
  border-left: 1px solid #e4e4e4;
}

.cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.cols__col {
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
}

.cols_three .cols__col {
  width: -webkit-calc(33.333333333333336% - 30px);
  width: calc(33.333333333333336% - 30px);
}

.cols_two .cols__col {
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.footer {
  margin-top: 30px;
  background: #f6f6f6;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  padding: 20px 0 40px;
}

.footer__bottom {
  background: #ba0105;
  color: #fff;
}

.footer__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

.footer__copyright {
  line-height: 72px;
}

.footer__title {
  display: block;
  font-size: 18px;
  color: #ba0105;
  padding-bottom: 14px;
  padding-top: 5px;
  font-weight: 700;
  border-bottom: 1px solid #e4e4e4;
}

.footer__col {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.footer__col_form .footer__title {
  font-size: 24px;
  border-bottom: 0;
  padding-top: 0;
  padding-bottom: 10px;
}

.footer__col_form p {
  font-size: 12px;
  margin-top: 10px;
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer li {
  display: block;
  width: 100%;
  margin: 12px auto;
}

.footer a {
  color: #555;
}

.footer_mapped {
  position: relative;
  padding-left: 18px;
}

.footer_mapped i {
  position: absolute;
  top: 4px;
  left: 0;
}

.gotop {
  line-height: 72px;
  float: right;
  color: #fff;
  position: relative;
  display: block;
  padding-right: 60px;
}

.gotop:hover i {
  border-color: rgba(255,255,255,.6);
}

form input,
form textarea {
  width: 100%;
  min-height: 30px;
  margin-bottom: 10px;
  padding-left: 10px;
  line-height: 30px;
  border: 1px solid #e4e4e4;
  color: #555;
  outline: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #ba0105;
}

.icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-bottom: -2px;
  background-size: contain;
}

.icon_map {
  background: url(../img/icons/map.svg);
}

.icon_mail {
  background: url(../img/icons/email.svg);
}

.icon_phone {
  background: url(../img/icons/phone.svg);
}

.icon_top {
  position: absolute;
  right: 0;
  top: 14px;
  width: 43px;
  height: 43px;
  border: 2px solid #fff;
  background: url(../img/icons/arrow.svg) no-repeat center;
  background-size: 60%;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.slider {
  position: relative;
  z-index: 0;
}

.slider__body {
  width: 1366px;
  background: #555;
  min-height: 560px;
  position: relative;
  margin: auto;
  overflow: hidden;
}


.slider__info {
  width: 360px;
  position: absolute;
  left: 130px;
  top: 70px;
  color: #fff;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 30px;
  padding-top: 10px;
  z-index: 100;
}

.slider__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 4rem;
  margin-bottom: 20px;
}

.slider_category .slider__title{
  display: block;
  line-height: 2rem;
  margin-bottom: 20px;
}

.article__banners{
  margin: 10px auto;
}

.article__banners img{
  vertical-align: top;
  border: 1px solid #e4e4e4;
  margin-bottom: 10px;
}

.slider__text {
  font-size: 16px;
}

.slider_category {
  height: 410px;
}

.slider_category .slider__body {
  min-height: 410px;
}

.slider_category img {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -683px;
  width: 1366px;
  height: 100%;
  max-width: none;
}

.slider_category .slider__info {
  max-width: 100%;
  background: rgba(186,1,5,.6);
  padding: 50px 20px 60px;
  border: none;
}

.slider_home {
  text-shadow: 0 1px 7px rgba(0,0,0,.42);
}

.slider_item {
  height: auto;
  min-height: 470px;
  padding-bottom: 0;
  background: #fff;
  border-top: 2px solid #e4e4e4;
}

.slider_item .slider__body {
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  min-height: 400px;
  background: 0 0;
}

.slider_item .slider__info {
  display: block;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  border: none;
  padding: 0;
  margin: auto;
  text-align: center;
  width: 100%;
  color: #555;
  padding-top: 30px;
  padding-bottom: 30px;
}

.slider_item .slider__title {
  line-height: 1.4;
}


.slider__body_china{
  max-width: 100%;
}

.slider__body_china img{
      left: 0;
    right: 0;
    margin: auto;
  height: auto;
  top: 50%;
  -webkit-transform: translate3D(0, -50%, 0);
  -ms-transform: translate3D(0, -50%, 0);
  -o-transform: translate3D(0, -50%, 0);
  transform: translate3D(0, -50%, 0);
}

.slider__body_china .slider__info{
  z-index: 1;
}

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

.slider__subtitle{
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}

.slider__form{
  width: 360px;
  position: absolute;
  right: 130px;
  top: 40px;
  background-color: white;
  padding: 30px 20px;
  color: black;
  z-index: 1;
}

.slider__form textarea{
  max-height: 70px;
  font-family: Arial;
}

.slider_category .slider__body_china{
  min-height: 560px;
}

.slider_china{
  height: 560px;
}

.slider__form p{
  font-size: 12px;
  display: block;
  margin-top: 10px;
}


/*.related__title {
  display: inline-block;
  line-height: 50px;
  background: #ba0105;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  padding: 0 60px 0 10px;
  margin-bottom: 2rem;
}*/

.related__title{
  display: inline-block;
  color: #ba0105;
  font-weight: 700;
    font-size: 24px;
}

.related__slider .item {
  margin-left: 0;
  margin-right: 0;
}

.photos__item {
  max-height: 350px;
  text-align: center;
}

.photos img {
  max-height: 100%;
  width: auto!important;
  margin: auto;
}

.content__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  max-width: 1080px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  padding-top: 25px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e4e4e4;
}

.content__body_product {
  border-bottom: none;
}

.sidebar {
  margin-bottom: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.category {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(75% - 30px);
  width: calc(75% - 30px);
  padding-bottom: 35px;
  border-left: 1px solid #e4e4e4;
  padding-left: 15px;
}

.category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.category__nothing {
  text-align: left;
  padding-top: 30px;
  font-size: 28px;
  font-weight: 700;
  padding-left: 15px;
}

.category__nothing p {
  font-size: 16px;
  display: block;
  margin-top: 10px;
  font-weight: 400;
  margin-bottom: 20px;
}

.category_full {
  width: 100%;
  padding-left: 0;
  border: none;
}

.category_full .item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.widget {
  position: relative;
}

.widget__title {
  position: absolute;
  display: block;
  top: 25px;
  left: 30px;
  max-width: 150px;
  color: #ba0105;
}

.menu {
  width: 100%;
  position: relative;
  margin-top: -15px;
  margin-bottom: 2rem;
}

.menu ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.menu__list>li>a {
  font-size: 20px;
  font-weight: 700;
  line-height: 56px;
  color: #555;
}

.menu__list>li>ul>li>a {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #555;
  padding-left: 10px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.menu__list>li>ul>li>ul a {
  display: block;
  font-size: 14px;
  padding-left: 10px;
  margin-bottom: 5px;
  line-height: 24px;
  font-weight: 400;
}

.menu__list>li>ul>li.active a {
  color: #ba0105;
}

.menu__list>li>ul>li.active a::after {
  background: url(../img/icons/next_red.svg) center no-repeat;
  background-size: contain;
}

.menu__parent>ul {
  display: none;
}

.menu__parent>a::after {
  content: '';
  display: inline-block;
  margin-left: 5px;
  width: 14px;
  height: 10px;
  background: url(../img/icons/next.svg) center no-repeat;
  opacity: .5;
  background-size: contain;
}

.menu__parent.active {
  margin-bottom: 10px;
}

.menu__parent.active>ul {
  display: block;
}

.menu__parent.active>a::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.menu__parent_last>a {
  color: #5e5d5d!important;
}

.menu__parent_last a {
  color: #5e5d5d!important;
}

.menu__parent_last.active>a {
  color: #ba0105!important;
}

.menu__parent_last.active .active a {
  color: #ba0105!important;
}

.filter {
  position: relative;
  padding-bottom: 20px;
}

.filter .button {
  position: absolute;
  bottom: 10px;
  left: 0;
}

.filter .box-filter {
  width: 100%;
  margin-bottom: 25px;
  font-size: 14px;
}

.filter .box-filter>li {
  width: 70%;
  display: inline-block;
}

.filter .box-filter>li>span {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.filter .box-filter>li+li {
  border-left: 1px solid #e4e4e4;
  padding-left: 20px;
  width: 30%;
}

.filter label {
  width: 160px;
  padding: 10px 0;
  min-height: 20px;
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
}

.filter label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  border: 1px solid #e4e4e4;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.filter label:hover::before {
  background: #ffbbbd;
  outline: 1px solid #e4e4e4;
  border: 2px solid #fff;
}

.filter input {
  display: none;
}

.filter ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  list-style-type: none;
  margin: auto;
}

.filter input[type=checkbox]:checked+label::before {
  background: #ba0105;
  outline: 1px solid #e4e4e4;
  border: 2px solid #fff;
}

.breadcrumb {
  width: 100%;
  padding: 10px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  color: #5e5d5d;
}

.breadcrumb a {
  color: #5e5d5d;
}

.breadcrumb__last {
  color: #ba0105;
}

.breadcrumb_margin {
  margin-bottom: 20px;
}

.item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(33.333333333333336% - 30px);
  width: calc(33.333333333333336% - 30px);
  display: block;
  margin-top: 40px;
  text-align: center;
  color: #5e5d5d;
}

.item::after {
  display: block;
  content: "";
  clear: both;
}

.item_slider {
  width: 100%;
}

.item__title {
  display: block;
  min-height: 70px;
  margin: 20px auto 12px;
  font-size: 18px;
  font-weight: 700;
}

.item__info {
  color: #5e5d5d;
  font-size: 14px;
}

.item .button {
  margin-top: 15px;
}

.item:hover {
  cursor: pointer;
  text-decoration: none;
}

.item:hover .item__title {
  text-decoration: underline;
}

.pagination {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.pagination .links,
.pagination .results {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: 15px;
  margin-right: 15px;
  word-wrap: break-word;
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.pagination .results {
  text-align: right;
}

.pagination a,
.pagination b {
  display: inline-block;
  float: left;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 22px;
  border: 1px solid #e4e4e4;
  color: #5e5d5d;
  border-right: none;
}

.pagination a:last-child {
  border-right: 1px solid #e4e4e4;
}

.pagination a:hover {
  background: #ba0105;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  border-color: #ba0105;
}

.pagination b {
  background: #ba0105;
  color: #fff;
  border-color: #ba0105;
}

.product {
  width: 100%;
}

.product__preview {
  margin-bottom: 30px;
  text-align: center;
}

.product__preview .button {
  min-width: 200px;
  font-size: 18px;
}

.checkboxes {
  margin-bottom: 20px;
  text-align: center;
}

.checkboxes__item {
  display: inline-block;
  margin: 5px 10px;
  font-size: 14px;
  line-height: 16px;
}

.checkboxes__item::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/icons/checked.svg) no-repeat center;
  background-size: contain;
  vertical-align: top;
  margin-right: 5px;
}

.popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.4);
  z-index: 100;
}

.popup__form {
  width: 100%;
  max-width: 344px;
  background: #fff;
  padding: 30px 20px;
  border: 1px solid #ddd;
  margin: 0 auto;
  position: fixed;
  text-align: center;
  top: 50%;
  left: 0;
  right: 0;
  color: #5e5d5d;
  font-size: 14px;
  -webkit-transform: translate3D(0,-50%,0);
  -ms-transform: translate3D(0,-50%,0);
  transform: translate3D(0,-50%,0);
  z-index: 99999;
}

.popup__title {
  font-size: 18px;
  font-weight: 700;
  color: #ba0105;
  display: block;
  margin-bottom: 10px;
}

.popup__policy {
  font-size: 12px;
  display: block;
  margin-top: 10px;
}

.popup .button {
  font-size: 1rem;
  margin-top: 10px;
  padding: 10px;
}

.popup p+input {
  margin-top: 10px;
}

.popup__close {
  position: absolute;
  top: 5px;
  right: 10px;
  display: block;
  width: 20px;
  height: 20px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.popup__close::after,
.popup__close::before {
  content: '';
  display: block;
  width: 14px;
  height: 4px;
  background: #5e5d5d;
  position: absolute;
  top: 50%;
  left: 50%;
}

.popup__close::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.popup__close::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.popup__close:hover {
  opacity: .8;
}

.owl-carousel .owl-nav .owl-next {
  background: url(/theme/img/icons/next_item.png) no-repeat center;
  width: 15px;
  height: 27px;
  font-size: 0;
  color: transparent;
  border: none;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 50%;
  right: -25px;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-transform: translate3d(0,-50%,0);
  transform: translate3d(0,-50%,0);
}

.owl-carousel .owl-nav .owl-next:hover {
  opacity: .8;
  background: url(/theme/img/icons/next_item.png) no-repeat center;
}

.owl-carousel .owl-nav .owl-prev {
  background: url(/theme/img/icons/next_item.png) no-repeat center;
  width: 15px;
  height: 27px;
  font-size: 0;
  color: transparent;
  border: none;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 50%;
  left: -20px;
  cursor: pointer;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-transform: translate3d(0,-50%,0) rotate(180deg);
  transform: translate3d(0,-50%,0) rotate(180deg);
}

.owl-carousel .owl-nav .owl-prev:hover {
  opacity: .8;
  background: url(/theme/img/icons/next_item.png) no-repeat center;
}

.get-callback {
  width: 100%;
  max-width: 500px;
  margin: auto;
  background: #f6f6f6;
  padding: 20px;
}

.get-callback p {
  margin: 0;
  padding: 0;
}

.get-callback p+p {
  padding-top: 5px;
}

.get-callback form+p {
  font-size: 12px;
  color: #5e5d5d;
  margin: 15px 0;
}

.get-callback .button {
  margin-top: 15px;
}

.button {
  display: inline-block;
  background: #ba0105;
  color: #fff;
  padding: 6px 10px;
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color .2s ease;
  transition: background-color .2s ease;
}

.button_full {
  width: 100%;
  text-align: center;
}

.button_big {
  font-size: 15px;
  line-height: 30px;
}

.button:hover {
  background-color: #a10104;
  text-decoration: none;
}

.button:active,
.button:focus {
  background-color: #870104;
}

.button_text {
  margin-top: 25px;
  font-size: 14px;
  line-height: 25px;
}

.button_trans {
  background: 0 0;
  border: 1px solid #ba0105;
  color: #ba0105;
}

.button_trans:hover {
  background: #ba0105;
  color: #fff;
}

.button_grey {
  background: #aeaeae;
}

.button_grey:hover{
  background-color: #8b8b8b;
}

.icon_yellow{
  background: url(../img/icons/email_yellow.svg);
}

.slider_item .slider__body_product{
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 15px;
  padding-right: 15px;
}

.slider_item .slider__body_product .button{
  padding: 8px 20px;
}

.article_slidered{
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height .2s ease;
  -o-transition: max-height .2s ease;
  transition: max-height .2s ease;
}

.shadowed{
  height: 360px;
  overflow-y: hidden;
  position: relative;
}

.slider__col_more{
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  left: 0;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
  z-index: 10;
}

.shadowed .slider__col_more{
  display: block;
}

.slider__col_more:hover{
  text-decoration: none;
}

.shadowed::before{
  content: '';
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 35px;
  display: block;
  -webkit-box-shadow: inset -15px -10px 20px 15px rgba(255, 255, 255, 0.9);
  -moz-box-shadow: inset -15px -10px 20px 15px rgba(255, 255, 255, 0.9);
  box-shadow: inset -15px -10px 20px 15px rgba(255, 255, 255, 0.9);
}

.shadowed_hovered{
  padding-bottom: 35px;
  height: auto!important;
}

.shadowed_hovered::before{
  opacity: 0;
}


.slider__col{
  width: calc(50% - 30px);
  display: inline-block;
  margin: 0 15px;
}

.slider__col iframe{
  width: 100%;
}


.slider__col_bottom{
  margin-top: 30px;
}

.advantages_slidered{
  margin-top: 20px;
  padding: 35px 10px 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  color: #fff;
  background-color: #ab0004;
}

.advantages_slidered .advantages__title{
  margin-top: 5px;
}

.advantages_slidered img{
  max-height: 61px;
}

.advantages__years {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 28px;
  font-weight: 900;
}

.advantages_slidered .advantages__item{
  width: calc(33.333% - 10px);
  margin-bottom: 25px;
}

.product-video{
  margin-top: 20px;
}

.slider_slidered .slider__info{

  padding-top: 10px;
  padding-bottom: 0;
}

.slider_slidered .breadcrumb{
  margin-bottom: 10px;
  border-top: none;
  font-size: 14px;
}

.slider_slidered .breadcrumb a {
  color: #8e8e8e;
}

.slider_slidered .breadcrumb a:last-child{
  color: #ba0105;
  opacity: .8;
}

.advantages__years_top {
  top: -6px;
  font-size: 36px;
}

.advantages__years_trophy {
  top: 62px;
  font-size: 18px;
  text-transform: uppercase;
}


.table-magic{
  width: 100%;
  overflow-x: scroll;
  -webkit-box-shadow: inset -5px 0px 5px 0px rgba(255,255,255,1);
  -moz-box-shadow: inset -5px 0px 5px 0px rgba(255,255,255,1);
  box-shadow: inset -5px 0px 5px 0px rgba(255,255,255,1);
}

.price-popup{
  cursor: pointer;
}

img.price-popup{
  margin-top: 10px;
}

.button_machine{
  position: absolute;
  bottom: -270px;
  padding: 15px 20px;
  min-width: 300px;
  text-align: center;
}

.button_machine-cat{
  position: absolute;
  bottom: -75px;
  padding: 15px 20px;
  width: 100%;
  text-align: center;
  left: 0;
}

.magic-form{max-width:460px;padding:41px 45px;border:1px solid #e2e2e2}.magic-form__title{font-size:24px;font-weight:bold;display:block;width:100%;margin-bottom:20px}.magic-form__item{display:none;min-height:231px}.magic-form__item_active{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.magic-form__item .button{max-height:41px}.magic-form__subtitle{font-size:21px;display:block;width:100%}.magic-form__subtext{display:block;margin-bottom:20px;width:100%}.magic-form__check{width:50%;margin-bottom:10px}.magic-form__check input{display:inline-block;width:auto;vertical-align:middle;margin:0 5px 0 0;min-height:0}.magic-form__check_image{width:110px;font-size:14px;text-align:center;margin-bottom:0}.magic-form__check_image img{border:2px solid #fff;-webkit-transition:border-color .2s ease;transition:border-color .2s ease}.magic-form__check_image img:hover{border-color:rgba(186,1,5,0.2)}.magic-form__check_image input{display:none}.magic-form__check_image input:checked+.magic-form__text_image img{border-color:#ba0105}.magic-form__buttons{margin-top:30px;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.magic-form input[type="text"]{font-size:18px;max-height:45px}

.article_home{
  padding: 0;
}

.popup__form .magic-form{
  border: none;
  padding: 0;
}

.popup__form_price{
  max-width: 460px;
}

@media only screen and (min-width:992px) {
  .nav__close,
  .nav__hider {
    display: none;
  }
  .article_slidered{
    padding-left: 40px;
  }

.table-scroller{
  position: relative;
  margin-top: 0;
}


.table-scroller_loaded tr:first-child{
  position: absolute;
  left: auto;
  right: auto;
  margin: auto;
  top: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}


.table-scroller_loaded tr:first-child th{
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}
.table-scroller_active tr:first-child{
  position: fixed;
  top: 0!important;
}
.table-scroller_bottom tr:first-child{
  position: absolute;
  bottom: 0;
  top: auto!important;
}
}

@media only screen and (max-width:1200px) {
  .slider .car {
    right: 240px;
  }

  .sa_arra {
    margin-left: -200px;
  }

  .sa_arrb {
    margin-left: -70px;
  }

  .slider .box,
  .slider .box2 {
    margin-left: -250px;
  }

  .slider_item .slider__body {
    width: auto;
  }
}

@media (max-width:1199px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .slider_item .slider__body {
    padding-left: 30px;
    padding-right: 30px;
  }

  .content__body {
    padding-left: 30px;
    padding-right: 30px;
  }
  .owl-carousel .owl-nav .owl-prev{
    left: 0;
  }
  .owl-carousel .owl-nav .owl-next{
    right: 0;
  }
}

@media only screen and (max-width:992px) {
.table-body{
  width: 100%;
  overflow-y: scroll;
}
  .move-out-0 {
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0);
  }

  .move-out-1 {
    -webkit-transform: translate3d(-200%,0,0);
    transform: translate3d(-200%,0,0);
  }

  .move-out-2 {
    -webkit-transform: translate3d(-300%,0,0);
    transform: translate3d(-300%,0,0);
  }

  .move-out-3 {
    -webkit-transform: translate3d(-400%,0,0);
    transform: translate3d(-400%,0,0);
  }

  .header__contact .button {
    line-height: 1.4;
    padding: 5px 10px;
  }

  .mobile-trigger {
    display: block;
  }

  .nav {
    width: 100%;
    position: absolute;
    margin: auto;
    top: 80px;
    left: 100%;
    padding: 51px 0 25px;
    background: #f6f6f6;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 1000;
  }

  .nav_visible {
    -webkit-transform: translate3D(-100%,0,0);
    -ms-transform: translate3D(-100%,0,0);
    transform: translate3D(-100%,0,0);
  }

  .nav__zero-level {
    left: 100%!important;
  }

  .nav__first-level {
    left: 100%!important;
  }

  .nav__second-level {
    left: 200%!important;
  }

  .nav__third-level {
    left: 300%!important;
  }

  .nav__list {
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }

  .nav ul {
    background: #f6f6f6;
  }

  .nav li {
    display: block;
    width: 100%;
    position: initial;
    padding: 0 15px!important;
  }

  .nav li>a {
    display: block;
    line-height: 1.4;
    padding: 15px!important;
    text-align: left;
    border-top: 1px solid #e4e4e4;
    color: #555!important;
  }

  .nav li:last-child a {
    border-bottom: 1px solid #e4e4e4;
  }

  .nav li.nav__parent>ul {
    display: none;
  }

  .nav li.nav__parent_active>ul {
    display: block;
  }

  .nav__parent::after {
    content: '';
    display: inline-block;
    margin-top: -33px;
    width: 10px;
    height: 20px;
    float: right;
    background: url(http://zeta.sergwd.com/arrow_right.svg) top left/500%;
  }

  .nav__list li>a+ul {
    width: 100%;
    padding: 0;
    position: absolute;
    top: 0;
    margin: 0;
    background: #f6f6f6;
    opacity: 1!important;
    max-height: 1000000px;
  }

  .nav__second-level {
    display: none!important;
  }

  .nav__first-level .nav__parent::after {
    display: none;
  }

  .categories__item {
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px);
    margin-right: 0;
    margin-left: 0;
  }

  .categories__item:nth-child(odd) {
    margin-right: 10px;
  }

  .cols_three .cols__col:last-child {
    width: 100%;
  }

  .footer__col {
    margin-bottom: 1.4rem;
  }

  .footer__copyright,
  a.gotop {
    font-size: 14px;
  }

  .advantages__item {
    width: -webkit-calc(100% / 5 - 10px);
    width: calc(100% / 5 - 10px);
    margin-bottom: 10px;
  }

  .search {
    display: none;
  }

  .header__contact {
    width: 100%;
    padding-left: 0;
    padding-right: 40px;
  }

  .header__contact .button {
    max-width: 200px;
  }

  .nav__zero-level>.nav__parent>a::after {
    display: none;
  }
}

@media (max-width:991px) {
  .slider__body_china .slider__info{
    left: 15px;
  }
  .slider__form{
    right: 15px;
  }
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__info {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .header__info {
    margin-left: -webkit-calc(50% + 15px);
    margin-left: calc(50% + 15px);
  }

  .section__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cols_three .cols__col {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .cols_two .cols__col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__col {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .slider_item .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sidebar {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .category {
    width: -webkit-calc(66.66666666666667% - 30px);
    width: calc(66.66666666666667% - 30px);
  }

  .category_full .item {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }
}

@media only screen and (max-width:768px) {
  .slider__body_china .slider__info{
    position: relative;
    left: auto;
    top: auto;
    margin: 20px auto;
  }
 .slider__form {
  max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: auto;
    margin-bottom: 20px;
  }
  .slider__body_china img{
    max-width: 1000%;
    width: auto;
    height: 100%;
  }
  .slider_china{
    height: auto;
  }
  .categories__title {
    font-size: 1.2rem;
  }

  .slider__col {
    width: calc(100% - 30px);
  }

  .slider__col + .slider__col {
    margin-top: 20px;
  }

  .advantages__item {
    width: -webkit-calc(100% / 3 - 10px);
    width: calc(100% / 3 - 10px);
  }

  .slider__info {
    left: 20px;
  }

  .slider .car {
    left: 50px;
    right: auto;
  }

  .sa_arrb {
    margin-left: -420px;
  }

  .sa_arra {
    margin-left: -550px;
  }

  .slider .box,
  .slider .box2 {
    margin-left: -600px;
  }

  .sidebar {
    display: none;
  }

  .category {
    border: none;
    padding: 0;
  }

  .filter .box-filter>li {
    width: 50%;
  }

  .filter .box-filter>li+li {
    width: 50%;
  }

  .product__preview .button {
    margin-bottom: 5px;
  }
}

@media (max-width:767px) {
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__info {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .header__info {
    margin-left: -webkit-calc(16.66667% + 15px);
    margin-left: calc(16.66667% + 15px);
  }

  .logo {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
  }

  .section__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .cols_three .cols__col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .footer__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__col {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .slider_item .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sidebar {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .category {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .category_full .item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }
}

@media (max-width:559px) {
  .advantages_slidered .advantages__item {
    width: calc(100% / 2 - 10px);
  }
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__info {
    width: -webkit-calc(58.333333333333336% - 30px);
    width: calc(58.333333333333336% - 30px);
  }

  .header__info {
    margin-left: -webkit-calc(0% + 15px);
    margin-left: calc(0% + 15px);
  }

  .logo {
    width: -webkit-calc(41.66666666666667% - 30px);
    width: calc(41.66666666666667% - 30px);
  }

  .section__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer__col {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .slider_item .slider__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content__body {
    padding-left: 15px;
    padding-right: 15px;
  }

  .category_full .item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .item {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width:480px) {
  .button_machine-cat,
  .button_machine{
    position: relative;
    bottom: auto;
    margin-top: 20px;
    max-width: 100%;
    min-width: 0;
  }

  .slider__col iframe{
    height: auto;
  }
  .advantages_new .advantages__item{
    padding: 0 20px;
  }
  .advantages_new .advantages__item .advantages__title{
    font-size: 16px;
  }
  .slider_home {
    text-shadow: none;
  }

  .article__buttons .button{
    font-size: 14px;
    padding-left: 0!important;
    padding-right: 0!important;
  }

  .categories__item,
  .categories__item:nth-child(odd) {
    width: 100%;
    margin: 0 0 10px 0;
  }

  a.gotop {
    font-size: 0;
    position: absolute;
    top: 5px;
    right: 15px;
  }

  .footer__bottom {
    position: relative;
    padding: 20px 0;
  }

  .footer__copyright {
    line-height: 1.4;
    display: block;
    max-width: 200px;
  }

  .advantages__item {
    width: -webkit-calc(100% / 2 - 10px);
    width: calc(100% / 2 - 10px);
  }

  .header__contact .button {
    font-size: .8rem;
    padding: 6px 0;
  }

  .header__contact .bold {
    font-size: .9rem;
  }

  .slider {
    height: auto;
    padding-bottom: 0;
  }

  .slider__info {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    padding: 24px 20px 40px;
    color: #555;
  }

  .slider__body,
  .slider_category,
  .slider_category .slider__body,
  .slider_category .slider__info {
    width: 100%;
    background: #f9f9f9;
    min-height: 1px;
    max-height: 10000%;
  }

  .slider__title {
    font-size: 26px;
  }

  .article table td, .article table th{
    font-size: 14px;
  }

  .slider__text {
    font-size: 1rem;
  }

  .filter .box-filter>li {
    width: 100%;
  }

  .filter .box-filter>li+li {
    width: 100%;
    margin-top: 1rem;
    border: none;
    padding: 0;
  }

  .footer__copyright {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .footer .gotop {
    width: 100%;
    float: none;
    text-align: right;
  }
}

@media only screen and (max-width:320px) {
  .advantages__item {
    width: -webkit-calc(100% / 1 - 10px);
    width: calc(100% / 1 - 10px);
  }
}



/*City_Choiser*/
.City_Choiser_setting .city_setting {
    display: flex;
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
    border: 1px solid;
    padding: 5px;
    border-radius: 3px;
}
.City_Choiser_setting_city_open i.fa.fa-angle-down {
    margin-left: 5px;
}
.City_Choiser_setting_city_open{
	cursor: pointer;
}

.City_Choiser_setting button.setting_remove {
    width: 5%;
    border: 0px;
    background-color: transparent;
    color: red;
    font-size: 19px;
    font-weight: 800;
}
div#City_Choiser_setting_popup span label {    
	cursor: pointer;
}
div#City_Choiser_setting_popup span label:hover {
    color: #acace5;
}
div#City_Choiser_setting_popup input:checked + span label {
    text-decoration: underline;
	cursor: pointer;
}
div#City_Choiser_setting_popup ul.radios {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.City_Choiser_setting label.slideDownlabel {
    width: 92%;
    padding-left: 15px;
    font-size: 16px;
    font-weight: 600;
	cursor: pointer;
}
.City_Choiser_setting .setting p {
    display: flex;
    flex-direction: column;
}
.fa-angle-down:before {    
	color:black;
}

.City_Choiser_setting .buttons {
    display: flex;
    justify-content: space-between;
    margin-top:30px;
	margin-bottom:20px;
}
.City_Choiser_setting .setting {
    width: 40%;
}
.City_Choiser_setting>form{
    border: 1px solid;

    padding: 5px;
}
.City_Choiser_setting span.info{
    display:none;
}
.City_Choiser_setting span.info:not(:empty) {
    text-align: center;
    display: block;
    background-color:red;
    margin-left:25%;
    margin-right:25%;
    padding:5px;
    color:white;
}
.City_Choiser_setting span.info:not(:empty)::before{
    content:'Сначала выберите ';
}


.City_Choiser_setting .render_element{
    display:none;
}
.City_Choiser_setting .render_element:not(:empty){
    display:block;
}


.City_Choiser_setting .render_element.loading{
    opacity: 0.4;
    pointer-events: none;
}
.slideDownlabel{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slideDown{
    display:none;
}
.slideDowninput{
    display: none;
}
.slideDowninput[type=checkbox]:checked+label::after{
    content: '-';
    display: flex;
    width: 1em;
    color: black;
    font-size: 25px;
    position: relative;
    text-align: center;
    font-weight: bold;
    justify-content: center;
}
.slideDowninput[type=checkbox]:checked+label + .slideDown{
    display: block;
}
.slideDowninput[type=checkbox]+label::after{
    content: '+';
    display: flex;
    width: 1em;
    color: black;
    font-size: 25px;
    position: relative;
    text-align: center;
    font-weight: bold;
    justify-content: center;
}
.City_Choiser_setting{
	display:flex;
}
.City_Choiser_setting .setting {
    padding: 10px 10px 5px 5px;
    /* border: 1px solid; */
}
.City_Choiser_setting .info {
    width: 60%;
    background: #eeeeee;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: inset 1px 1px 4px 2px black;
    background-image: url("/wp-content/plugins/city_choser/assets/images/bg.jpg");
	display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 35px;
    flex-wrap: nowrap;
    flex-direction: column;
    font-weight: 900;
    color: white;
}
.City_Choiser_setting_shorts.head-attr {
    display: flex;
}
.City_Choiser_setting_shorts.head-attr b {
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 19px;
    color: #ba0105;
    margin-bottom: 6px;
    white-space: nowrap;
}
span.City_Choiser_setting_city_curent p{ 
    font-style: normal;
    font-weight: 900;
    font-size: 13px;   
    color: #999999;
	margin-left: -10px;
    text-decoration: underline;	
   
}
.City_Choiser_setting_shorts.head-attr > div {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    color: white;
    justify-content: center;
}
.City_Choiser_setting_shorts.head-attr > .head-attr_icon {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-right: 10px;
    color: white;	
    justify-content: flex-start;
}

.City_Choiser_setting_shorts a {
    color: black;
    font-size: 18px;	
}
div#City_Choiser_setting_popup {    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    justify-content: center;
    align-items: center;
    display: none;
}
div#City_Choiser_setting_popup .black {
    background: rgba(64, 84, 88, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    justify-content: center;
    align-items: center;   
}
fieldset.form-field.City_Choiser_setting_city_select\[\]_field{
	border:0px;
}
div#City_Choiser_setting_popup .city_popup {
    background: #fff;
    padding: 35px;
    box-shadow: 0px 4px 40px rgb(0 0 0 / 5%);    
    position: relative;
    min-width: 810px;
	z-index: 1002;
    padding: 30px 70px;
}
div#City_Choiser_setting_popup .city_popup .close {
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
}
div#City_Choiser_setting_popup .city_popup h3 {
    font-family: Gilroy;
    font-style: normal;
    font-weight: bold;
    font-size: 25px;
    line-height: 30px;
    color: #405458;
    margin-bottom: 40px;
    text-align: center;
}
div#City_Choiser_setting_popup input {
    display: none;
    position: absolute;
    left: -99999px;
}
div#City_Choiser_setting_popup li {
    list-style: none;
    font-family: Gilroy;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #778A8E;
    width: 25%;
    float: left;
    margin-bottom: 30px;
    transition: all 0.3s;
    cursor: pointer;
}
div#City_Choiser_setting_popup input:checked + span {    
    padding: 5px;
}
div#City_Choiser_setting_popup .city_in_head {
    display: flex;
    flex-direction: column;
    align-items: center;
}
div#City_Choiser_setting_popup i.fa.fa-angle-down {
    font-size: 20px;
    font-weight: 900;
    margin-left: 10px;
}
div#City_Choiser_setting_popup .head-attr_icon {
    width: 10%;
}
div#City_Choiser_setting_popup .city_in_head {
    width: 90%;
}
@media only screen and (max-width: 768px){
.header__logo, .City_Choiser_setting_shorts.head-attr {
    display: none;
}}
/*City_Choiser*/

#call_me_form .smart-captcha{
  min-width: inherit!important;
  margin-bottom: 10px;
}