@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;
}
ul {
    list-style-position: inside;
}
.animated.hinge {
  animation-duration: 2s;
}

.card{
    width: 1px;
    height: 1px;
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    min-height: 1px;
    top: -1px;
}

@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: 1320px;
  position: absolute;
  left: 0;
  right: 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;
}

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

.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: 35px;
  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-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, svg {
    height: auto;
}
img {
    vertical-align: middle;
}

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: 1%;
}

.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>.menu-item-has-children>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;
}

.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: 1320px;
    margin: 0 auto;
    padding: 0px;
    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;
  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: 10px;
    margin-right: 10px;
    word-wrap: break-word;
    width: -webkit-calc(16.666666666666668% - 30px);
    width: calc(16.666666666666668% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: 1320px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
  background: #fff;
  padding: 20px 30px;
}

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

.advantages.advantages_slidered.section_orange.product .advantages__item {
    width: -webkit-calc(100% / 3 - 10px);
    width: calc(100% / 3 - 10px);
    margin: 5px 5px;
    text-align: center;
    position: relative;
}

.advantages__item {
    width: -webkit-calc(100% / 7 - 10px);
    width: calc(100% / 7 - 10px);
    margin: 0 5px;
    text-align: center;
    position: relative;
}
.slider_category::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slider__stacker{
  position: absolute;
  top: 0;
  right: 130px;
  padding: 34px 90px 0 0;
  z-index: 2;
}

.slider__stacker img{
  height: 360px;
  width: auto;
}

.categories__item img{
  max-height: 205px;
}


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

.advantages__title {
  display: block;
  margin-top: 5px;
  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(25% - 15px);
  width: calc(25% - 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+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_item {
  margin-top: 2rem;
}

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

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

.section li {
  display: block;
}

.section li::before {
  content: '\00B7';
  display: inline-block;
  margin-right: 10px;
  font-size: 3rem;
  color: #ba0105;
  vertical-align: middle;
  padding-bottom: 9px;
  line-height: .6;
}
table.contact-table td {
width: 100%;
}
table.contact-table tr {
    display: flex;
    flex-direction: column;
}
@media(min-width:768px){
table.contact-table tr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}
table.contact-table td {
    width: 50%;
	
}
	}
.article table {
  width: 100%!important;
  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;
}

.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: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 {
  padding: 0 20px;
  border-right: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
  border-top: none;
}

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

.list_popup .menu-item-has-children{
  position: relative;
  margin: 0 !important;
  padding: 12px 0 0!important;
}

.list_popup .menu-item-has-children > a{
  position: relative;
  display: inline-block;
}

.list_popup .menu-item-has-children > a::after{
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  right: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #c9c9c9 transparent transparent transparent;
}

.list_popup .menu-item-has-children > ul {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    -o-column-count: 3;
    column-count: 3;
    background: #fff;
    border: 1px solid #e4e4e4;
    width: 650px;
    padding: 10px 5px!important;
    z-index: 10;
}

.list_popup .menu-item-has-children > ul li{
  margin: 0 0 5px!important;
}

.list_popup .menu-item-has-children:hover ul{
  display: block;
}

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

.your-message textarea{
  max-height: 200px;
}

.wpcf7-form .cols label > span{
  display: block;
  margin-top: 10px;
}

.wpcf7-form .button{
  margin-top: -12px;
}

.slider {
  position: relative;
  z-index: 0;
}
@media(min-width:1320px){
.slider_home .slider__body {
  width: 1320px;
  min-height: 560px;
  position: relative;
  margin: auto;
  overflow: hidden;
	background:#111;
}
}
.slider__body {
  width: 1320px;
  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: 2.1rem;
  margin-bottom: 20px;
  display: block;
}

.slider__text {
  font-size: 16px;
}

.slider_category {
  height: 410px;
}

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

.slider__bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  max-width: none;
  -webkit-transform: translate3D(0, -50%, 0);
  -ms-transform: translate3D(0, -50%, 0);
  -o-transform: translate3D(0, -50%, 0);
  transform: translate3D(0, -50%, 0);
  z-index: 0;
}

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

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

.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__slider .item {
  margin-left: 0;
  margin-right: 0;
}

.photos__item {
  text-align: center;
}
/*
.photos img {
  min-height: 280px;
  max-height: 280px;
  width: auto;
  margin: auto;
}
*/
.photos img {
    min-height: 420px;
    max-height: 420px;
    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; 
  max-width: 1320px;
  padding-left: 15px;
  padding-right: 15px;
  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;
    word-wrap: break-word;
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
    padding-bottom: 35px;    
}

.category__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.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: 100%;
  margin-bottom: 15px;
  display: inline-block;
}

.widget h3 {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    background: #ba0105;
    color: white;
    padding: 15px 15px;
    text-shadow: 1px 1px black;
}

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

