

/* Start:/local/templates/main/tpl/css/vendorCss/animate.css?168171085123848*/
@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;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

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

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

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

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

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

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

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

.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 flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

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

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

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

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

/* End */


/* Start:/local/templates/main/tpl/css/vendorCss/jquery.fancybox.css?168171085113413*/
@charset "UTF-8";
.fancybox-enabled {
  overflow: hidden; }

.fancybox-enabled body {
  overflow: visible;
  height: 100%; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992; }

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity .2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr; }

.fancybox-show-controls .fancybox-controls {
  opacity: 1; }

.fancybox-infobar {
  display: none; }

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all; }

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all; }

.fancybox-show-buttons .fancybox-buttons {
  display: block; }

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr; }

.fancybox-slider-wrap,
.fancybox-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent; }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch; }

.fancybox-slide::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide--image {
  overflow: hidden; }

.fancybox-slide--image::before {
  display: none; }

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
  background: transparent; }

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%; }

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in; }

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab; }

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.fancybox-spaceball {
  z-index: 1; }

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default; }

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; }

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer; }

.fancybox-close-small:after {
  content: '×';
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial,"Helvetica Neue",Helvetica,sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background .2s;
  box-sizing: border-box;
  z-index: 2; }

.fancybox-close-small:focus:after {
  outline: 1px dotted #888; }

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent; }

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee; }

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none; }

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }

.fancybox-caption a,
.fancybox-caption button {
  pointer-events: all; }

.fancybox-caption a {
  color: #fff;
  text-decoration: underline; }

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none; }

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none; }

.fancybox-infobar__body, .fancybox-button {
  background: rgba(30, 30, 30, 0.6); }

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8); }

.fancybox-button::before,
.fancybox-button::after {
  content: '';
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block; }

.fancybox-button--disabled::before,
.fancybox-button--disabled::after {
  opacity: 0.5; }

.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--left {
  border-bottom-left-radius: 5px; }

.fancybox-button--right {
  border-bottom-right-radius: 5px; }

.fancybox-button--close {
  float: right; }

.fancybox-button--close::before, .fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px); }

.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate .8s infinite linear;
  animation: fancybox-rotate .8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999; }

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left; }
  .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important; }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0; } }

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none; }

/* Slideshow button */
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent; }

.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent; }

/* Thumbs */
.fancybox-button--thumbs span {
  font-size: 23px; }

.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0; }

.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px; }

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box; }

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0; }

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box; }

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1); }

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.fancybox-thumbs > ul > li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1; }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important; }
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0; } }

/* End */


/* Start:/local/templates/main/tpl/css/vendorCss/owl.carousel.min.css?16817108512936*/
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.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(/local/templates/main/tpl/css/vendorCss/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%}
/* End */


/* Start:/local/templates/main/tpl/css/vendorCss/owl.theme.default.min.css?1681710851936*/
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.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}
/* End */


/* Start:/local/templates/main/tpl/css/styles.css?1710233470118000*/
/* Arteks - new fonts */

@font-face {
    font-family: 'Arteks-Light';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.ttf') format('truetype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot?#iefix') format('embedded-opentype');
}

@font-face {
    font-family: 'Arteks-Light-Italic';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.ttf') format('truetype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.eot?#iefix') format('embedded-opentype');
}

@font-face {
    font-family: 'Arteks-Regular';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot?#iefix')format('embedded-opentype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Arteks-Medium';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.ttf') format('truetype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.eot?#iefix') format('embedded-opentype');
}

@font-face {
    font-family: 'Arteks-Bold';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.eot?#iefix')format('embedded-opentype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.ttf') format('truetype');
}


/* Helvetica - old fonts */

/*@font-face {*/
/*    font-family: 'HelveticaRegular';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaRegular/HelveticaRegular.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaRegular/HelveticaRegular.eot?#iefix')format('embedded-opentype'),*/
    /*url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaRegular/HelveticaRegular.woff') format('woff'),*/
    /*url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaRegular/HelveticaRegular.ttf') format('truetype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot?#iefix')format('embedded-opentype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.ttf') format('truetype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaBold';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaBold/HelveticaBold.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaBold/HelveticaBold.eot?#iefix')format('embedded-opentype'),*/
    /*url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaBold/HelveticaBold.woff') format('woff'),*/
    /*url('/local/templates/main/tpl/css/../assets/fonts/Helvetica/HelveticaBold/HelveticaBold.ttf') format('truetype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.eot?#iefix')format('embedded-opentype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.ttf') format('truetype');*/
/*}*/

/*@font-face {
    font-family: 'HelveticaItalic';
    src: resolve('HelveticaItalic/HelveticaItalic.eot');
    src: resolve('HelveticaItalic/HelveticaItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaItalic/HelveticaItalic.woff') format('woff'),
    resolve('HelveticaItalic/HelveticaItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaLight';
    src: resolve('HelveticaLight/HelveticaLight.eot');
    src: resolve('HelveticaLight/HelveticaLight.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaLight/HelveticaLight.woff') format('woff'),
    resolve('HelveticaLight/HelveticaLight.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaBlack';
    src: resolve('HelveticaBlack/HelveticaBlack.eot');
    src: resolve('HelveticaBlack/HelveticaBlack.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaBlack/HelveticaBlack.woff') format('woff'),
    resolve('HelveticaBlack/HelveticaBlack.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaHeavy';
    src: resolve('HelveticaHeavy/HelveticaHeavy.eot');
    src: resolve('HelveticaHeavy/HelveticaHeavy.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaHeavy/HelveticaHeavy.woff') format('woff'),
    resolve('HelveticaHeavy/HelveticaHeavy.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaMedium';
    src: resolve('HelveticaMedium/HelveticaMedium.eot');
    src: resolve('HelveticaMedium/HelveticaMedium.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaMedium/HelveticaMedium.woff') format('woff'),
    resolve('HelveticaMedium/HelveticaMedium.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaThin';
    src: resolve('HelveticaThin/HelveticaThin.eot');
    src: resolve('HelveticaThin/HelveticaThin.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaThin/HelveticaThin.woff') format('woff'),
    resolve('HelveticaThin/HelveticaThin.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaUltraLight';
    src: resolve('HelveticaUltraLight/HelveticaUltraLight.eot');
    src: resolve('HelveticaUltraLight/HelveticaUltraLight.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaUltraLight/HelveticaUltraLight.woff') format('woff'),
    resolve('HelveticaUltraLight/HelveticaUltraLight.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaBoldItalic';
    src: resolve('HelveticaBoldItalic/HelveticaBoldItalic.eot');
    src: resolve('HelveticaBoldItalic/HelveticaBoldItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaBoldItalic/HelveticaBoldItalic.woff') format('woff'),
    resolve('HelveticaBoldItalic/HelveticaBoldItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaBlackItalic';
    src: resolve('HelveticaBlackItalic/HelveticaBlackItalic.eot');
    src: resolve('HelveticaBlackItalic/HelveticaBlackItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaBlackItalic/HelveticaBlackItalic.woff') format('woff'),
    resolve('HelveticaBlackItalic/HelveticaBlackItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaLightItalic';
    src: resolve('HelveticaLightItalic/HelveticaLightItalic.eot');
    src: resolve('HelveticaLightItalic/HelveticaLightItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaLightItalic/HelveticaLightItalic.woff') format('woff'),
    resolve('HelveticaLightItalic/HelveticaLightItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaMediumItalic';
    src: resolve('HelveticaMediumItalic/HelveticaMediumItalic.eot');
    src: resolve('HelveticaMediumItalic/HelveticaMediumItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaMediumItalic/HelveticaMediumItalic.woff') format('woff'),
    resolve('HelveticaMediumItalic/HelveticaMediumItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaHeavyItalic';
    src: resolve('HelveticaHeavyItalic/HelveticaHeavyItalic.eot');
    src: resolve('HelveticaHeavyItalic/HelveticaHeavyItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaHeavyItalic/HelveticaHeavyItalic.woff') format('woff'),
    resolve('HelveticaHeavyItalic/HelveticaHeavyItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaThinItalic';
    src: resolve('HelveticaThinItalic/HelveticaThinItalic.eot');
    src: resolve('HelveticaThinItalic/HelveticaThinItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaThinItalic/HelveticaThinItalic.woff') format('woff'),
    resolve('HelveticaThinItalic/HelveticaThinItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'HelveticaUltraLightItalic';
    src: resolve('HelveticaUltraLightItalic/HelveticaUltraLightItalic.eot');
    src: resolve('HelveticaUltraLightItalic/HelveticaUltraLightItalic.eot?#iefix')format('embedded-opentype'),
    resolve('HelveticaUltraLightItalic/HelveticaUltraLightItalic.woff') format('woff'),
    resolve('HelveticaUltraLightItalic/HelveticaUltraLightItalic.ttf') format('truetype');
    font-style: normal;
    font-weight: normal;
}*/

/*Helvetica-Neue*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueCyr-Thin';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Thin/HelveticaNeueCyr-Thin.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Thin/HelveticaNeueCyr-Thin.woff2') format('woff2'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Thin/HelveticaNeueCyr-Thin.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Thin/HelveticaNeueCyr-Thin.ttf') format('truetype'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Thin/HelveticaNeueCyr-Thin.eot?#iefix') format('embedded-opentype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot?#iefix') format('embedded-opentype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueCyr-Bold';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Bold/HelveticaNeueCyr-Bold.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Bold/HelveticaNeueCyr-Bold.woff2') format('woff2'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Bold/HelveticaNeueCyr-Bold.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Bold/HelveticaNeueCyr-Bold.ttf') format('truetype'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Bold/HelveticaNeueCyr-Bold.eot?#iefix') format('embedded-opentype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot?#iefix') format('embedded-opentype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueCyr-Light';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Light/HelveticaNeueCyr-Light.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Light/HelveticaNeueCyr-Light.woff2') format('woff2'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Light/HelveticaNeueCyr-Light.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Light/HelveticaNeueCyr-Light.ttf') format('truetype'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Light/HelveticaNeueCyr-Light.eot?#iefix') format('embedded-opentype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot?#iefix') format('embedded-opentype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueCyr-UltraLight';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-UltraLight/HelveticaNeueCyr-UltraLight.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-UltraLight/HelveticaNeueCyr-UltraLight.woff2') format('woff2'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-UltraLight/HelveticaNeueCyr-UltraLight.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-UltraLight/HelveticaNeueCyr-UltraLight.ttf') format('truetype'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-UltraLight/HelveticaNeueCyr-UltraLight.eot?#iefix') format('embedded-opentype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Light/Arteks-Light.eot?#iefix') format('embedded-opentype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueRoman';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Roman/HelveticaNeueCyr-Roman.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Roman/HelveticaNeueCyr-Roman.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Roman/HelveticaNeueCyr-Roman.ttf') format('truetype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot?#iefix') format('embedded-opentype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueCyr-Medium';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Medium/HelveticaNeueCyr-Medium.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Medium/HelveticaNeueCyr-Medium.woff2') format('woff2'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Medium/HelveticaNeueCyr-Medium.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Medium/HelveticaNeueCyr-Medium.ttf') format('truetype'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-Medium/HelveticaNeueCyr-Medium.eot?#iefix') format('embedded-opentype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksMedium/ArteksMedium.eot?#iefix') format('embedded-opentype');*/
/*}*/

/*@font-face {*/
/*    font-family: 'HelveticaNeueCyr-LightItalic';*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-LightItalic/HelveticaNeueCyr-LightItalic.eot');*/
    /*src: url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-LightItalic/HelveticaNeueCyr-LightItalic.woff2') format('woff2'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-LightItalic/HelveticaNeueCyr-LightItalic.woff') format('woff'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-LightItalic/HelveticaNeueCyr-LightItalic.ttf') format('truetype'),*/
    /*     url('/local/templates/main/tpl/css/../assets/fonts/HelveticaNeue/HelveticaNeueCyr-LightItalic/HelveticaNeueCyr-LightItalic.eot?#iefix') format('embedded-opentype');*/

/*    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.eot'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.woff') format('woff'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.ttf') format('truetype'),*/
/*    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/ArteksLight-Italic/ArteksLight-Italic.eot?#iefix') format('embedded-opentype');*/
/*}*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    -moz-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0,0,0, 0);
    -webkit-tap-highlight-color: transparent; /* For some Androids  */
}

html, body {
    height: 100%;
}

body {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background: white;
}

input {
    color: black;
}

input::-webkit-input-placeholder {
    color: #bcbcbc;
}

input::-moz-placeholder          {
    color: #bcbcbc;
}

input:-moz-placeholder           {
    color: #bcbcbc;
}

input:-ms-input-placeholder      {
    color: #bcbcbc;
}

input, button, textarea {
    /*border: none;*/
    /*outline: none;*/
    /*border-radius: 0;*/
    /*-webkit-appearance: none;*/
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

a {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
}

a:focus, a:visited {
    outline: none;
}

.main {
    -ms-flex: 1 0 auto;
    -webkit-box-flex: 1;
    flex: 1 0 auto;
    overflow: hidden;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapp {
    max-width: 1348px;
    margin: 0 auto;
}

.h1 {
    margin: 0 0 65px 0;
    text-align: center;
    font: 45px/50px 'Arteks-Light';
    color: rgba(0, 0, 0, 0.7);
}

.h1._white {
    font: 80px/86px 'Arteks-Light';
    color: white;
}

.h2 {
    position: relative;
    display: block;
    margin: 0 auto 15px auto;
    font: 34px/40px 'Arteks-Regular';
    color: rgba(0, 0, 0, 0.7);
}

.h2._center {
    text-align: center;
}

.h2._big {
    font: 50px/54px 'Arteks-Regular', 'Arial', sans-serif;
    color: #353535;
    color: rgba(0, 0, 0, 0.7);
}

.h2._underline {
    margin-bottom: 45px;
    padding: 0 0 15px 0;
}

.h2._underline:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    display: block;
    width: 210px;
    height: 2px;
    background: #ff7777;
}

.h3 {
    margin: 0 0 25px 0;
    font: 18px/24px 'Arteks-Medium', 'Arial', sans-serif;
    color: black;
}

.clear:after {
    content: "";
    display: table;
    clear: both;
}

p {
    margin: 0 0 30px 0;
    font: 14px/1.5 'Arteks-Light', 'Arial', sans-serif;
    letter-spacing: 0.025em;
    color: #666666;
}

p:last-child {
    margin: 0;
}

.basket-icon {
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
    width: 50px;
    height: 50px;
    background: #fe1515 url('/local/templates/main/tpl/css/../assets/images/icons/basket-icon.svg') center/50% no-repeat;
    z-index: 99;
    transition: 400ms;
}

.basket-icon:hover {
    background-color: #c80c12;
}

/*Owl*/

/*.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    display: block;
    width: 40px;
    height: 30px;
    padding: 10px 0;
    cursor: pointer;
}

.owl-prev {
    left: 0;
    background: resolve('slider-arrow._left.png') center/contain no-repeat;
}

.owl-next {
    right: 0;
    background: resolve('slider-arrow._right.png') center/contain no-repeat;
}*/

.btn {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: 400ms;
}

.btn._burger-icon {
    position: relative;
    display: block;
    width: 35px;
    height: 20px;
}

.btn._burger-icon._js-active {
    position: fixed;
    top: 60px;
    right: 15px;
}

.btn._burger-icon._js-active span {
    opacity: 0;
}

.btn._burger-icon._js-active:after {
    bottom: auto;
    top: 50%;
    -webkit-transform: rotate(45deg) translate(0, 0);
    transform: rotate(45deg) translate(0, 0);
    width: 80%;
    height: 4px;
}

.btn._burger-icon._js-active:before {
    top: 50%;
    bottom: auto;
    -webkit-transform: rotate(-45deg) translate(0, 0);
    transform: rotate(-45deg) translate(0, 0);
    width: 80%;
    height: 4px;
}

.btn._burger-icon span {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
    width: 100%;
    height: 5px;
    background: #e3000f;
    transition: 400ms;
}

.btn._burger-icon:before, .btn._burger-icon:after {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 5px;
    background: #e3000f;
    transition: 400ms;
}

.btn._burger-icon:before {
    content: '';
    top: 0;
}

.btn._burger-icon:after {
    content: '';
    bottom: 0;
}

.btn._catalog {
    margin: 0 15px 0 0;
    padding: 0 20px;
    text-transform: uppercase;
    color: #fe1515;
    background: #f7f7f7;
    /*transition: 0;*/
    font-family: 'Arteks-Regular' !important;
    letter-spacing: 0.1em;
}

.btn._catalog:hover {
    background: #E6E6E6;
}

.btn._authorization {
    position: relative;
    display: block;
    padding: 0 0 0 30px;
    font: 14px/28px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
    letter-spacing: 0.025em;
}

.btn._authorization:before {
    content: '';
    position: absolute;
    top: 45%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
    width: 22px;
    height: 17px;
    background: url('/local/templates/main/tpl/css/../assets/images/icons/icon-authorization.svg') center/contain no-repeat;
}

.btn._authorization:hover {
    color: #fe1515;
}

.btn._points-sale {
    position: relative;
    display: block;
    padding: 0 0 0 20px;
    font: 14px/28px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
}

.btn._points-sale:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: block;
    width: 14px;
    height: 22px;
    background: url('/local/templates/main/tpl/css/../assets/images/icons/icon-points-sale.svg') center/contain no-repeat;
}

.btn._points-sale:hover {
    color: #fe1515;
}

.btn._transparent {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font: 13px/16px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    border-bottom: 2px solid #ff7777;
}

.btn._transparent:hover {
    color: #ff7777;
}

.btn._scroll-down {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: block;
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
}

.btn._scroll-down:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    display: block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    -webkit-animation: scrollDownMove 1200ms infinite;
    animation: scrollDownMove 1200ms infinite;
}

.btn._red {/*padding: 0 90px;
        text-transform: uppercase;
        font: 14px/75px var(--Hn-medium);
        color: white;
        background: var(--red) resolve('btn-red.jpg') center/cover no-repeat;*/
    padding: 25px;
    font: 16px 'Arteks-Medium', 'Arial', sans-serif;
    color: white;
    background: #fe1515;
}

.btn._red:hover {
    background: #e41e25;
}

.btn._italic {
    letter-spacing: 0.025em;
    font: 14px/30px 'Arteks-Light-Italic', 'Arial', sans-serif;
    font-weight: 900;
}

.btn._italic:hover {
    color: #ff7777;
}

.btn._color-gray {
    color: #b7b6b6;
}

.btn._color-red {
    color: #e41e25;
}

.btn._white {
    letter-spacing: 0.05em;
    font: 14px/36px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.btn._white:hover {
    color: #ff7777;
}

.btn__dealer {
    padding-left: 50px !important;
    padding-right: 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    z-index: 1;
    font-family: 'Arteks-Regular' !important;
}

.btn__dealer:hover {
    -webkit-box-shadow: inset 0px 0px 5px 5px rgba(184,22,22,1);
    -moz-box-shadow: inset 0px 0px 5px 5px rgba(184,22,22,1);
    box-shadow: inset 0px 0px 5px 5px rgba(184,22,22,1);
}

.btn__dealer:hover:before {
    opacity: 0;
}

.btn__dealer:hover:after {
    opacity: 1;
}

.btn__dealer:before,
.btn__dealer:after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background-image: url(/local/templates/main/tpl/css/../assets/images/icons/butt.png);
    background-size: cover;
    background-position: center;
    transition: all 1s;
}

.btn__dealer:after {
    transform: rotate(180deg);
    opacity: 0;
}
/* Animate*/

@-webkit-keyframes scrollDownMove {
    0%   { -webkit-transform: translate(-50%, -45%) rotate(45deg); transform: translate(-50%, -45%) rotate(45deg) }
    50%  { -webkit-transform: translate(-50%, -75%) rotate(45deg); transform: translate(-50%, -75%) rotate(45deg) }
    100% { -webkit-transform: translate(-50%, -45%) rotate(45deg); transform: translate(-50%, -45%) rotate(45deg) }
}

@keyframes scrollDownMove {
    0%   { -webkit-transform: translate(-50%, -45%) rotate(45deg); transform: translate(-50%, -45%) rotate(45deg) }
    50%  { -webkit-transform: translate(-50%, -75%) rotate(45deg); transform: translate(-50%, -75%) rotate(45deg) }
    100% { -webkit-transform: translate(-50%, -45%) rotate(45deg); transform: translate(-50%, -45%) rotate(45deg) }
}

.header {
    margin: 0 0 60px 0;
}

.header._mb0 {
    margin-bottom: 0;
}

.header__wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: auto !important;
    padding-top: 40px;
    padding-bottom: 40px;
}

.header__wrapper._js-active {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    height: auto;
    padding: 50px 0;
    background: white;
    overflow-y: auto;
    z-index: 9999;
}

.header__wrapper._js-active .btn._catalog {
    margin-right: 0;
    margin-bottom: 25px;
}

.header__wrapper._js-active .btn._authorization {
    margin-bottom: 10px;
}

.header__wrapper._js-active .header__btns {
    display: block;
}

.header__wrapper._js-active .header__navigation {
    margin: 0 auto;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
    order: 3;
}

.header__wrapper._js-active .main-nav._header {
    display: block;
    text-align: center;
}

.header__wrapper._js-active .main-nav._header .main-nav__link {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 40px;
}

.header__wrapper._js-active .main-logo, .header__wrapper._js-active .header-search {
    display: none;
}

.header__navigation {
    position: relative;
}

.header__btns {
    display: none;
}

.footer__top {
    background: #f1f1f1;
}

.footer .main-nav__link {
    transition: all 0.4s !important;
}

.footer .main-nav__link:hover {
    color: #f4061c;
}

.footer__top-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1420px;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer__top-phone {
    display: block;
    font: 16px/24px 'Arteks-Medium', 'Arial', sans-serif;
    color: black;
    transition: 400ms;
}

.footer__top-phone:hover {
    color: #fe1515;
}

.footer__bottom {
    background: #f4061c;
}

.footer__bottom-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 1420px;
    margin: 0 auto;
    padding-top: 25px;
    padding-bottom: 25px;
}

.footer__logo {
    -ms-flex-preferred-size: 125px;
    flex-basis: 125px;
    height: auto;
    margin: 0 30px 0 0;
    font-size: 0;
}

.footer__logo img {
    max-width: 100%;
    max-height: 100%;
}

.footer__copyright {
    letter-spacing: 0.025em;
    font: 17px/22px 'Arteks-Light', 'Arial', sans-serif;
    color: white;
}

.footer__developer {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 0 0 auto;
    letter-spacing: 0.025em;
    font: 17px/22px 'Arteks-Light', 'Arial', sans-serif;
    color: white;
}

.footer__developer img {
    transition: all 0.4s;
}

.footer__developer a:hover img {
    opacity: 0.75;
}

.footer__developer a {
    display: inline-block;
    width: 100px;
    height: auto;
    margin: 0 0 0 4px;
}

.footer__developer img {
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
}

.main-nav {
    display: none;
}

.main-nav._header .main-nav__link {
    display: block;
    margin: 0;
    font: 12px/24px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 400ms;
}

.main-nav._header .main-nav__link:hover, .main-nav._header .main-nav__link._active {
    color: #fe1515;
}

.main-nav__link {
    margin: 0 40px 0 0;
    text-transform: none;
    letter-spacing: 0.05em;
    font: 16px/24px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
}

.main-logo {
    display: inline-block;
    -ms-flex-preferred-size: 32%;
    flex-basis: 32%;
    height: auto;
    margin: 0 7% 0 0;
    font-size: 0;
}

.main-logo img {
    max-width: 100%;
    max-height: 100%;
}

.header-search {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: 54px;
    margin: 0 auto 0 0;
    border: 2px solid transparent;
    border-radius: 5px;
    background: white;
    transition: 400ms;
}

.header-search.js-focused {
    left: 35px;
    width: calc(100% - 35px);
    padding: 0 20px 0 0;
    border-color: #fe1515;
    z-index: 500000;
}

.header-search.js-focused .header-search__close {
    display: block;
}

.header-search__close {
    position: relative;
    display: none;
    width: 20px;
    height: 20px;
}

.header-search__close:before, .header-search__close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fe1515;
}

.header-search__close:before {
    content: '';
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
}

.header-search__close:after {
    content: '';
    -webkit-transform: translate(0, -50%) rotate(-45deg);
    transform: translate(0, -50%) rotate(-45deg);
}

.header-search__field {
    display: none;
    width: calc(100% - 100px);
    height: calc(100% - 4px);
    padding: 10px 15px;
    outline: none;
    font: 12px 'Arteks-Light', 'Arial', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 400ms;
}

.header-search__field.js-active {
    display: block;
    visibility: visible;
    opacity: 1;
}

.header-search__submit {
    width: 15px;
    height: 15px;
    background: url('/local/templates/main/tpl/css/../assets/images/icons/icon-search.png') center/contain no-repeat;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 400ms;
}

.promo-block {
    width: 100%;
    margin: 0 0 60px 0;
    background: url('/local/templates/main/tpl/css/../assets/images/pict/promo-bg.jpg') center/cover no-repeat;
}

.promo-block__wrapper {
    position: relative;
    height: calc(100vh - 140px);
    padding: 75px 0;
}

.promo-block__wrapper .h1 {
    text-align: right;
}

.novelties {
    margin: 0 0 40px 0;
}



.product-card__novelty .novelties-slider {
    position: relative;
    width: 350px;
    height: 400px;
    overflow: hidden;
}

.novelties .novelties-slider {
    position: relative;
    margin: 0 0 40px 0;
    padding: 20px 75px 40px 75px;
}

.product-card__novelty .novelties-slider .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;

    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.novelties-slider__item {
    position: relative;
    display: block;
    overflow: hidden;
}

.novelties-slider__item:hover img {
    transform: scale(1.1);
}

.novelties-slider__item-img {
    transition: all 4s;
}
/*width: 25.3vw;
        height: 25.3vw;*/

.novelties-slider__item:hover .novelties-slider__item-caption {
    opacity: 1;
    visibility: visible;
}

.novelties-slider__item-img {
    max-width: 100%;
    max-height: 100%;
}

.novelties-slider__item-about {
    font-family: 'Arteks-Regular';
    font-size: 20px;
}

.novelties-slider__item-caption {
    position: absolute;
    top: 35px;
    left: 30px;
    bottom: 35px;
    right: 30px;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 140px 15px 0 15px;
    background: rgba(255, 255, 255, .9);
    opacity: 0;
    visibility: hidden;
    transition: 400ms;
}

.novelties-slider__item-code {
    position: absolute;
    top: -20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    text-align: center;
    margin: 0 auto 45px auto;
    padding: 35px 25px 15px 25px;
    border: 1px solid #f73333;
    font: 16px/16px 'Arteks-Light', 'Arial', sans-serif;
    letter-spacing: 0.025em;
    color: black;
    white-space: nowrap;
    z-index: 10;
}

.novelties-slider__item-info {
    width: 100%;
    text-align: center;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.novelties-slider__item-title {
    max-height: 44px;
    overflow: hidden;
}
.novelties-slider__item-collection {
    width: 100%;
    margin: 0 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font: 12px/24px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
}

.novelties-slider__item-collection span {
    display: block;
}

.novelties-slider__item-title {
    display: inline-block;
    padding: 0 30px;
    font: 20px/1.15 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    letter-spacing: 3px;

}

.novelties-slider__item-title:after {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 50%;
    margin: 0 auto;
    background-color: #fe1515;
    height: 2px;
    display: block;
    content: '';
}

.novelties-slider__item-title span {
    text-transform: uppercase;
}

.production {
    margin: 0 0 80px 0;
}

.production__info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: 500px;
    margin: 0 25px;
    padding: 35px 0;
    background: #f7f7f7;
}

.production__info-desc {
    -ms-flex-preferred-size: 380px;
    flex-basis: 380px;
}

.production__info-img {
    position: relative;
    left: 25px;
    width: 60%;
    height: 100%;
    background: url('/local/templates/main/tpl/css/../assets/images/pict/production-bg.jpg') center/cover no-repeat;
}

.production__info-item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 100px 70px 0;
}

.production__info-item:last-child {
    margin-bottom: 0;
}

.production__info-box._text {
    font: 51px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: #fe1515;
}

.production__info-box._text span {
    display: block;
    width: 50px;
    text-transform: uppercase;
    font: 10px/16px 'Arteks-Regular', 'Arial', sans-serif;
    color: inherit;
}

.production__info-box._img {
    font-size: 0;
}

.production__info-box._img img {
    width: auto;
    height: 50px;
}

.production__info-caption {
    -ms-flex-preferred-size: 160px;
    flex-basis: 160px;
    letter-spacing: 0.075em;
    font: 21px/30px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
}

.dealer {
    padding: 0 0 40px 0;
    background-image: url('/local/templates/main/tpl/css/../assets/images/pict/dealer-bg.png');
    background-position: right bottom;
    background-size: 400px;
    background-repeat: no-repeat;
}

.dealer__wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 0 0 40px 0;
    padding: 0 40px;
}

.dealer__info {
    -ms-flex-preferred-size: 825px;
    flex-basis: 825px;
}

.dealer__statistics {
    -ms-flex-preferred-size: 365px;
    flex-basis: 365px;
    flex-shrink: 0;
    margin-right: 50px;
}

.dealer__statistics-info {
    margin: 0 0 35px 0;
    letter-spacing: 0.025em;
    font: 24px/40px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
}

.dealer__statistics-info._m0 {
    margin: 0;
}

.dealer__statistics span {
    font-size: 36px;
    color: #ff0000;
}

.dealer__desc {
    margin: 0 0 35px 0;
    letter-spacing: 0.025em;
    font: 14px/1.5 'Arteks-Light', 'Arial', sans-serif;
    color: #3c3c3c;
}

.about-company {
    margin: 0;
    background: #f4061c;
}

.about-company__wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 145px 40px;
    background: url('/local/templates/main/tpl/css/../assets/images/pict/about-company-bg.jpg') center/cover no-repeat;
}

.about-company__logo {
    -ms-flex-preferred-size: 240px;
    flex-basis: 240px;
    height: auto;
    font-size: 0;
}

.about-company__logo img {
    max-width: 100%;
    max-height: 100%;
}

.about-company__desc {
    -ms-flex-preferred-size: 600px;
    flex-basis: 600px;
    letter-spacing: 0.025em;
    font: 16px/1.5 'Arteks-Light-Italic', 'Arial', sans-serif;
    color: white;
}

.company-news__wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin: 0 0 40px 0;
    padding: 40px 0;
}

.company-news__list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-right: 50px;
    -ms-flex-preferred-size: 845px;
    flex-basis: 845px;
}

.company-news__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    border-right: 1px solid #d0d0d0;
}

.company-news__item:nth-child(odd) {
    -ms-flex-preferred-size: 415px;
    flex-basis: 415px;
    padding: 0 45px 0 0;
}