.woocommerce-widget-layered-nav-list a {
  width: 160px;
  padding: 10px 0!important;
  min-height: 20px;
  display: inline-block;
  line-height: 20px;
  cursor: pointer;
  color: #555;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before,
.woocommerce-widget-layered-nav-list a:hover::before{
  outline: none!important;
  border: none!important;
}

.widget .count{
  display: none;
}

.woocommerce-widget-layered-nav-list a::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 12px;
  border: 1px solid #e4e4e4;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.woocommerce-widget-layered-nav-list a: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 a:last-child {
  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;
}


.advantages {
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.section_orange .section__body{
  background: none;
}

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

.pagination a,
.page-numbers.current {
  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;
}

.page-numbers.current {
  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: #919090;
}

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

.section ul{
  margin: 10px auto;
  padding-left: 1rem;
}

.section h1{
  font-size: 32px;
  margin: 24px auto;
}

.section li{
  margin-bottom: 10px;
}

h2{
  font-size: 28px;
  margin: 20px auto;
}

h3{
  font-size: 24px;
}

h4{
  font-size: 21px;
  margin: 12px auto 14px;
}

h5{
  font-size: 18px;
  margin: 10px auto 12px;
}

.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;  
  justify-content: space-between;	
}

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

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

.article_shadowed{
 height: 660px;
}

.slider__col_right{
  position: relative;

}

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

.article_shadowed + .slider__col_more{
  display: block;
}

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

.article_hovered{
  padding-bottom: 10px;
  height: auto!important;
}




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

.slider__col.slider__col_right {
width: 100%;
}
.slider__col.slider__col_left {
    width: 100%;
}
@media(min-width:767px){
.slider__col.slider__col_left {
        width: calc(50% - 5px);
        padding: 15px 0;
        border: 1px solid #e4e4e4;
    }
.slider__col.slider__col_right{
	width: calc(50% - 5px);
    display: inline-block;    
	padding: 15px;
    border: 1px solid #e4e4e4;
	}
}
.slider__col iframe{
  width: 100%;
}

.slider__col_bottom{
margin-top: 30px;
 }

.slider_slidered .slider__info{
padding-bottom: 0;
}

.slider_slidered .breadcrumb {
    margin-bottom: 40px;
    text-align: left;
}

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

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

@media only screen and (max-width:992px) {
  .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__zero-level > .sub-menu {
    left: 100%!important;
  }

  .nav__zero-level > .sub-menu > .menu-item-has-children > .sub-menu {
    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.menu-item-has-children>ul {
    display: none;
  }

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

  .menu-item-has-children::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__zero-level > .sub-menu > .menu-item-has-children > .sub-menu {
    display: none!important;
  }

  .nav__zero-level > .sub-menu .menu-item-has-children::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>.menu-item-has-children>a::after {
    display: none;
  }
}

@media (max-width:991px) {
  .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);
  }
  .slider__bg{
    height: 100%;
  }
}

@media only screen and (max-width:768px) {
  .slider__col{
    width: calc(100% - 30px);
  }
  .slider__col + .slider__col{
    margin-top: 20px;
  }
  .categories__title {
    font-size: 1.2rem;
  }

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

  .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);
  }
  .header__contact .bold{
    display: inline-block;
  }
}

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

  .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) {

  .slider_category .slider__info{
    color: #fff;
  }
  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .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) {
  .slider_home {
    text-shadow: none;
  }

  .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 .advantages__item img{
  display: inline-block;
  }

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

  .slider__title {
    font-size: 32px;
  }

  .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:360px) {
  .advantages_slidered .advantages__item,
  .advantages__item {
    width: -webkit-calc(100% / 1 - 10px);
    width: calc(100% / 1 - 10px);
  }
}