.company-news__item:nth-child(even) {
    -ms-flex-preferred-size: 430px;
    flex-basis: 430px;
    padding: 0 0 0 60px;
}

.company-news__item:last-child {
    border-right: none;
}

.company-news__item-title {
    /*width: 75%;*/
    margin: 0 0 15px 0;
    letter-spacing: 0.025em;
    font: 21px/32px 'Arteks-Medium', 'Arial', sans-serif;
    color: black;
}

.company-news__item-date {
    margin: 0 0 15px 0;
    letter-spacing: 0.025em;
    font: 13px/40px 'Arteks-Regular', 'Arial', sans-serif;
    color: #f4061c;
}

.company-news__item-desc {
    margin: 0 0 30px 0;
    letter-spacing: 0.025em;
    font: 14px/1.5 'Arteks-Light', 'Arial', sans-serif;
    color: #3c3c3c;
}

.social {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.social__item {
    display: block;
    margin: 0 35px 0 0;
}

.social__item:last-child {
    margin-right: 0;
}

.social__item:hover svg {
    fill: #fe1515;
}

.social__item svg {
    fill: #c7c7c7;
    transition: 400ms;
}

.social__item._vk {
    width: 25px;
    height: 15px;
}

.social__item._fb {
    width: 10px;
    height: 22px;
}

.social__item._insta {
    width: 22px;
    height: 22px;
}

.novelties-item {
    position: relative;
    width: 405px;
    height: 405px;
    padding: 75px 25px 25px 25px;

}

.novelties-item__label {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    padding: 20px 25px 0 25px;
    background: #fe1515;
    font: 16px/36px 'Arteks-Medium', 'Arial', sans-serif;
    color: white;
}

.novelties-item__info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 100%;
    text-align: center;
}

.novelties-item__collection {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font: 14px/16px 'Arteks-Light', 'Arial', sans-serif;
    color: white;
}

.novelties-item__title {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 0 10px;
    border-bottom: 2px solid #fe1515;
    font: 30px/48px 'Arteks-Bold', 'Arial', sans-serif;
    color: white;
}

.news-list__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 100px 0;
}

.news-list__item:nth-child(even) .news-list__item-img {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
}

.news-list__item:hover img {
    transform: scale(1.1);
}

.news-list__item:nth-child(even) .news-list__item-preview {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
    margin: 0 150px 0 auto;
}

.news-list__item-img {
    width: 50%;
    font-size: 0;
    overflow: hidden;
}

.news-list__item-img:hover img {
    transform: scale(1.1);
}

.news-list__item-img img {
    width: 100%;
    height: auto;
    transition: all 4s;
}

.news-list__item-preview {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    flex-basis: 50%;
    margin: 0 !important;
    padding-left: 115px;
    padding-right: 115px;
    text-align: center;
}

.news-list__item-title {
    margin: 0 0 15px 0;
    font: 31px/45px 'Arteks-Medium', 'Arial', sans-serif;
    color: black;
}

.news-list__item-date {
    margin: 0 0 30px 0;
    font: 13px/16px 'Arteks-Regular', 'Arial', sans-serif;
    color: #f4061c;
}

.news-list__item-desc {
    margin: 0 0 30px 0;
    font: 14px/30px 'Arteks-Light', 'Arial', sans-serif;
    color: #3c3c3c;
}

.pagination {
    margin: 0 0 80px 0;
    text-align: center;
}

.pagination__prev, .pagination__next {
    font: 14px 'Arteks-Regular', 'Arial', sans-serif;
    color: #f3051b;
    transition: 400ms;
}

.pagination__prev:hover, .pagination__next:hover {
    color: #c7c7c7;
}

.pagination__next {}

.pagination__pages {
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    margin: 0 55px;
}

.pagination__pages-link {
    padding: 0 15px;
    font: 20px 'Arteks-Medium', 'Arial', sans-serif;
    color: #131313;
    transition: 400ms;
}

.pagination__pages-link:hover {
    color: #f3051b;
}

.pagination__pages-link._active {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
    color: #f3051b;
}

.not-found {
    width: 100%;
    height: calc(100vh - 200px);
    padding: 10vh 0 0 0;
    background: url('/local/templates/main/tpl/css/../assets/images/pict/not-found-bg.jpg') center/cover no-repeat;
    color: black;
    text-align: center;
}

.not-found__code {
    margin: 0 0 20px 0;
    font: 72px/76px 'Arteks-Bold', 'Arial', sans-serif;
}

.not-found__title {
    font: 45px/50px 'Arteks-Bold', 'Arial', sans-serif;
}

.blog-list__wrapper {}

.blog-list__item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 100px 0;
}

.blog-list__item-search {
    color: #E80110;
}

.blog-list__item:nth-child(even) .blog-list__item-img {
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
    order: 2;
}

.blog-list__item:nth-child(even) .blog-list__item-preview {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
    margin: 0 150px 0 auto;
}

.blog-list__item-img {
    width: 50%;
    font-size: 0;
    overflow: hidden;
}

.blog-list__item-img:hover img {
    transform: scale(1.2);
}

.blog-list__item-img img {
    transition: all 4s;
}

.blog-list__item-img img {
    width: 100%;
    height: auto;
}

.blog-list__item:hover img {
    transform: scale(1.1);
}

.blog-list__item-preview {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-preferred-size: 450px;
    width: 50%;
    padding-left: 100px;
    padding-right: 100px;
    text-align: center;
    box-sizing: border-box;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin: 0 !important;
    width: 50%;
}

.blog-list__item-title {
    margin: 0 0 15px 0;
    font: 31px/45px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.blog-list__item-date {
    margin: 0 0 30px 0;
    font: 13px/16px 'Arteks-Regular', 'Arial', sans-serif;
    color: #f4061c;
}

.blog-list__item-desc {
    margin: 0 0 30px 0;
    font: 14px/30px 'Arteks-Light', 'Arial', sans-serif;
    color: #3c3c3c;
}

.basket-page__wrapper {
    padding: 0;
}

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

.basket-page__total {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    height: 475px;
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 30px 40px 60px 40px;
    text-align: center;
}

.basket-page__total:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    bottom: 15px;
    right: 20px;
    display: block;
    border: 2px solid #ff7777;
    z-index: -1;
}

.basket-page__total-info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.basket-page__total-name {
    font: 14px/16px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.basket-page__total-cost {
    margin: 0 0 30px 0;
    font: 45px/48px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.basket-page__total-cost span {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
}

.basket-page__total-cost:after {
    content: 'Сумма заказа';
    display: block;
    font: 14px/16px 'Arteks-Regular', 'Arial', sans-serif;
}

.basket-page__total-amount {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.basket-page__total-kinds, .basket-page__total-packages {
    font: 12px/14px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.basket-page__total-kinds span, .basket-page__total-packages span {
    display: block;
    font: 34px/38px 'Arteks-Light', 'Arial', sans-serif;
}

.basket-page__total-kinds {
    margin: 0 60px 0 0;
}

.counter {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    width: 200px;
}

.counter__minus, .counter__plus {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    font: 20px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: #fe1515;
    background: white;
    transition: 400ms;
}

.counter__minus:hover, .counter__plus:hover {
    color: white;
    background: #fe1515;
}

.counter__field {
    display: inline-block;
    width: 105px;
    height: 40px;
    padding: 0 10px;
    text-align: center;
    font: 16px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.counter__field:focus {
    border-color: transparent;
}

.contacts-page {
    padding-right: 0;
}

.contacts-page__wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: calc(100vh - 200px);
}

.contacts-page__places {
    -ms-flex-preferred-size: 385px;
    flex-basis: 385px;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 40px 25px 40px 0;
}

.contacts-page__point {
    display: none;
    padding: 25px 15px;
    border: 2px solid transparent;
    color: black;
    transition: 400ms;
    cursor: pointer;
}

.contacts-page__point._active, .contacts-page__point:hover {
    /*border-color: #ff7777;*/
}

.contacts-page__point-title {
    margin: 0 0 10px 0;
    font: 18px/22px 'Arteks-Regular', 'Arial', sans-serif;
    color: inherit;
}

.contacts-page__point-phone {
    font: 18px/26px 'Arteks-Regular', 'Arial', sans-serif;
    color: inherit;
    display: block;
}

.contacts-page__point-mode {
    margin: 0 0 5px 0;
    font: 12px/14px 'Arteks-Light', 'Arial', sans-serif;
    color: inherit;
}

.contacts-page__point-address {
    font: 18px/24px 'Arteks-Light', 'Arial', sans-serif;
    color: inherit;
    margin-top: 8px;
}

.contacts-page__map {
    width: calc(100% - 385px);
    height: 100%;
}

.contacts-page__map-zoomcontrols {
    top: 50%;
    right: 70px !important;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.contacts-page__map-zoomin, .contacts-page__map-zoomout {
    position: relative;
    border-radius: 50%;
    background: #e41e25;
    text-align: center !important;
    font-family: 'Arteks-Light', 'Arial', sans-serif;
    cursor: pointer;
    transition: 400ms;
}

.contacts-page__map-zoomin:hover, .contacts-page__map-zoomout:hover {
    background: #c80c12;
}

.contacts-page__map-zoomin:before, .contacts-page__map-zoomout:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: white;
}

.contacts-page__map-zoomin {
    width: 50px;
    height: 50px;
    margin: 0 0 10px 0;
}

.contacts-page__map-zoomin:before {
    content: '+';
    font-size: 44px;
    line-height: 50px;
}

.contacts-page__map-zoomout {
    width: 30px;
    height: 30px;
}

.contacts-page__map-zoomout:before {
    content: '–';
    font-size: 30px;
    line-height: 30px;
}

/* =============================================================
Custom Select
============================================================= */
.select_custom{
	border: 1px solid #eee;
	border-radius:10px;
	position:relative;
}
.select_custom:before{
	content:"Точка";
	font-size:12px;
	color:#222;
	position:absolute;
	top:-10px;
	left:10px;
	background:#fff;
	padding:5px 5px;
	display:block;
	border-radius:3px;
}
.select_custom:after{
	content:"";
	position: absolute;
    top: 20px;
    right: 10px;
    -webkit-transform: translate(0, -60%);
    transform: translate(0, -60%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fe1515;
}
.jq-selectbox {
    position: relative;
    margin: 0 0 25px 0;
    box-sizing: border-box;
    transition: 400ms;
    cursor: pointer;
	width:100%;
}
.jq-selectbox__select:before{
	content:"Регион";
	font-size:12px;
	color:#222;
	position:absolute;
	top:-13px;
	left:10px;
	background:#fff;
	padding:5px 5px;
	display:block;
	border-radius:3px;
}
.jq-selectbox__select {
    height: 100%;
    padding: 0 20px 0 15px;
    padding: 0 25px 0 15px;
    box-sizing: border-box;
    background-color: #fff;
	border: 1px solid #eee;
	border-radius:10px;
}

.jq-selectbox__select-text {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 40px;
	line-height:40px!important;
    text-transform: uppercase;
    font: 18px/23px 'Arteks-Regular', 'Arial', sans-serif;
    white-space: normal;
    text-overflow: ellipsis;
    color: black;
}

.jq-selectbox__trigger {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -60%);
    transform: translate(0, -60%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fe1515;
}

.jq-selectbox__dropdown {
    width: 260px;
    left: 12px;
    top: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
    border: none;
    border-radius: 0;
    background: white;
    box-shadow: 0 1px 7px 0px rgba(0, 0, 0, 0.35);
}

.jq-selectbox.focused .jq-selectbox__select {
    border: none;
}

.jq-selectbox ul {
    margin: 0;
    padding: 0;
}

.jq-selectbox li {
    padding: 0 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    font: 12px/30px 'Arteks-Medium', 'Arial', sans-serif;
    color: black;
    box-sizing: border-box;
    cursor: pointer;
    transition: 400ms;
}

.jq-selectbox li.selected, .jq-selectbox li:hover {
    color: #fe1515;
}

.video {
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    height: 510px;
    width: 100%;
    margin-bottom: 60px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-end;
    align-items: flex-end;
}

.video.is-hidden {
    display: none;
}

.video-wrapper {
    height: 510px;
    margin-bottom: 50px;
}

.video__content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    height: 50%;
    -ms-align-items: center;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.video__name {
    color: #fff;
    font: 18px/40px 'Arteks-Regular', 'Arial', sans-serif;
}

.video__play {
    width: 84px;
    height: 84px;
    background-image: url(/local/templates/main/tpl/css/../assets/images/icons/play.svg);
    background-repeat: none;
    background-position: center;
}

.catalog-item__remove {
    position: absolute;
    width: 20px;
    height: 20px;
    display: block;
    right: 20px;
    top: 20px;
    z-index: 5;
    transition: all 0.4s;
}

.catalog-item__remove:hover:before {
    transform: rotate(-45deg);
}

.catalog-item__remove:hover:after {
    transform: rotate(45deg);
}

.catalog-item__remove:before,
.catalog-item__remove:after {
    display: block;
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fe1515;
    transition: all 0.4s;
}

.catalog-item__remove:before {
    transform: rotate(45deg);
}

.catalog-item__remove:after {
    transform: rotate(-45deg);
}

.catalog-item {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    width: 25%;
    height: 475px;
    padding: 100px 15px 60px 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 5px;
    margin-bottom: 5px;
}


.catalog-item._basket:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    background: rgba(0, 0, 0, .2);
}

.catalog-item:hover .catalog-item__wrapper {
    opacity: 1;
    visibility: visible;
    transition-delay: 400ms;
}

.catalog-item:hover:before {
    content: '';
    opacity: 1;
}

.catalog-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    background: linear-gradient(to top, rgba(0, 0, 0, .70), transparent);
    opacity: 0;
    transition: 800ms;
    z-index: 1;
}

.catalog-item__wrapper {
    position: relative;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    transition: 400ms;
}

.catalog-item__wrapper._basket {
    opacity: 1;
    visibility: visible;
}

.catalog-item__labels {
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    z-index: 2;
}

.catalog-item__label {
    margin: 5px 0;
    padding: 20px;
    text-align: center;
    font: 14px/18px 'Arteks-Medium', 'Arial', sans-serif;
    color: white;
    background: #fe1515;
}

.catalog-item__code {
    position: relative;
    margin: 0 0 5px 0;
    font: 30px/36px 'Arteks-Bold', 'Arial', sans-serif;
    color: white;
}

.catalog-item__code span {
    display: inline-block;
    padding: 0 35px;
    border-bottom: 1px solid #fe1515;
}

.catalog-item__code._basket {
    padding: 0;
    border: none;
    font-size: 18px;
    line-height: 20px;
}

.catalog-item__collection {
    font: 20px/1 'Arteks-Light', 'Arial', sans-serif;
    color: white;
    letter-spacing: 4px;
}

.catalog-item__collection span {
    text-transform: uppercase;
}
.catalog-item__collection span.catalog-item__fon {
    display: inline;
    font-size: 14px;
    line-height: 20px;
    text-transform: lowercase;
    vertical-align: middle;
}
.catalog-item__value {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.catalog-item__value._basket {
    padding: 15px 0 0 0;
}

.catalog-item__value._basket .catalog-item__price {
    width: auto;
    margin: 0 15px 0 0;
    font: 14px/18px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.catalog-item__value._basket .catalog-item__price span {
    display: inline-block;
    font-size: inherit;
    font-family: inherit;
}

.catalog-item__price {
    width: 100%;
    letter-spacing: 0.05em;
    font: 14px/18px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.catalog-item__price span {
    display: block;
    font: 25px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.catalog-item__cost {
    font: 14px/18px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.catalog-item__cost span {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
}

.catalog-list__wrapper {
    padding: 0 !important;
}

.catalog-list__goods {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 130px 0;
    width: calc(100% + 30px);
}

.catalog-filter {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 0 25px 0;
}

.catalog-filter__options {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin: 0 0 25px 0;
}

.catalog-filter__box {
    position: relative;
    margin: 0 50px 0 0;
}

.catalog-filter__box:hover .catalog-filter__field {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    opacity: 1;
    visibility: visible;
}

.catalog-filter__box:hover .catalog-filter__box-title:after {
    content: '';
    -webkit-transform: translate(0, -60%) rotate(180deg);
    transform: translate(0, -60%) rotate(180deg);
}

.catalog-filter__box:last-child {
    margin-right: 0;
}

.catalog-filter__box-title {
    position: relative;
    padding: 0 20px 0 0;
    text-transform: uppercase;
    font: 12px/40px 'Arteks-Regular', 'Arial', sans-serif;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: black;
    cursor: pointer;
}

.catalog-filter__box-title:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -60%);
    transform: translate(0, -60%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fe1515;
    transition: 400ms;
}

.catalog-item__value-size {
    margin-bottom: 5px;
}

.catalog-item__value {
    margin-top: 55px;
}

.catalog-filter__field {
    position: absolute;
    top: 100%;
    left: 0;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    width: 150px;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 1px 7px 0px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: 800ms;
    z-index: 10;
}

.catalog-filter__field-clear {
    position: relative;
    display: block;
    padding: 15px 0 15px 20px;
    font: 10px 'Arteks-Medium', 'Arial', sans-serif;
    color: #fe1515;
    transition: 400ms;
}

.catalog-filter__field-clear:hover {
    color: #c80c12;
}

.catalog-filter__field-clear:hover i:before, .catalog-filter__field-clear:hover i:after {
    content: '';
    background: #c80c12;
}

.catalog-filter__field-clear i {
    position: absolute;
    top: 45%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 10px;
    height: 10px;
}

.catalog-filter__field-clear i:before, .catalog-filter__field-clear i:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 1px;
    background: #fe1515;
    transition: 400ms;
}

.catalog-filter__field-clear i:before {
    content: '';
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.catalog-filter__field-clear i:after {
    content: '';
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.catalog-filter__field label {
    cursor: pointer;
}

.catalog-filter__field label:hover span {
    color: #fe1515;
}

.catalog-filter__field span {
    display: block;
    padding: 15px 0;
    font: 12px 'Arteks-Light', 'Arial', sans-serif;
    color: black;
    transition: 400ms;
}

.catalog-filter__field input[type="checkbox"] {
    display:none;
}

.catalog-filter__field input[type="checkbox"]:checked + span {
    color: #fe1515;
}

.catalog-filter__categories {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.catalog-filter__wrapper {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 15px 0;
}

.catalog-filter__sorting {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    z-index: 2;
    justify-content: space-between;
}

.catalog-filter__sorting span {
    font: 14px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.catalog-filter__sorting .jq-selectbox {
    margin-bottom: 0;
    z-index: 98;
}

.catalog-filter__sorting .jq-selectbox__select-text {
    height: auto;
    font-size: 12px;
    line-height: 12px;
}

.catalog-filter__sorting .jq-selectbox__dropdown {
    top: 20px !important;
}

.catalog-filter__sorting .jq-selectbox__dropdown ul {
    padding: 10px 0;
}

.catalog-filter__radio {
    position: relative;
    margin: 0 20px 0 0;
}

.catalog-filter__radio:last-child {
    margin-right: 0;
}

.catalog-filter__radio label {
    text-transform: uppercase;
    font: 12px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.catalog-filter__radio input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.catalog-filter__radio input[type="radio"]:checked + label {
    color: #fe1515;
}

.content {
    max-width: 990px;
    margin: 0 auto 150px auto;
}

.content a {
    color: #fe1515;
    transition: 400ms;
}

.content a:hover {
    text-decoration: underline;
    color: #c80c12;
}

.content figure {
    margin: 0 0 50px 0;
    padding: 20px 0 0 0;
}

.content figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 30px 0;
}

.content figure figcaption {
    position: relative;
    padding: 0 0 0 130px;
    font: 14px/30px 'Arteks-Light-Italic', 'Arial', sans-serif;
    color: black;
}

.content figure figcaption:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    display: block;
    width: 100px;
    height: 4px;
    background: #fe1515;
}

.content blockquote {
    max-width: 790px;
    margin: 0 auto 30px auto;
    padding: 30px 30px 50px 100px;
    border: 2px solid #f9828d;
    border-radius: 8px;
}

.content blockquote cite {
    display: block;
    margin: 0 0 15px 0;
    font: 18px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.content blockquote p {
    position: relative;
    padding: 0 50px 0 35px;
    font: 14px/30px 'Arteks-Light-Italic', 'Arial', sans-serif;
    color: black;
}

.content blockquote p:before, .content blockquote p:after {
    position: absolute;
    font: 60px 'Arteks-Light', 'Arial', sans-serif;
    color: #fe1515;
}

.content blockquote p:before {
    content: '«';
    top: 0;
    left: 0;
}

.content blockquote p:after {
    content: '»';
    bottom: 0;
    right: 0;
}

.content ol {
    margin: 0 0 50px 0;
    padding: 0 0 0 100px;
    list-style: none;
    counter-reset: item;
}

.content ol li {
    position: relative;
    margin: 0 0 15px 0;
    padding: 0 0 0 35px;
    font: 14px/22px 'Arteks-Light', 'Arial', sans-serif;
    color: #444444;
}

.content ol li:before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    font: 18px/22px 'Arteks-Regular', 'Arial', sans-serif;
    color: #fe1515;
}

.content ul {
    margin: 0 0 50px 0;
    padding: 0 0 0 100px;
    list-style: none;
}

.content ul li {
    position: relative;
    margin: 0 0 15px 0;
    padding: 0 0 0 35px;
    font: 14px/22px 'Arteks-Light', 'Arial', sans-serif;
    color: #444444;
}

.content ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fe1515;
}

.text-block {
    margin: 0 0 30px 0;
    font: 14px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: #666666;
}

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

.text-block._small {
    max-width: 645px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.product-card__inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 100px 0;
}

.product-card__main-info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 0 50px 0;
    justify-content: space-between;
    width: 100%;
}

.product-card__info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 50%;
}

.product-card__preview {
    position: relative;

    width: 44%;
    height: 760px;
    margin: 0 30px 0 0;
    background: black;
}

.product-card__preview-img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 0;
}

.product-card__preview-img._hide {
    display: none;
}

.product-card__preview-img img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
}

.product-card__gallery {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
    width: 100%;
}

.product-card__novelty {
    position: relative;
    width: 350px;
    height: 490px;
    margin: 0 0 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.product-card__novelty .novelties-slider__item {
    /*height: 100%;*/
}

.product-card__novelty .novelties-slider__item-img {
    height: 100%;
    width: 100%;
}

.product-card__novelty .novelties-slider__item-caption {
    opacity: 1;
    visibility: visible;
}

.product-card__novelty-info {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: 100%;
    padding: 70px 15px 40px 15px;
    border: 2px solid #fe1515;
}

.product-card__novelty-title {
    padding: 0 0 10px 0;
    border-bottom: 1px solid #fe1515;
    font: 30px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.product-card__novelty-wrapper {
    text-align: center;
}

.product-card__novelty-code {
    position: relative;
    margin: 0 0 5px 0;
    font: 30px/36px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.product-card__novelty-code span {
    display: inline-block;
    padding: 0 35px;
    border-bottom: 2px solid #fe1515;
}

.product-card__novelty-collection {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font: 12px/18px 'Arteks-Light', 'Arial', sans-serif;
    color: white;
}

.product-card__novelty__value {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.product-card__novelty-price {
    width: 100%;
    letter-spacing: 0.05em;
    font: 14px/18px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.product-card__novelty-price span {
    display: block;
    font: 25px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: white;
}

.product-card__textures {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1020px;
}

.product-card__textures-title {
    width: 100%;
    margin: 0 0 15px 0;
    font: 18px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.product-card__textures-img {
    position: relative;
    display: block;
    width: 23%;
    height: 14.375vw;
    margin: 0 10px 30px 0;
    overflow: hidden;
}

.product-card__textures-img:hover img {
    -webkit-transform: translate(-50%, -50%) scale(1.1);
    transform: translate(-50%, -50%) scale(1.1);
}

.product-card__textures-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: 1200ms;
}

.product-card__catalog {
    width: 100%;
    margin-bottom: 30px;
    font: 14px/18px 'Arteks-Medium', 'Arial', sans-serif;
    color: #F3051B;
}
.product-card__catalog:before {
    content: '';
    display: inline-block;
    background-image: url("/local/templates/main/tpl/css/../assets/images/img/arrow_left.svg");
    background-position: left center;
    background-repeat: no-repeat;
    width: 13px;
    height: 9px;
    margin-right: 7px;
}
.product-card__desc {
    margin: 0 50px 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card__code {
    margin: 0 0 10px 0;
    font: 45px/55px 'Arteks-Bold', 'Arial', sans-serif;
    color: black;
}

.product-card__code span {
    display: inline-block;
    border-bottom: 2px solid #ff7777;
}

.product-card__collection {
    margin: 0 0 45px 0;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font: 12px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    max-width: 230px;
}

a.product-card__download-link {
    background-color: #E3000F;
    color: white;
    padding: 10px;
    font: 12px 'Arteks-Regular', 'Arial', sans-serif;
    font-weight: 300;
}

.product-card__price {
    margin: 0 0 10px 0;
    font: 14px 'Arteks-Regular', 'Arial', sans-serif;
    color: #a1a1a1;
}

.product-card__price span {
    display: inline-block;
    margin: 0 5px 0 0;
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
    font-size: 34px;
    color: black;
}

.product-card__buy {
    /* display: -ms-flexbox;
     display: -webkit-box;
     display: flex;*/
    display:none;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.product-card__status {
    position: relative;
    padding: 0 0 0 20px;
    font: 12px 'Arteks-Medium', 'Arial', sans-serif;
    color: #fe1515;
    transition: 400ms;
}

.product-card__status svg {
    margin: 0 5px 0 0;
    width: 12px;
    height: 10px;
    fill: #fe1515;
    transition: 400ms;
}

.catalog-filter__options-nav {
    display: none;
}

.product-card__options {
    margin: 0 0 50px 0;
    max-width: 495px;
}

.product-card__options-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin: 0 0 20px 0;
}

.product-card__options-title {
    width: 115px;
    margin: 0 10px 0 0;
    font: 14px/18px 'Arteks-Light', 'Arial', sans-serif;
    color: #a1a1a1;
    flex-shrink: 0;
}

.product-card__options-value {
    font: 18px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.product-card__options-img {
    max-width: 100%;
    height: 100%;
    display: block;
}

.product-card__shadows {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.product-card__shadows-title {
    width: 100%;
    margin: 0 0 15px 0;
    font: 18px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.product-card__shadows-item {
    display: inline-block;
    text-align: center;
    margin: 0 25px 10px 0;
    overflow: hidden;
    transition: all 0.4s;
}

.product-card__shadows-item:hover {
    opacity: 0.8;
}

.product-card__shadows-item:hover span {
    color: #fe1515;
}

.product-card__shadows-item img {
    display: block;
    width: 100px;
    height: 115px;
    margin: 0 0 10px 0;
}

.product-card__shadows-item span {
    display: inline-block;
    font: 16px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    transition: 400ms;
}

.companion-slider__nav {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    width: 80px;
}

.companion-slider__arrow {
    cursor: pointer;
}

.companion-slider__arrow._prev:before, .companion-slider__arrow._next:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    display: block;
    width: 12px;
    height: 12px;
}

.companion-slider__arrow._prev:before {
    content: '';
    left: 0;
    border-bottom: 4px solid #fe1515;
    border-left: 4px solid #fe1515;
}

.companion-slider__arrow._next:before {
    content: '';
    right: 0;
    border-top: 4px solid #fe1515;
    border-right: 4px solid #fe1515;
}

.companion-slider__dots {
    position: relative;
    counter-reset: slides-num;
}

.companion-slider__dots:after {
    content: '/' counter(slides-num);
    font: 16px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.companion-slider__dots .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
}

.companion-slider__dots .owl-dot span {
    display: none;
}

.companion-slider__dots .owl-dot.active:before {
    content:  counter(slides-num);
    font: 24px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.companion__title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.content-slider {
    position: relative;
}

.content-slider__wrapper {
    width: 100%;
    margin: 0 0 30px 0;
}

.content-slider__footer {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.content-slider__caption {
    max-width: 80%;
    padding: 0 30px;
    font: 14px/30px 'Arteks-Light-Italic', 'Arial', sans-serif;
    color: #666666;
}

.content-slider__nav {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100px;
}

.content-slider__arrow {
    cursor: pointer;
}

.content-slider__arrow._prev:before, .content-slider__arrow._next:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    display: block;
    width: 15px;
    height: 15px;
}

.content-slider__arrow._prev:before {
    content: '';
    left: 0;
    border-bottom: 5px solid #fe1515;
    border-left: 5px solid #fe1515;
}

.content-slider__arrow._next:before {
    content: '';
    right: 0;
    border-top: 5px solid #fe1515;
    border-right: 5px solid #fe1515;
}

.content-slider__dots {
    position: relative;
    counter-reset: slides-num;
}

.content-slider__dots:after {
    content: '/' counter(slides-num);
    font: 20px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.content-slider__dots .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
}

.content-slider__dots .owl-dot span {
    display: none;
}

.content-slider__dots .owl-dot.active:before {
    content:  counter(slides-num);
    font: 30px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}

.content-slider__item {
    height: 490px;
}

.content-slider__item img {
    width: 100%;
    height: 100%;
}
.triple-slider-wrapper {
    position: relative;
    margin-bottom: 30px;
}
.triple-slider {
    padding: 0 30px;
}

.triple-slider__arrow {
    cursor: pointer;
}
.triple-slider__arrow._prev:before, .triple-slider__arrow._next:before {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    display: block;
    width: 15px;
    height: 15px;
    z-index: 1;
}

.triple-slider__arrow._prev:before {
    content: '';
    left: 5px;
    border-bottom: 5px solid #fe1515;
    border-left: 5px solid #fe1515;
}

.triple-slider__arrow._next:before {
    content: '';
    right: 5px;
    border-top: 5px solid #fe1515;
    border-right: 5px solid #fe1515;
}
.triple-slider__dots {
    position: absolute;
    height: 30px;
    bottom: -30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.triple-slider__dots .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 6px;
    width: 12px;
    height: 12px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
}

.triple-slider__dots .owl-dot.active:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 4px;
    background-color: #fe1515;
    border-radius: 50%;
}

.product-slider {
    position: relative;

}

.product-slider__item {
    position: relative;
    /*height: 100vh;*/
    font-size: 0;
}

.product-slider__item img {
    /*position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);*/
    min-width: 100%;
    min-height: 100%;
}

.product-slider__nav {
    position: absolute;
    top: 50%;
    right: 70px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    z-index: 2;
}

.product-slider__arrow {
    position: relative;
    border-radius: 50%;
    background: #e41e25;
    text-align: center;
    font-family: 'Arteks-Light', 'Arial', sans-serif;
    cursor: pointer;
    transition: 400ms;
}

.product-slider__arrow:hover {
    background: #c80c12;
}

.product-slider__arrow:before {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.product-slider__arrow._next {
    width: 50px;
    height: 50px;
    margin: 0 0 10px 0;
}

.product-slider__arrow._next:before {
    content: '';
    left: 45%;
    width: 12px;
    height: 12px;
    border-top: 3px solid white;
    border-right: 3px solid white;
}

.product-slider__arrow._prev {
    width: 30px;
    height: 30px;
}

.product-slider__arrow._prev:before {
    content: '';
    width: 8px;
    height: 8px;
    border-bottom: 3px solid white;
    border-left: 3px solid white;
}

.extra-block {
    float: left;
    position: relative;
    width: 355px;
    margin: 60px;
    padding: 40px 50px;
    text-align: center;
    font: 18px/30px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    background: #f7f7f7;
}

.extra-block._right {
    float: right;
}

.extra-block:before, .extra-block:after {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    display: block;
    width: 70px;
    height: 1px;
    background: #fe1515;
}

.extra-block:before {
    content: '';
    top: 20px;
}

.extra-block:after {
    content: '';
    bottom: 20px;
}

.search {

}

.search__items .product-card__preview {
    height: 470px;
    width: 25%;
}

.search__items .product-card__main-info {
    justify-content: flex-start;
}

.search__items .product-card__preview {
    margin-right: 100px
}

.search__header span {
    color: #E80110;
}

/*-----------НОВЫЙ ПОИСК----------*/
.search {
    /*position: relative;*/
    /*left: 0;*/
    /*height: 120px;
    background: #f3f3f3;*/
}
.search__back {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    z-index: 101;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.search__move {
    position: absolute;
    top: 0;
    left: -60px;
    right: -60px;
    padding: 20px 60px;
    background: #f3f3f3;
    -webkit-transition: padding 0.3s ease-in-out 0s;
    transition: padding 0.3s ease-in-out 0s;
    z-index: 5;
}
.search__move.is-short {
    left: 330px;
    right: 0;
}
.search__move.is-short .search__line {
    height: 50px;
}
.search__move.is-short .search__input {
    padding: 10px 70px 10px 20px;
}
.search__move.is-short .search__bttn {
    background-size: 30px 30px;
}
.search__line {
    position: relative;
    height: 70px;
    background: #fff;
    z-index: 5;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.search__input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px 70px 20px 20px;
    font: 300 24px/30px 'Arteks-Regular', sans-serif;
    background: #fff;
    border: none;
    -webkit-transition: padding 0.3s ease-in-out 0s;
    transition: padding 0.3s ease-in-out 0s;
}
.search__bttn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70px;
    background: #fff no-repeat center url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI0MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNDAgNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiMwOTc2OUQiIGQ9Ik0yNS4yOTQsMi40ODJjLTcuODMxLDAtMTQuMjAyLDYuMzc5LTE0LjIwMiwxNC4yMjFjMCwzLjc2NCwxLjQ3OCw3LjE4MiwzLjg3LDkuNzI5bC0zLjQyNiwzLjQzbC0xLjQxMS0xLjQxMmMtMC4xMDQtMC4xMDgtMC4yNTctMC4xNTMtMC40MDMtMC4xMmMtMC4wODIsMC4wMTktMC4xNTcsMC4wNi0wLjIxNSwwLjEybC02Ljg3OSw2Ljg4OWMtMC4xNjYsMC4xNjgtMC4xNjYsMC40MzgsMCwwLjYwNWwzLjQzOSwzLjQ0M2MwLjE2NSwwLjE3MiwwLjQzOCwwLjE3NiwwLjYwOCwwLjAxYzAuMDAzLTAuMDAyLDAuMDA3LTAuMDA2LDAuMDEtMC4wMWw2Ljg3OS02Ljg4OWMwLjE2Ni0wLjE2OCwwLjE2Ni0wLjQzOCwwLTAuNjA1bC0xLjQxMS0xLjQxMmwzLjQxMy0zLjQzMmMyLjU0MiwyLjM5OSw1Ljk2NSwzLjg3NSw5LjcyOCwzLjg3NWM3LjgzMiwwLDE0LjIwMy02LjM3OSwxNC4yMDMtMTQuMjIxQzM5LjQ5Nyw4Ljg2MSwzMy4xMjYsMi40ODIsMjUuMjk0LDIuNDgyeiBNMjUuMjk0LDMuMzdjNy4zNjYsMCwxMy4zMTUsNS45NTcsMTMuMzE1LDEzLjMzM1MzMi42NiwzMC4wMzYsMjUuMjk0LDMwLjAzNmMtNy4zNjYsMC0xMy4zMTUtNS45NTctMTMuMzE1LTEzLjMzM1MxNy45MjgsMy4zNywyNS4yOTQsMy4zN3ogTTkuODE1LDI5LjM2M2wyLjgyMSwyLjgzOWwtNi4yNjEsNi4yNzFsLTIuODIyLTIuODI2TDkuODE1LDI5LjM2M3oiLz48L3N2Zz4=);
    background-size: 40px 40px;
    border: none;
    -webkit-transition: background 0.3s ease-in-out 0s;
    transition: background 0.3s ease-in-out 0s;
}
.search__bttn:hover {
    background-color: #fafafa;
}
.search__bttn:active {
    background-color: #effbff;
}
.search__close {
    display: block;
    position: absolute;
    top: 120px;
    right: 75px;
    width: 30px;
    height: 30px;
    background: no-repeat center url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMHB4IiBoZWlnaHQ9IjEwcHgiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTAgMTAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiMwOTc2OUQiIGQ9Ik05LjA0MiwxLjM1N0w4LjY0MywwLjk1OEw0Ljk4OSw0LjYxMmwtMy4zNS0zLjM1TDEuMjU1LDEuNjQ3bDMuMzUsMy4zNUwwLjk1OCw4LjY0NWwwLjM5OSwwLjM5OGwzLjY0Ny0zLjY0N2wzLjQ4NywzLjQ4OEw4Ljg3NSw4LjVMNS4zODgsNS4wMTFMOS4wNDIsMS4zNTd6Ii8+PC9zdmc+);
    background-size: 20px 20px;
    z-index: 1;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.search__close:hover {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.search__rez {
    position: absolute;
    top: 70px;
    left: 60px;
    right: 20px;
    bottom: 60px;
    height: auto;
    width: auto;
    overflow: hidden;
    max-width: 590px;
}
.search__rez.on-page {
    position: static;
}
.search__rez:after {
    visibility: hidden;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    background: no-repeat center url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI0MHB4IiBoZWlnaHQ9IjQwcHgiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgNDAgNDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiMwMEFDRDEiIGQ9Ik0xLjAwMSwxOC43NzRDMS4zNTMsMTMuMjk3LDQuMDE2LDguNDUyLDguMDQ4LDUuMjFsMi44MTYsNC44NjRjLTIuNDEsMi4yMDUtNC4wMTksNS4yNjEtNC4zMyw4LjdMMS4wMDEsMTguNzc0TDEuMDAxLDE4Ljc3NHoiLz48cGF0aCBmaWxsPSIjQ0RFOUYxIiBkPSJNNi41MzUsMjEuMjI2SDEuMDAxYzAuMzgsNS45MTMsMy40NiwxMS4wODcsOC4wNCwxNC4zMDVsMi43ODMtNC44MDVDOC44ODMsMjguNDk2LDYuODg2LDI1LjEwNCw2LjUzNSwyMS4yMjZ6Ii8+PHBhdGggZmlsbD0iIzlERDREMyIgZD0iTTI0LjA2NCwzMi44NjRjLTEuMjgyLDAuNDAxLTIuNjQ3LDAuNjItNC4wNjQsMC42MmMtMS43OTksMC0zLjUxMy0wLjM1Ny01LjA4Mi0wLjk5MmwtMi43ODEsNC44MDNDMTQuNTM3LDM4LjM4LDE3LjE5MywzOSwyMCwzOWMyLjQyNiwwLDQuNzM3LTAuNDY5LDYuODctMS4yOTNMMjQuMDY0LDMyLjg2NHoiLz48cGF0aCBmaWxsPSIjNkRDMEE0IiBkPSJNMzMuNDY2LDIxLjIyNmMtMC4zODUsNC4yNTItMi43NDYsNy45MjYtNi4xNjQsMTAuMTE2bDIuNzY1LDQuNzcxYzUuMDY1LTMuMTUxLDguNTI4LTguNTk4LDguOTMzLTE0Ljg4OEgzMy40NjZ6Ii8+PHBhdGggZmlsbD0iIzNFQjI4OSIgZD0iTTMxLjA5Myw0LjU2OEwyOC4zMSw5LjM3M2MyLjg2OSwyLjIzMSw0LjgxMiw1LjU4MSw1LjE1Niw5LjQwMWg1LjUzM0MzOC42MjMsMTIuOTE4LDM1LjU5OSw3Ljc5MiwzMS4wOTMsNC41Njh6Ii8+PHBhdGggZmlsbD0iIzFCQjFBMyIgZD0iTTEzLjc5Nyw4LjAyNEMxNS42NTYsNy4wNjUsMTcuNzYyLDYuNTE2LDIwLDYuNTE2YzEuODU4LDAsMy42MjYsMC4zNzQsNS4yMzksMS4wNDlsMi43NzEtNC43ODhDMjUuNTczLDEuNjQ4LDIyLjg2NiwxLDIwLDFjLTMuMjQ3LDAtNi4zLDAuODEzLTguOTc2LDIuMjRMMTMuNzk3LDguMDI0eiIvPjwvc3ZnPg==);
    background-size: 100% 100%;
    z-index: 2;
}
.search__rez.is-loading:after {
    visibility: visible;
    -webkit-transition: all 15s linear 0s;
    transition: all 15s linear 0s;
    -webkit-transform: rotate(3600deg);
    -ms-transform: rotate(3600deg);
    transform: rotate(3600deg);
}
.search__rez.is-loading .search__rez-scroll {
    visibility: hidden;
}
.search__rez.is-loading .nano__pane {
    visibility: hidden;
}
.search__rez-title {
    margin: 20px 25px;
    font: 500 16px/24px 'Arteks-Regular', sans-serif;
}
.search__rez-more {
    display: inline-block;
    vertical-align: top;
    margin: 20px;
    color: #B21218;
    font: 300 16px/24px 'Arteks-Regular', sans-serif;
}
.search__rez-more:hover {
    color: #ed1c24;
}
.search__rez-files {
    margin: 0 10px 50px 0;
}
.search__rez-files-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.search__rez-files-list li {
    position: relative;
    padding: 5px 20px 15px 25px;
    background: no-repeat 0 18px url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyMHB4IiBoZWlnaHQ9IjI1cHgiIHZpZXdCb3g9IjAgMCAyMCAyNSIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMjAgMjUiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiNFRDFDMjQiIGQ9Ik0wLjA5NywwLjA3OUwwLjA5NywwLjA3OXYyNC44OTZsMCwwaDE5Ljg5NmwwLDBWNy4wNWMwLDAsMC4wODIsMC4wODYsMCwwbC02Ljk2NC02Ljk3MWMwLDAsMC4xMTktMC4wMDMsMCwwSDAuMDk3TDAuMDk3LDAuMDc5eiBNMS4wMjksMS4wOTFoMTAuOTQ0djYuOTcxbDAsMGg2Ljk2M3YxNS45MzNIMS4wMjlWMS4wOTF6IE0xMi45NjcsMi4wODZsNC45NzUsNC45NzloLTQuOTc1VjIuMDg2TDEyLjk2NywyLjA4NnoiLz48L3N2Zz4=);
    background-size: auto 20px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid #e0e0e0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.search__rez-files-list li:hover {
    color: #ed1c24;
    background-color: #fff;
    border-color: #e0e0e0;
}
.search__rez-files-list ._file-name {
    margin: 10px 0;
    font: 300 21px/24px 'Arteks-Regular', sans-serif;
}
.search__rez-files-list ._file-path {
    color: #EF0028;
    font: 300 16px/24px 'Arteks-Regular', sans-serif;
    -webkit-transition: color 0.3s ease-in-out 0s;
    transition: color 0.3s ease-in-out 0s;
}
.search__rez-files-list ._file-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.search__rez-posts {
    margin: 0 10px 50px 0;
}
.search__rez-posts-list {
    margin: 0 !important;
    padding: 0 0 0 20px !important;
    font: 300 16px/20px 'Arteks-Regular', sans-serif;
    list-style: none;
}
.search__rez-posts-list li {
    position: relative;
    padding: 5px 5px 10px !important;
    margin-bottom: 15px;
    border-style: solid;
    border-color: transparent;
    border-width: 1px 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.search__rez-posts-list li:before {
    content: unset !important;
}
.search__rez-posts-list li:hover {
    color: #ed1c24;
    background: #fff;
    border-color: #e0e0e0;
}
.search__rez-posts-list li:hover ._file-path {
    color: #ed1c24;
}
.search__rez-posts-list ._file {
    -webkit-display: flex;
    -moz-display: flex;
    -ms-display: flex;
    -o-display: flex;
    -khtml-display: flex;
    display: flex;
    -webkit-flex-flow: row nowrap;
    -moz-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    -o-flex-flow: row nowrap;
    -khtml-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -o-align-items: center;
    -khtml-align-items: center;
    align-items: center;
}
.search__rez-posts-list ._file-image {
    margin: 0 10px;
    display: flex;
}
.search__rez-posts-list ._file-name {
    margin: 5px 0;
    font: 300 16px/20px 'Arteks-Regular', sans-serif;
}
.search__rez-posts-list ._file-collection {
    font-size: 14px;
    color: #737373;
}
.search__rez-posts-list ._file-path {
    color: #EF0028;
    font: 300 12px/18px 'Arteks-Regular', sans-serif;
    -webkit-transition: color 0.3s ease-in-out 0s;
    transition: color 0.3s ease-in-out 0s;
}
.search__rez-posts-list ._file-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.search.active .search__back {
    opacity: 1;
    visibility: visible;
}
.search.active .search__line {
    box-shadow: 0 20px 95px rgba(1, 1, 1, 0.2);
}
.search.active .search__move {
    background: transparent;
}
.content__cntr {
    float: left;
    width: 100%;
    min-height: 5px;
}
.content__cntr-title {
    margin: 20px 0;
    font: 100 41px/48px 'Arteks-Light', sans-serif;
}
.content__inset {
    clear: both;
    padding: 30px 0;
    background: #fff;
}
.event {
    position: relative;
    margin: 50px auto 30px;
    padding: 30px 40px 30px;
    background: #fff;
    box-shadow: 0 50px 70px rgba(1, 1, 1, 0.1), 0 40px 40px rgba(1, 1, 1, 0.05);
}
.event__list {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}
.event__list-item {
    display: table;
    width: 100%;
    padding: 0 !important;
}
.event__list-item:before {
    content: unset !important;
}
.event__list-title {
    display: table-cell;
    width: 50px;
    padding: 5px 10px 5px 0;
    font: 700 18px/28px 'Roboto', sans-serif;
    white-space: nowrap;
}
.event__list-text {
    display: table-cell;
    font: 300 18px/28px 'Roboto', sans-serif;
}
/*-----------//НОВЫЙ ПОИСК----------*/

/*--------------------- BLOCKS: NanoScrollerJS -----------------------*/
.nano {
    position: relative;
    width: 100%;
    height: 100%;
    /* overflow: hidden;*/
}
.nano > .nano__content {
    position: absolute;
    overflow: scroll;
    overflow-x: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.nano > .nano__content:focus {
    outline: thin dotted;
}
.nano > .nano__content::-webkit-scrollbar {
    display: none;
}
.nano > .nano__pane {
    background: rgba(239, 0, 40, 0.3);
    position: absolute;
    width: 2px;
    right: 0;
    top: 0;
    bottom: 0;
    /* Target only IE7 and IE8 with this hack */
    visibility: hidden\9;
    opacity: .01;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.nano > .nano__pane > .nano__slider {
    background: #444;
    background-color: #EF0028;
    position: relative;
    margin: 0;
}
.nano:hover > .nano__pane,
.nano__pane.active,
.nano__pane.flashed {
    /* Target only IE7 and IE8 with this hack */
    visibility: visible\9;
    opacity: 0.99;
}
.has-scrollbar > .nano__content::-webkit-scrollbar {
    display: block;
}

.footer__top-wrapper {
    -webkit-flex-wrap: initial;
    -moz-flex-wrap: initial;
    -ms-flex-wrap: initial;
    -o-flex-wrap: initial;
    flex-wrap: initial;
}

.footer .social {
    flex-shrink: 0;
    margin-left: 25px;
}

.footer .main-nav {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    width: 65%;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .main-nav__link {
    margin-right: 20px;
}

.footer .main-nav__link:last-child {
    margin-right: 0;
}

.contacts-page__phone,
.contacts-page__mail {
    font-size: 24px;
    font-family: 'Arteks-Regular';
    transition: all 0.4s;
    margin-bottom: 10px;
}

.contacts-page__links {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.contacts-page__mail {
    font-size: 18px;
}

.contacts-page__phone:hover,
.contacts-page__mail:hover {
    color: #e3000f;
}

.footer__top-phone {
    flex-shrink: 0;
}

.contacts-page__address {
    font-size: 18px;
    font-family: 'Arteks-Regular';
    line-height: 1.6;
    margin-bottom: 50px;
}

.contacts-page__places {
    padding-right: 100px;
	padding-left:10px;
}

.popup {
    overflow: hidden;
    transition: all 0.4s;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 500000;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    transform: translateX(100%);
}

.popup.is-active {
    transform: translateX(0);
}

.popup__name {
    text-align: center;
    font-family: 'Arteks-Regular';
    font-size: 32px;
    margin-bottom: 20px;
}

.reg {
    margin-bottom: 50px;
}

.default-input {
    height: auto;
    font-family: 'Arteks-Light';
    font-size: 15px;
    width: 100%;
    border: 1px solid #c9c0c0;
    padding: 10px;
    padding-top: 12px;
}

.default-input.error {
    border-color: red;
}

.popup__inner {
    padding: 60px;
    position: relative;
}

.input-area {
    margin-bottom: 20px;
    width: 100%;
}

.popup__form {
    width: 290px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    margin: 0 auto;
}

.popup__submit,
.popup__link,
.popup__privacy {
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-family: 'Arteks-Light';
    margin-bottom: 20px;
}

.popup__submit {
    background-color: #f7f7f7;
    padding: 15px;
    font-size: 16px;
    transition: all 0.4s;
    font-weight: 100;
}

.popup__link {
    color: #f3041d;
    margin-bottom: 20px;
}

.popup__closer {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
}

.popup__closer:before,
.popup__closer:after {
    display: block;
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    background-color: red;
    left: 0;
    top: 9px;
}

.popup__closer:before {
    transform: rotate(45deg);
}

.popup__closer:after {
    transform: rotate(-45deg);
}


.popup__privacy {
    text-decoration: underline;
}

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

.popup__submit:hover {
    background-color: #dbdbdb;
}

.novelties-slider__item-code {
    font-size: 32px;
    line-height: 1;
    padding: 45px 35px 25px 35px;
}

.novelties-slider__item-about {
    letter-spacing: 1px;
    font: 22px/1.5 'Arteks-Light', 'Arial', sans-serif;
    margin-top: auto;
    color: #000000;
}

.novelties-slider__item-text {
    margin-bottom: 30px;
}

.catalog-item__value {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.catalog-item__code {
    font-family: 'Arteks-Regular';
}

.catalog-item__collection {
    margin-top: 20px;
}


.main-nav._header {

}

.main-nav__dd-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.main-nav__dd {
    white-space: nowrap;
    position: absolute;
    padding: 20px;
    background-color: #fff;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    box-shadow: 0 10px 60px rgba(0,0,0,0.1);
    min-width: 100px;
    transition: 0.4s;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.9);
    top: 100%;
    z-index: 1;
}

.main-nav__dd-wrapper.is-active .main-nav__dd {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.main-nav__dd-link {
    font: 12px/1 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 400ms;
    margin-bottom: 20px;
}

.main-nav__dd-link:last-child {
    margin-bottom: 0;
}

.main-nav__dd-link:hover {
    color: red;
}

.catalog-item__value {
    color: #fff;
    font-family: 'Arteks-Regular';
    letter-spacing: 1px;
}

.catalog__side-filter {
    width: 250px;
    flex-shrink: 0;
    margin-left: 60px;
    position: relative;
}

.catalog__side-filter.is-active {
    transform: translateX(0);
}

.container--catalog {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
}

.catalog-item {
    /*width: 33.33%;*/
    width: 32%;
}

.catalog__side-sect-box {
    display: none;
}

.catalog__side-sect-box:checked + .catalog__side-sect-label:after {
    transform: translateY(0);
}

.catalog__side-sect-box:checked + .catalog__side-sect-label {
    color: #E3000F;
}

.catalog__side-sect-name {
    font-family: 'Arteks-Regular';
    font-size: 12px;
    text-transform: uppercase;
}

.catalog__side-sect-cb {
    overflow: hidden;
    margin-bottom: 10px;
}

.catalog__side-sect-cb:last-child {
    margin-bottom: 0;
}

.catalog__side-sect-label {
    font-family: 'Arteks-Regular';
    font-size: 14px;
    color: #000;
    padding-left: 36px;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
}

.catalog__side-sect-label:before,
.catalog__side-sect-label:after {
    display: block;
    content: '';
    position: absolute;
}

.catalog__side-sect-label:before {
    width: 16px;
    height: 16px;
    background-color: #EFEFEF;
    border-radius: 5px;
    /*top: -3px;*/
    left: 4px;
}

.catalog__side-sect-label:hover {
    color: #E3000F;

}

.catalog__side-sect-label:after {
    width: 10px;
    top: 4px;
    left: 7px;
    height: 8px;
    background-image: url(/local/templates/main/tpl/css/../assets/images/icons/checkbox.svg);
    background-size: cover;
    background-position: center;
    transition: 0.4s;
    transform: translateY(-20px);
}

.catalog__side-sect-name-image {
    max-width: 25px;
    max-height: 25px;
    margin-right: 10px;
}

.catalog__side-sect-cbs {
    border-bottom: 1px solid #ededed;
    padding-bottom: 25px;
}

.catalog__side-sect-name {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.catalog__side-sect-name {
    margin-bottom: 20px;
}

.catalog__side-cbs {
    margin-top: 43px;
}

.catalog__side-sect {
    margin-top: 25px;
}

.catalog__side-sect:first-child {
    margin-top: 0;
}

.catalog__side-clear {
    color: #E3000F;
    font-family: 'Arteks-Regular';
    display: inline-block;
    position: relative;
    padding-left: 15px;
    margin-top: 30px;
}

.catalog__side-clear:before,
.catalog__side-clear:after {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 12px;
    height: 1px;
    background-color: #E3000F;
    transition: 0.4s;
}

.catalog__side-clear:before {
    transform: rotate(45deg);
}

.catalog__side-clear:after {
    transform: rotate(-45deg);
}

.catalog__side-clear:hover:before {
    transform: rotate(-45deg);
}

.catalog__side-clear:hover:after {
    transform: rotate(45deg);
}

/* pravki */

.company-news__item:nth-child(odd),
.company-news__item:nth-child(even){
    flex-basis: 33.33%;
    padding-left: 25px;
    padding-right: 25px;
}

.company-news__list {
    margin-right: 0;
    flex-basis: 100%;
}

.catalog__side-filter:before {
    z-index: -1;
    top: -140px;
    left: -205px;
    display: block;
    content: '';
    position: absolute;
    width: 430px;
    height: 270px;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-image: url(/local/templates/main/tpl/css/../assets/images/img/cataloggg.png);
}

.figure-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
}

.figure-row figure {
    width: 49%;
}

.alert {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 108px;
}

.alert__text {
    padding: 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    font: 12px/24px 'Arteks-Regular', 'Arial', sans-serif;
}

/*added for brands*/
.card {
    padding: 10px;
    text-align: center;
    width: 300px;
}

.brends {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.brends__title {
    margin-bottom: 30px;
}

.brends__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    padding: 85px 175px;
}

.brends__box:first-child {
    padding-top: 50px;
}

.brends__box:nth-child(even) {
    background-color: #ffffff;
}

.brends__box:nth-child(odd) {
    background-color: #F7F7F7;
}

.brends__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 125px;
    width: 100%;
}

.brends__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.brends__txt {
    font-family: 'Arteks-Regular';
    font-weight: 300;
    color: #222222;
    font-size: 14px;
    line-height: 24px;
}

.brends__logo {
    -ms-flex-item-align: center;
    align-self: center;
    max-width: 310px;
    max-height: 100px;
    display: block;
}
.brends__logo-img {
    max-width: 100%;
    max-height: 100%;
}

.brends__more {
    color: #E41E25;
    font-style: italic;
    font-weight: 100;
    font-family: 'Arteks-Regular';
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
    -webkit-transition: all .4s;
    transition: all .4s;
    margin-top: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.brends__more:hover {
    opacity: .8;
}

.brends__box-pics {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 60px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.brends__pic {
    overflow: hidden;
    width: 25%;
    display: block;
}

.brends__pic:nth-last-child(n + 2) {
    margin-right: 33px;
}

.brends__pic:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.brends__pic img {
    width: 100%;
    height: 100%;
    -webkit-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out;
}
.langs-list {
    display: inline-flex;
    list-style: none;
    margin-left: 30px;
}
.header__wrapper._js-active .langs-list {
    margin-top: 30px;
    margin-left: 0;
}
.lang-item {
    margin-right: 6px;
    font: 100 13px/16px 'Arteks-Regular', 'Arial', sans-serif !important;
    letter-spacing: 0.1em;
}
.lang-link {
    color: #fe1515;
}

/* COLLECTIONS STYLE */

a{
    text-decoration: none;
    color: #4F4F4F;
}

.name {
    margin: 74px auto 45px auto;
    width: max-content;
    text-align: center;
}

.page_name {
    margin: 67px auto 99px auto;
    width: 311px;
    text-align: center;
}

hr {
    border: none;
    background-color: #ee1b25;
    height: 2px;
}

.details {
    margin: 34px auto 0 auto;
    width: max-content;
    text-align: center;
}

.details p {
    margin-bottom: 0px;
    font-family: "Arteks-Regular";
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    color: #4f4f4f;
    text-transform: uppercase;
    transition: color 0.3s;
}

.details p a:hover {
    color: #ff7777;
}

.details hr {
    margin: 0;
}

.show_more{
    margin: 120px auto 100px auto;
    width: max-content;
    text-align: center;
    transition: color 0.3s;
    cursor: pointer;
}

.show_more:hover {
    color: #fe1515;
}

.show_more p {
    margin-bottom: 6px;
    font-family: "Arteks-Regular";
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    color: #4f4f4f;
    text-transform: uppercase;
    transition: color 0.3s;
}

.show_more p:hover,
.show_more a:hover {
    color: #fe1515;
}

#collab-list {
    margin-bottom: 100px;
}

/*.catalog-filter__collab {*/
/*    text-transform: uppercase;*/
/*    font: 700 12px system-ui;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    height: 18px;*/
/*}*/

/*.catalog-filter__collab a {*/
/*    color: #000;*/
/*}*/

.catalog-filter__collab a {
    text-transform: uppercase;
    font: 12px 'Arteks-Regular', 'Arial', sans-serif;
    color: black;
}


.burger {
    position: fixed;
    right: 25px;
    z-index: 500;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 21px;
    width: 35px;
    cursor: pointer;
}

.burger span {
    height: 5px;
    width: 100%;
    background-color: #e3000f;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, transform 0.3s ease;
}

.burger._js-active {
    top: 60px;
}


.burger._js-active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.burger._js-active span:nth-child(1),
.burger._js-active span:nth-child(3) {
    position: absolute;
    top: 0;
    transform-origin: center;
    width: 80%;
}

.burger._js-active span:nth-child(1) {
    transform: rotate(45deg);
}

.burger._js-active span:nth-child(3) {
    transform: rotate(-45deg);
}

.header__wrapper {
    position: relative;
}

.current-city-popup {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
    position: absolute;
    border-radius: 4px;
    box-shadow: 0 0 8px 1px silver;
    padding: 8px;
    background-color: white;
    z-index: 1;
    display: none;
}

.current-city-popup__name {
    margin-bottom: 10px;
}

.current-city-popup__buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
}

.current-city-popup__buttons a {
    flex-basis: 30%;
    text-align: center;
    box-shadow: 0 0 8px 1px silver;
    padding: 0 6px;
    border-radius: 4px;
}

.current-city-popup__buttons a:hover {
    background-color: steelblue;
    color: white;
}

.ccp-active {
    display: block;
}

.modal-select-region-title {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.modal-select-region {
    font-family: 'Arteks-Regular', 'Arial', sans-serif;
    max-width: 800px;
    height: 600px;
    display: flex;
    flex-flow: row wrap;
    gap: 4px;
}

.modal-select-region__item {
    display: flex;
    align-items: center;
    border: 1px solid silver;
    border-radius: 4px;
    padding: 0 5px;
}

.modal-select-region__item:hover {
    background-color: steelblue;
    color: white;
}

@media (max-width: 1279px) {
    .current-city-popup {
        top: 17%;
    }
}

@media (max-width: 768px) {
    
}
/* End */


/* Start:/local/templates/main/tpl/css/media.css?170973153928881*/
/* media */

@font-face {
    font-family: 'Arteks-Regular';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.eot?#iefix')format('embedded-opentype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Regular/Arteks-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Arteks-Bold';
    src: url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.eot'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.eot?#iefix')format('embedded-opentype'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.woff') format('woff'),
    url('/local/templates/main/tpl/css/../assets/fonts/Arteks/Arteks-Bold/Arteks-Bold.ttf') format('truetype');
}

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

    .novelties-slider__item-caption {
        padding-top: 120px;
    }

    .novelties-slider__item-title {
        font-size: 16px;
    }
}

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

    .novelties-slider__item-about {
        font-size: 19px;
    }
    
    .main-nav__dd-wrapper {
        flex-direction: column;
    }

    .search-items .product-card__preview {
        min-width: 300px;
        flex-shrink: 0;
    }

    .blog-list__item-preview,
    .news-list__item-preview  {
        padding-left: 50px;
        padding-right: 50px;
    }

    .product-slider__item {
        /*max-height: 500px;*/
    }

    .contacts-page__map {
        width: calc(100%)
    }

    .product-card__shadows-item {
        margin-right: 15px;
    }

    .product-card__options {
        margin-bottom: 20px;
    }

    .product-card__novelty {
        height: 325px;
    }

    .product-card__novelty-info {
        padding-top: 20px;
    }

    .catalog-item__wrapper {
        opacity: 1;
        visibility: visible;
    }

    .product-card__gallery {
        -ms-align-items: flex-start;
        align-items: flex-start;
    }

    .contacts-page__places {
        flex-basis: 340px;
        padding-right: 40px;
    }

    .product-card__textures {

    }

    .catalog-item  {
        /*width: 33.33%;*/
        width: 49%;
    }
    

    .dealer__statistics {
        flex-basis: 270px;
    }

    .production__info-item {
        margin-right: 0;
        box-sizing: border-box;
        padding-left: 100px;
    }

    .novelties-slider__item-collection {
        margin-bottom: 10px;
        font-size: 10px;
        line-height: 15px;
    }

    .novelties-slider__item-caption {
        padding-top: 130px;
        opacity: 1;
        visibility: visible;
    }

    .novelties-slider__item-title {
        font-size: 20px;
        line-height: 22px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .novelties-slider__item-code {
        font-size: 11px;
        padding-bottom: 15px;
        padding-top: 25px;
    }

    .footer__top-wrapper {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer__top-wrapper .main-nav {
        width: 100%;
        margin-bottom: 20px;
        justify-content: space-between;
    }

    .footer .main-nav__link {
        margin-right: 15px;
    }

    .footer__top-phone {
        margin-left: auto;
        margin-right: 20px;
    }

    .header .btn._catalog {
        margin-right: auto;
        margin-left: 50px;
    }

    .header__wrapper._js-active .main-nav._header {

    }

    .header__navigation {
        width: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: center;
        align-items: center;
        padding-left: 0;
    }

    .header-search {
        position: relative;
        transform: none;
        height: auto;
        z-index: 20;
    }

    .header .btn._burger-icon {
        position: fixed;
        right: 25px;
        z-index: 500;
    }

    .header__wrapper._js-active {
        overflow-y: scroll;
    }

    .header__wrapper._js-active .btn._catalog {
        margin-left: 0;
    }


    .header__wrapper._js-active .header__navigation {
        padding-left: 0;
        width: auto;
        margin-top: 50px;
        display: block;
    }

    .header__wrapper._js-active .header__btns {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
        flex-shrink: 0;
    }

    .product-card__novelty {
        height: auto;
    }

    .main-nav__dd {
        position: static;
        visibility: visible;
        opacity: 1;
        transition: none;
        box-shadow: none;
        padding-bottom: 0;
    }
}


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

    .company-news__list {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .company-news__item {
        width: 100%;
        flex-basis: 100% !important;
        border-right: none;
        margin-bottom: 20px;
    }

    .company-news__item-desc {
        margin-bottom: 10px;
    }

    .pagination__pages-link:nth-child(6) {
            display: none;
    }

    .pagination__pages {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 30px;
        order: -1;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
    }


    .pagination {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 270px;
        margin: 0 auto;
        margin-bottom: 50px;
    }
    .catalog-filter__wrapper {
        justify-content: flex-start;
    }

    .catalog-item  {
        width: 100%;
    }

    .catalog-item:nth-child(n) {
        margin-right: 0;
    }

    .catalog-filter__options {
        width: 100%;
        justify-content: flex-start;
    }

    .product-card__preview {
        width: 100%;
        margin-right: 0;
        width: 430px;
        margin: 0 auto;
        height: 490px;
        margin-bottom: 50px;
    }

    .product-card__textures,
    .product-card__novelty {
        width: 48.5%;
    }

    .product-card__info {
        width: 100%;
    }

    .main-logo {
        width: 115px;
        flex-shrink: 0;
    }

    .h1._white {
        text-align: left;
        font-size: 50px;
    }

    .h2._big {
        font-size: 28px;
    }

    .company-news__wrapper {
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        -o-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .btn._scroll-down {
        bottom: 20px;
    }

    .company-news__item {
        width: 50%;
    }

    .company-news__list {
        width: 100%;
        flex-basis: 100%;
        margin-right: 0;
    }

    .novelties-slider__item {

    }

/*    .novelties-slider {
        padding: 0;
    }*/

    .production__info-desc {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-basis: 100%;
        padding-left: 50px;
        padding-right: 50px;
        justify-content: space-between;
    }

    .production__info-box._text {
        line-height: 52px;
    }

    .production__info {
        height: auto;
    }

    .production__info-img {
        width: 100%;
        height: 500px;
        left: initial;
    }

    .novelties-item {
        margin-left: auto;
        margin-right: auto;
        margin-top: 50px;
    }
    .production__info-caption {
        text-align: center;
    }

    .production__info-item {
        padding-left: 0;
        width: 30%;
        margin: 0;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
    }

    .search__items .product-card__preview {
        width: 280px;
        height: 330px;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .search__items .product-card__info {
        justify-content: center;
    }

    .novelties-slider__item-caption {
        padding-top: 200px;
    }
}

@media screen and (max-width: 767px) {
    .h1 {
        font-size: 32px;
    }
    .catalog-filter__close {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 20px;
        height: 20px;
    }

    .catalog-filter__close:before,
    .catalog-filter__close:after {
        display: block;
        content: '';
        position: absolute;
        left: 0;
        top: 9px;
        height: 1px;
        width: 100%;
        background-color: red;
    }

    .catalog-filter__close:before {
        transform: rotate(45deg);
    }

    .catalog-filter__close:after {
        transform: rotate(-45deg);
    }

    .catalog-filter__sorting {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: flex-end;
        align-items: flex-end;

    }


    .jq-selectbox.jqselect {
        margin-top: 10px;
    }

    .catalog__filter-nav-wrapper {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: center;
        padding-left: 25px;
        padding-right: 25px;
    }

    .catalog__side-filter {
        transition: 0.4s;
        transform: translateX(100%);
        padding: 20px;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 780;
        box-sizing: content-box;
        bottom: 0;
        overflow-y: scroll;
    }
    .novelties-slider__item-caption {
        padding-top:60px;
    }
    .popup__inner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .popup {
        display: block;
        overflow-y: scroll;
    }

    .popup__form {
        width: 100%;
    }

    .catalog-filter__options {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 50000;
        margin: 0;
        padding-left: 15px;
        padding-right: 15px;
        display: block;
        overflow-y: scroll;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        transition: all 0.4s;
        transform: translateX(100%);
    }

    .catalog-filter__options.is-active {
        transform: translateX(0);
    }

    .catalog-filter__field-clear {
        padding-left: 0;
    }

    .catalog-filter__field-clear i {
        display: none;
    }

    .catalog-filter__field {
        width: 100%;
        box-shadow: none;
        position: static;
        opacity: 1;
        visibility: visible;
    }

    .catalog-filter__box-title {
        padding-right: 0;
    }

    .catalog-filter__box-title:after {
        display: none !important;
    }

    .catalog-filter__closer {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        width: 20px;
        height: 20px;
        z-index: 50;
    }

    .catalog-filter__options-nav {
        display: block;
        color: red;
        font-family: 'Arteks-Bold';
        font-size: 18px;
        text-transform: uppercase;
        text-decoration: none;
        line-height: 1;
        margin-bottom: 25px;
        position: relative;
        padding-left: 30px;
    }

    .catalog-filter__options-nav:before {
        display: block;
        content: '';
        position: absolute;
        left: 0;
        top: -3px;
        background-image: url(/local/templates/main/tpl/css/../assets/images/icons/filter_icon.svg);
        width: 16px;
        height: 20px;
        -webkit-background-size: contain;
        background-repeat: no-repeat;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .jq-selectbox {
        z-index: 999999 !important;
    }

    .catalog-filter__radio {
        margin-right: 10px;
    }

    .catalog-filter__closer:before,
    .catalog-filter__closer:after {
        display: block;
        content: '';
        position: absolute;
        top: 9px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: red;
    }

    .catalog-filter__sorting {
        transform: none;
        position: relative;
        z-index: 555;
        justify-content: center;
        margin-top: 20px;
    }

    .catalog-filter__wrapper {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }

    .catalog-filter__closer:before {
        transform: rotate(45deg);
    }

    .catalog-filter__closer:after {
        transform: rotate(-45deg);
    }

    .catalog-filter__box {
        text-align: center;
        margin-right: 0;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .catalog-filter__box:first-child {
        margin-top: 50px;
    }

    .search__items .product-card__info {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
    }

    .search__items .product-card__desc {
        width: auto;
    }

    .contacts-page__map-zoomcontrols {
        right: 15px !important;
    }

    .product-card__preview {
        width: 280px;
        height: 330px;
    }

    .product-card__desc {
        margin-right: 0;
        width: 100%;
    }

    .product-card__gallery {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }

    .product-card__textures {
        width: 100%;
        justify-content: space-between;
    }

    .product-card__novelty {
        width: 100%;
        margin-left: 0;
    }

    .product-card__inner {
        margin-bottom: 50px;
    }

    .product-card__textures-img {
        width: 48.5%;
        margin-right: 0;
        height: 200px;
    }

    .contacts-page__places {
        width: 100%;
        padding: 0;
        flex-basis: initial;
        margin-bottom: 20px;
        max-height: 500px;
    }

    .product-slider__nav {
        right: 15px;
    }

    .product-slider__item {
        /*max-height: 170px;*/
    }

    .product-card__shadows-item img {
        width: 91px;
    }

    .product-card__shadows-item {
        margin-right: 5px;
    }
	.header {
		margin: 0 0;
		position: relative;
		z-index: 100;
	}
	.main{
		position:relative;
		z-index:90;
	}
    .contacts-page__map {
        /*height: 100vh;*/
        height: 420px;
        width: 100%;
        margin-bottom: 50px;
    }
    .contacts-page__wrapper {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        height: auto;
    }



    .blog-list__item,
    .news-list__item {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .blog-list__item-img,
    .news-list__item-img {
        width: 100%;
    }

    .blog-list__item-preview,
    .news-list__item-preview {
        width: 100%;
        padding-top: 50px;
        order: 2 !important;
        padding-left: 0;
        padding-right: 0;
    }

    .blog-list__item-title,
    .news-list__item-title {
        font-size: 26px;
    }

    .basket-page__total {
        padding-left: 0;
        padding-right: 0;
        flex-basis: 100%;
        margin-top: 50px;
    }

    .basket-page__total:before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .catalog-item  {
        width: 100%;
    }

    .about-company__wrapper {
        padding: 65px 0;
    }


    .content {
        margin-bottom: 50px;
    }

    .content-slider__item {
        height: 200px;
    }

    .content-slider__footer {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }

    .content-slider__nav {
        order: -1;
        margin: 0 auto;
    }

    .content-slider__caption {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .company-news__list {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }

    .extra-block {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

    .content blockquote {
        padding-left: 20px;
        padding-right: 20px;
    }

    .content blockquote cite {
        text-align: center;
    }

    .content ol,
    .content ul {
        padding-left: 0;
    }

    .content figure figcaption {
        padding-left: 0;
    }

    .content figure figcaption:before {
        top: -20px;
        margin: 0 auto;
        left: 0;
        right: 0;
    }

    .content figure img {
        margin-bottom: 50px;
    }

    .company-news__item {
        width: 100%;
        flex-basis: initial !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .dealer__wrapper {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
    }

    .dealer__info {
        margin-top: 50px;
        flex-basis: initial;
    }

    .dealer__statistics {
        flex-basis: initial;
        width: 100%;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
    }

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

    .production__info-desc {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        -ms-align-items: center;
        align-items: center;
    }

    .production__info-img {
        height: 250px;
    }

    .production__info-item {
        width: 100%;
        text-align: center;

    }

    .production__info-box {
        text-align: center;

    }

    .production__info {
        padding-bottom: 0;
        margin-left: 15px;
        margin-right: 15px;
    }

    .production__info-item {
        margin-bottom: 45px !important;
    }


    .production__info-caption {
        flex-basis: initial;
    }

    .production__info-box._text span {
        width: auto;
    }

    .header .btn._catalog {
        margin-left: auto;
        margin-right: 5px
    }

    .novelties-slider  {
        padding-left: 0;
        padding-right: 0;
    }

    .novelties-slider__item {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .header__navigation.is-active {
        position: absolute;
        left: 15px;
        width: auto;
        right: 15px;
        padding-left: 0;
    }

    .production__info-desc {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer__top-wrapper .main-nav {
        width: 100%;
        margin-bottom: 20px;
        justify-content: stretch;
    }

    .header-search.js-focused {
        left: 0;
        right: 0;
        width: 100%;
    }

    .footer .social__item {
        margin-right: 20px;
    }

    .footer .social {
        margin-left: 0;
    }

    .footer .footer__top-phone {
        margin-left: 0;
        margin-right: 0;
    }

    .footer__logo {
        flex-basis: 95px;
        margin-right: 15px;
    }

    .footer__developer {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 20px;
        justify-content: center;
    }

    .footer__bottom-wrapper {
        justify-content: space-between;
    }
}

/* freelance styles */
@media screen and (min-width: 1280px) {

    .btn._burger-icon {
        display: none;
    }

    .burger {
        display: none;
    }

    .btn._catalog {
        transition: 400ms;
    }

    .btn._authorization {
        display: inline-block;
        font-size: 13px;
        margin: 0 25px 0 auto;
    }

    .btn._points-sale {
        display: inline-block;
        font-size: 13px;
    }

    .header__navigation {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        justify-content: flex-end;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
        flex-grow: 1;
        max-width: 660px;
        margin: 0 auto 0 0;
    }

    .header__btns {
        display: block;
        margin-left: 20px;
    }

    .main-nav {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .main-nav._header .main-nav__link {
        display: inline-block;
        margin: 0 20px 0 0;
    }

    .main-nav._header .main-nav__link:last-child {
        margin-right: 0;
    }
}


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

    .btn._catalog {
        font: 12px/55px 'Arteks-Regular', sans-serif !important;
    }
}
@media screen and (min-width: 700px) {

    .container {
        padding: 0 25px;
    }

    .btn._catalog {
        font: 12px/55px 'Arteks-Regular', sans-serif !important;
    }

    .header__wrapper {
        height: 140px;
    }

    .header__navigation {
        padding: 0 0 0 40px;
    }

    .main-logo {
        -ms-flex-preferred-size: 18.6666%;
        flex-basis: 18.6666%;
        margin-right: 4.6%;
    }
}

@media screen and (max-width: 767px) {
    .figure-row {
        display: block;
    }

    .figure-row figure {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .alert {
        left: 0;
        right: 0;
        text-align: center;
    }

    .alert__text {
        padding: 0;
        font: 10px/20px 'Arteks-Regular', sans-serif;
    }
}

@media screen and (max-width: 1599px) {
    .brends__title {
        margin-bottom: 0px;
    }

    .brends__box {
        padding: 85px 50px;
    }

    .brends__row {
        padding: 0;
    }

    .brends__logo {
        -ms-flex-item-align: auto;
        align-self: auto;
    }
}

@media screen and (max-width: 767px) {
    .brends__box {
        padding: 65px 20px 30px 20px;
    }

    .brends__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .brends__col {
        width: 100%;
    }

    .brends__logo {
        margin-bottom: 40px;
        max-width: 160px;
        max-height: 100px;
    }

    .brends__more {
        margin-top: 40px;
    }

    .brends__box-pics {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .brends__pic {
        width: 47%;
        margin-bottom: 15px;
    }

    .brends__pic:nth-last-child(n + 2) {
        margin-right: 15px;
    }

    .brends__pic:nth-child(even) {
        margin-right: 0;
    }
}


/*added for brands*/
@media screen and (max-width: 1599px) {
    .brends__title {
        margin-bottom: 0px;
    }

    .brends__box {
        padding: 85px 50px;
    }

    .brends__row {
        padding: 0;
    }

    .brends__logo {
        -ms-flex-item-align: auto;
        align-self: auto;
    }
}

@media screen and (max-width: 767px) {
    .brends__box {
        padding: 65px 20px 30px 20px;
    }

    .brends__row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .brends__col {
        width: 100%;
    }

    .brends__logo {
        margin-bottom: 40px;
        max-width: 160px;
        max-height: 100px;
    }

    .brends__more {
        margin-top: 40px;
    }

    .brends__box-pics {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .brends__pic {
        width: 47%;
        margin-bottom: 15px;
    }

    .brends__pic:nth-last-child(n + 2) {
        margin-right: 15px;
    }

    .brends__pic:nth-child(even) {
        margin-right: 0;
    }
}

/* COLLECTIONS STYLES */


@media screen and (min-width: 320px) {
    .name p {
        margin: 0;
        padding-bottom: 15px;
        font-family: "Arteks-Regular";
        font-size: 28px;
        color: #4f4f4f;
        line-height: 1;
    }
    .page_name p {
        margin: 0;
        font-family: "Arteks-Regular";
        font-size: 28px;
        color: #4f4f4f;
        line-height: 52px;
    }
    .list {
        margin-top: 71px;
    }
    .list .list-item {
        display: flex;
        width: 100%;
        flex: 0 0 100%;
        height: auto;
        min-height: 320px;
        margin: 0 0 31px 0;
    }
    .list .list-item a {
        width: 100%;
        height: 100%;
        display: flex;
    }
    .list .list-item .list-item__image {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media screen and (min-width: 768px) {
    .page_name p {
        font-size: 45px;
    }
    .name p {
        font-size: 50px;
    }
    .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .list .list-item {
        width: 48%;
        flex: 0 0 48%;
        min-height: 420px;
        margin-bottom: 4%;
    }
    .list .list-item:nth-child(2n + 1) {
        margin-right: 2%;
    }
    .list .list-item:nth-child(2n + 2) {
        margin-left: 2%;
    }
    /* .list .list-item .list-item__image {
      width: 100%;
      height: auto;
    } */
}

@media screen and (min-width: 1280px) {
    .list {
        display: flex;
        justify-content: center;
        flex-flow: row wrap;
        list-style: none;
        margin-top: 71px;
        /* grid-gap: 31px;
        grid-template-columns: 1fr 1fr 1fr; */
    }
    .list .list-item:nth-child(2n + 1) {
        margin: 0 0 2%;
    }
    .list .list-item:nth-child(2n + 2) {
        margin: 0 0 2%;
    }
    .list .list-item {
        flex: 0 0 32%;
        width: 32%;
        min-height: 516px;
        margin: 0 0 2%;
    }
    .list .list-item:nth-child(3n - 1) {
        margin-left: 2%;
        margin-right: 2%;
    }
    /* .list .list-item .list-item__image {
      width: 100%;
      height: auto;
    } */
}

@media only screen and (max-width: 768px) {
    .novelties .novelties-slider{
        position: relative;
        margin: 0 0 40px 0;
        padding: 0;
    }
    .catalog-list__goods {
        width: 100%;
    }
}

@media only screen and (max-width: 360px) {
    .catalog-filter__categories {
        flex-wrap: wrap;
    }
    .catalog-filter__categories .catalog-filter__collab {
        margin-top: 6px;
    }
}

/* End */


/* Start:/local/components/cakelabs/search.title/templates/.default/style.css?172565275099*/
.label-mark {
    text-transform: uppercase;
    margin-top: 4px;
    font-size: 11px !important;
}
/* End */


/* Start:/local/templates/.default/components/bitrix/system.auth.form/auth/style.min.css?1698747410424*/
div.bx-system-auth-form span.bx-auth-secure{background-color:#fffae3;border:1px solid #dedbc8;padding:2px;display:inline-block;vertical-align:bottom;margin-top:-1px}div.bx-system-auth-form div.bx-auth-secure-icon{background-image:url(/local/templates/.default/components/bitrix/system.auth.form/auth/images/sec.png);background-repeat:no-repeat;background-position:center;width:19px;height:18px}div.bx-system-auth-form div.bx-auth-secure-unlock{background-image:url(/local/templates/.default/components/bitrix/system.auth.form/auth/images/sec-unlocked.png)}
/* End */


/* Start:/local/templates/main/styles.css?1695041663167*/
.product-card .product-card__info .product-card__options .product-card__options-row .product-card__options-value a.product-card__download-link {
    cursor: pointer;
}
/* End */


/* Start:/local/templates/main/template_styles.css?175007728611985*/
.archive-icon {
    position: relative;
}

.archive-icon::after {
    position: absolute;
    content: '';
    background-image: url(/local/templates/main-new/assets/images/acrchive-icon.svg);
    display: block;
    width: 35px;
    height: 32px;
    background-repeat: no-repeat;
}

@media screen and (max-width: 900px) {
    .archive-icon::after {
        width: 26px;
        height: 23px;
        background-size: cover;
    }
}

.catalog__items {
    width: 100%;
}

.product-slider__nav.disabled {
    display: none;
}

.detail-label-mark {
    margin-top: 8px;
    font-size: 11px;
    color: #a1a1a1;
}

.catalog-item__collection span {
    display: block;
}

.hideColor {
    display: none;
}

.hideRapport {
    display: none;
}

.product-card__shadows-item.is-active {
    opacity: 0.8;
}

.product-card__shadows-item.is-active span {
    color: #fe1515;
}

.hideCompanion {
    display: none;
}

.product-card__shadows-item {
    max-width: 100px;
}
.product-card__shadows-item span {
    font-size: 13px;
}

.companion-slider__nav.disabled {
  display: none;
}

.companionsValue span {
  margin-right: 20px;
}

.main__news {
  margin-top: 80px;
}

.company-news__item-image {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.company-news__item-image:hover img {
  transform: scale(1.1);
}

.company-news__item-image img {
  width: 100%;
  display: block;
  transition: all 4s;
}

.company-news-video__content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    -ms-align-items: center;
    align-items: center;
    box-sizing: border-box;
    position: absolute;
    background: rgba(0,0,0,0.3);
}

.company-news-video__content .video__play {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 84px 84px;
    background-repeat: no-repeat;
}

.main__news .company-news__item {
  border: none;
}

.itm-video-ytb {
    width: calc(92% + 28px);
    min-height: 544px;
    max-height: 544px;
}

.itm-video-block {
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 1020px;
}

.itm-video-block-no-low {
    position: relative;
    width: 350px;
    height: 490px;
    margin: 0 0 30px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-left: 20px;
}

.promo-block {
	background: unset;
}

.video-block-container .container {
	position: relative;
    max-width: 100%;
    padding: 0;
}

.video-block-container .promo-block__wrapper .h1 {
	color: #fff;
	max-width: 1160px;
}

.video-block-container .promo-block__wrapper {
    height: auto;
	position: absolute;
    top: 0;
    right: 50px;
    padding: 75px 0;
    max-width: 1600px;
    left: auto;
	display:none;
}

.video-block-container video {
	margin-top: -270px;
	height: calc(100vh + 135px);
	object-fit: cover;
}

.video-block-container .btn._scroll-down {
	left: 50px;
}

@media screen and (max-width: 1024px){
    .itm-video-ytb {
        width: 100%;
        min-height: 548px;
        max-height: 548px;
    }
    .itm-video-block-no-low {
        display: none;
    }
	/*.video-block-container .promo-block__wrapper {
		left: 50px;
		right: auto;
	}*/
}

@media screen and (max-width: 767px){
  .novelties-slider {
    margin: 0 auto;
    height: 400px;
  }
  .novelties-slider__item {
    width: 280px;
    height: 400px;
    margin: 0 auto;
  }
  .novelties .novelties-slider__item-img {
    height: 100%;
  }
    .itm-video-block {
        width: 100%;
    }
    .itm-video-ytb {
        min-height: 400px;
        max-height: 400px;
    }
}

@media screen and (max-width: 600px){
    .video-block-container video {
		margin-top: 0;
        height: 500px;
    	object-fit: cover;
    }
	.video-block-container .btn._scroll-down {
		left: 20px;
	}
	/*.video-block-container .promo-block__wrapper {
		left: 0;
		padding: 45px 20px;
	}
	.video-block-container .promo-block__wrapper .h1 {
		font-size: 46px;
    	line-height: 70px;
	}*/
}

@media screen and (max-width: 500px){
    .itm-video-ytb {
        min-height: 265px;
        max-height: 265px;
    }
}

/* new respond popup style */

.text-block .text-block__btn,
.r-form__button {
    color: #ffffff;
}

.text-block__btn,
.r-form__button {
    display: inline-block;
    margin: 0 0 30px;
    padding: 20px 36px;
    background: #fe1515;
    font-family: 'Arteks-Regular';
    font-size: 13px;
    line-height: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.4s;
}

.text-block .text-block__btn:hover,
.r-form__button:hover {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.popup--respond,
.popup--anonim,
.popup--anonim2,
.popup--anonim3 {
    background-color: rgba(0, 0, 0, 0.76);
}

.popup--respond .popup__inner,
.popup--anonim .popup__inner,
.popup--anonim2 .popup__inner,
.popup--anonim3 .popup__inner {
    padding: 48px 80px;
    background: #ffffff;
}

.popup--respond .popup__closer,
.popup--anonim .popup__closer,
.popup--anonim2 .popup__closer,
.popup--anonim3 .popup__closer{
    top: 26px;
    right: 26px;
}

.r-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.r-form__title {
    margin-bottom: 42px;
    font-family: 'Arteks-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    line-height: 39px;
    color: #000000;
}

.r-form__group {
    position: relative;
    min-width: 422px;
    margin-bottom: 20px;
}

.r-form__group:last-child {
    margin-bottom: 42px;
}

.r-form__button {
    display: inline-block;
    margin: 0;
    border: none;
}

.r-form__button:focus {
    outline: none;
}

.r-form__label {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(18px, 16px);
    display: inline-block;
    font-family: 'Arteks-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.6);
    transition: transform 0.4s, color 0.4s;
}

.r-form__input {
    display: block;
    width: 100%;
    padding: 15px 18px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    font-family: 'Arteks-Regular';
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
}

.r-form__input:focus {
    padding: 22px 18px 7px;
    outline: none;
    border-bottom: 2px solid #808080;
}

.r-form__input:focus ~ .r-form__label,
.r-form__textarea:focus ~ .r-form__label {
    transform: translate(18px, 9px);
    font-size: 12px;
    line-height: 16px;
}

.r-form__input.error,
.r-form__textarea.error {
    border-bottom-color: #fe1515;
}

.alert-danger {
    color: #fe1515;
}

.r-form__input.error ~ .r-form__label,
.r-form__textarea.error ~ .r-form__label {
    /* transform: translate(18px, 9px); */
    color: #fe1515;
    /* font-size: 12px;
    line-height: 16px; */
}

.r-form__input.valid {
    padding: 22px 18px 7px;
}

.r-form__input.valid ~ .r-form__label,
.r-form__textarea.valid ~ .r-form__label {
    transform: translate(18px, 9px);
    font-size: 12px;
    line-height: 16px;
}

.r-form__textarea {
    width: 100%;
    min-height: 118px;
    padding: 15px 18px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    color: #000000;
    font-family: 'Arteks-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    resize: none;
}

.r-form__textarea.valid {
    padding: 22px 18px;
}

.r-form__textarea:focus {
    padding: 22px 18px;
    outline: none;
    border-bottom: 2px solid #808080;
}

.r-form__textarea.error:focus {
    border-bottom-color: #fe1515;
}

.r-form__textarea.valid ~ .r-form__label {
    transform: translate(18px, 9px);
    font-size: 12px;
    line-height: 16px;
}

.r-form label.error {
    position: absolute;
    right: 0;
    bottom: -16px;
    color: #fe1515;
    font-family: 'Arteks-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.4px;
}

@media screen and (max-width: 620px) {
    .popup--respond .popup__inner,
    .popup--anonim .popup__inner,
	.popup--anonim2 .popup__inner,
	.popup--anonim3 .popup__inner	{
        padding: 48px 15px;
    }
    .popup--respond .popup__closer,
    .popup--anonim .popup__closer,
	.popup--anonim2 .popup__closer,
	.popup--anonim3 .popup__closer	{
        top: 15px;
        right: 15px;
    }
    .r-form__group {
        min-width: 298px;
    }
	.video-block-container video {
		width: 200% !important;
    	margin-left: -100%;
		height: 700px !important;
	}
}

@media screen and (max-width: 500px) {
	.video-block-container video {
		width: 220% !important;
		margin-left: -120%;
		height: 600px !important;
	}
}

@media screen and (max-width: 400px) {
	.video-block-container video {
		height: 500px !important;
	}
}

.popup--respond,
.popup--thanks,
.popup--anonim,
.popup--thanks-anonim,
.popup--anonim2,
.popup--anonim3 {
    background-color: rgba(0, 0, 0, 0.76);
    transform: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s, visibility 0.4s;
}

.popup--thanks.is-opened,
.popup--respond.is-opened,
.popup--anonim.is-opened,
.popup--anonim2.is-opened,
.popup--anonim3.is-opened,
.popup--thanks-anonim.is-opened {
    visibility: visible;
    opacity: 1;
}

.popup--thanks .popup__inner,
.popup--thanks-anonim .popup__inner,
.popup--thanks-anonim2 .popup__inner,
.popup--thanks-anonim3 .popup__inner {
    background-color: #fff;
}

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

.thanks__title {
    font-family: 'Arteks-Regular';
    font-style: normal;
    font-weight: normal;
    font-size: 34px;
    line-height: 39px;
    color: #000000;
}

.novelties-slider__item-title {
	max-height: 70px;
}

.product-card .product-card__info .product-card__options .product-card__options-row .product-card__options-value a {
    color: #000;
    font-weight: 900;
    cursor: default;
}

.brends__logo {
    font-family: 'Arteks-Regular', Arial, sans-serif;
}
.product-card__3x3 .product-card__textures-img {
    width: 32%;
    height: 20vw;
}

.dealer-auth {
    font-family: 'Arteks-Light', sans-serif;
    margin-left: 20px;
}
.dealer-auth-popup-window {
    position: relatve;
}
.dealer-auth__big-form {
    display: none;
    position: absolute;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 200px;
    padding: 12px;
    right: 15%;
    z-index: 1;
    background-color: white;
}
.dealer-auth__small-form {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.dealer-auth__logged {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
}
.dealer-auth input[type="submit"] {
    cursor: pointer;
}
.dealer-auth input[type="text"],
.dealer-auth input[type="password"],
.dealer-auth input[type="submit"] {
    margin: 5px 0;
}
.header__navigation {
    position: relative;
}
.dealer-auth-mobile {
    position: absolute;
    right: 50px;
}

.dealer-register {
    font-family: 'Arteks-Light', sans-serif;
}
.dealer-register__policy {
    margin: 10px 0;
}
.dealer-register #registerDealerSubmit {
    cursor: pointer;
}
.dealer-register__info-text {
    margin: 30px 0;
}
.dealer-register label.error {
    color: red;
    margin-left: 10px;
}

@media (max-width: 1279px) {
    .dealer-auth-desktop {
        display: none;
    }
}
@media (min-width: 1280px) {
    .dealer-auth-mobile {
        display: none;
    }
}
/* End */
/* /local/templates/main/tpl/css/vendorCss/animate.css?168171085123848 */
/* /local/templates/main/tpl/css/vendorCss/jquery.fancybox.css?168171085113413 */
/* /local/templates/main/tpl/css/vendorCss/owl.carousel.min.css?16817108512936 */
/* /local/templates/main/tpl/css/vendorCss/owl.theme.default.min.css?1681710851936 */
/* /local/templates/main/tpl/css/styles.css?1710233470118000 */
/* /local/templates/main/tpl/css/media.css?170973153928881 */
/* /local/components/cakelabs/search.title/templates/.default/style.css?172565275099 */
/* /local/templates/.default/components/bitrix/system.auth.form/auth/style.min.css?1698747410424 */
/* /local/templates/main/styles.css?1695041663167 */
/* /local/templates/main/template_styles.css?175007728611985 */