@media only screen and (max-width:767px) {
ul.nav__list.nav__zero-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}	
}
ul.nav__list.nav__zero-level {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__list li>a+ul {
    max-height: 0;
    overflow: hidden;
    width: 320px;
    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 {
    display: inline-block;
    width: 49%;
    line-height: 25px;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}
ul.woocommerce-widget-layered-nav-list {
    max-height: 450px;
    overflow-y: scroll;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px #393939;
}
::-webkit-scrollbar-thumb {
    background: #ba0105;
}
.tags {
	 max-width: 1300px;
     margin-left: auto;
	   margin-right:auto;
	   padding:15px;
     display: flex;
     flex-wrap: wrap;
     gap: 15px;
}

  .popup-hidden{
    display: none;
  }

  .form-triggered input,
  .form-triggered textarea,
  .form-triggered .popup__title{
    display: none;
  }

  .form-triggered .popup-hidden{
    display: block;
  }

.form__heading {
	margin-top:20px;
    text-align: center;
    margin-bottom: 30px;
}
.form__title {
    font-weight: 700;
    font-size: 28px;
}
.cubic {
    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;
    justify-content: center;
}
.cubic__item {
    width: -webkit-calc(33.333333333333336% - 30px);
    width: calc(33.333333333333336% - 30px);
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 15px;
    margin-right: 15px;
    word-wrap: break-word;
    padding: 20px;
    font-weight: bold;
    text-align: center;
}
.cubic__item img {
    display: block;
    margin: 0 auto 20px;
    max-height: 200px;
}
a.item img {
    vertical-align: middle;
    width: 100%;
    max-height: 200px;
    height: auto;
    object-fit: contain;
    min-height: 200px;
}
.logo img {
    max-width: 150px;
}
.social {
    width: 100%;
}
.slider_item .tags {
    padding: 5px;
    gap: 0;
}
.tags a.button {
    padding: 0;
    margin: 0 5px 5px 0;
    display: inline;   
    color: #555;
}
.product .tags a {
    background: red;
    color: #fff !important;
    font-size: 12px;
    padding: 5px !important;
    text-align: center;
}
.section__body .row {
    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;
}

.quiz {
	margin:15px 0;
    border: 1px solid #e4e4e4;
    padding: 50px 30px 55px;
    text-align: center;
    position: relative;
    width: 100%;
}

.quiz__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px
}

.quiz__text {
    color: #444;
    font-size: 14px;
    margin-bottom: 40px
}

.cats img,.quiz__image {
    border: 1px solid #d7ddeb;
    -webkit-transition: border-color .2s ease;
    -o-transition: border-color .2s ease;
    transition: border-color .2s ease
}

.quiz .third {
    cursor: pointer
}

.quiz .third input[type=checkbox] {
    display: none
}

.cats .quiz .third input[type=checkbox]:checked+img,.quiz .third .cats input[type=checkbox]:checked+img,.quiz .third input[type=checkbox]:checked+.quiz__image {
    border-color: #254ece
}

.cats .quiz .third:hover img,.quiz .third:hover .cats img,.quiz .third:hover .quiz__image {
    border-color: #254ece
}

/*.quiz*/
.quiz .checkbox {
    width: 100%;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
}
.quiz .button {
    margin-top: 20px;
    width: fit-content;
}
.quiz .checkbox__box {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid #cdd3e0;
    vertical-align: top;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    margin-right: 10px;
}
.quiz .checkbox input:checked+.checkbox__box {
    background: #254ece;
    border-color: #254ece;
}
.quiz .checkbox input[type=checkbox] {
    display: none;
}
.quiz .checkbox__text {
    width: 110px;
    text-align: left
}


.quiz .row {
    max-width: 1320px;
    margin: 0 auto;	
}

.quiz .row_smallest {
    max-width: 370px
}

.quiz .row_final {
    max-width: 480px
}

.cats__subtitle,.quiz__subtitle {
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 30px
}

.quiz__item {
    display: none
}

.quiz__item_active {
    display: block
}

.quiz__item_3 .quiz__text {
    margin-bottom: 20px
}

.quiz__item_3 .button {
    margin-top: 20px
}

.quiz__half {
    -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)
}

.quiz__return {
    width: 35px;
    height: 25px;
    position: absolute;
    top: 10px;
    left: 15px;
    background: url(../img/icons/return.svg) no-repeat center;
    cursor: pointer;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease
}

.quiz__return:hover {
    opacity: .8
}

.quiz input {
    width: 100%
}

.quiz .third {
    -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)
}
/*.quiz*/



.tags {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: minmax(0, auto);
    gap: 10px;
}
.tags a{
	background:red;
}


ul.tabs.wc-tabs {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}
.product-tabs {
    width: 100%;
    margin-top: 50px;
}
table.shop_attributes {
    width: calc(100% - 15px);
}
table.shop_attributes tr, .product-description table tr { 
    text-align: left;
    border-bottom: 1px solid #e4e4e4; 
	background: rgb(249, 249, 250);
	border-radius: 5px;
}
.product-description table{
	width:100%;
}
table.shop_attributes td {
    text-align: right;
}
table.shop_attributes tr:nth-child(2n), .product-description table tr:nth-child(2n) {
    background: rgb(255 255 255);
}

.product-description table td:nth-child(2) {
    text-align: right;
}

table.shop_attributes tr:nth-child(2n+1), .product-description table tr:nth-child(2n+1) {
    margin-top: 10px;
    margin-bottom: 10px;
}
table.shop_attributes td p a, table.shop_attributes th {
    font-size: 14px;
    color: black;
	font-weight: 100 !important;
}
table.shop_attributes td, table.shop_attributes th, .product-description table td{
padding: 5px;	
}

.product-tabs .questions {
    display: flex;
}

.product-description-content {
    max-height: 300px;
    overflow: hidden;
}

.product-description-content.active {
    max-height: unset;
    overflow: auto;
}

.detail_text_button {
    color: black;
    font-size: 24px;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
    margin: 15px 0;
}