

/* Start:/local/templates/santeam_base/template_styles.css?1745217068252952*/
/* 
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  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 Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.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;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel .owl-rtl {
  direction: rtl;
}
.owl-carousel .owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.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/santeam_base/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 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;
}

/* 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;
}

/**
 * Swiper 3.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2016, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: February 7, 2016
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform, height;
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5);
}
.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff;
}
.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000;
}
/* 3D Container */
.swiper-container-3d {
  -o-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-right {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-top {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  /* Safari 4+, Chrome */
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  /* Firefox 3.6-15 */
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */
}
/* Coverflow */
.swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}
/* Cube + Flip */
.swiper-container-cube,
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}
/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/*Apps*/

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/**Apps**/

.table-emulate {
    display: table;
    table-layout: fixed;
}

.table-emulate > div, .table-emulate > ul {
  display: table-cell;
}

.table-emulate li {
  display: block;
}

.table-emulate--middle > div {
  vertical-align: middle;
}

.table-emulate--top > div {
  vertical-align: top;
}

.table-emulate--bottom > div {
  vertical-align: bottom;
}
.inline-block {
    display: inline-block;
}
.justify {
    text-align: justify;
    margin-bottom: -1.2em;
}
.justify * {
  text-align: left;
}
.justify > div {
  display: inline-block;
}
.justify::after {
  content: '';
  display: inline-block;
  height: 0;
  width: 100%;
  visibility: hidden;
  overflow: hidden;
}
.justify.vert-middle > div
        {
  vertical-align: middle;
}
.justify.vert-top > div
        {
  vertical-align: top;
}
.justify.vert-bot > div
        {
  vertical-align: bottom;
}
.cell-emulate
{
    display: table-cell;
}
.align-right
{
    text-align: right;
}
.align-left
{
    text-align: left;
}
.align-center
{
    text-align: center;
}
.full
{
    width: 100%;
}
.float-left
{
    float: left;
}
.float-right
{
    float: right;
}

.no-padding {
    padding: 0;
}
.no-padding-important {
    padding: 0 !important;
}
.no-padding-right {
    padding-right: 0;

}
.no-padding-left {
    padding-left: 0;
}
.relative {
    position: relative;
}
.no-margin {
    margin: 0;
}
.no-border-top {
    border-top: 0 !important;
}
.rounded {
    border-radius: 100%;
}

.bold {
    font-weight: bold;
}

.big-zindex {
    z-index: 500;
}

.white-back {
    background: white;
}

.vert-middle {
    vertical-align: middle;
}
.vert-top {
    vertical-align: top;
}

.wrapper {
    max-width: 1300px;
    margin: auto;
    width: 100%;
}

.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
}

.half-width {
    width: 50%;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.overflow-x-hidden {
    overflow-x: hidden;
}
@media (max-width: 1070px) {
    .hidden-small {
        display: none !important;
    }
}
.hidden {
    display: none;
}

.space-between {
    -ms-flex-pack: justify;
        justify-content: space-between;
}

.margin-auto {
    margin: auto;
    display: block;
}
:focus {
    outline: none;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
    background: white;
    font-family: 'Arial', san-serif;
    color: #404040;
}

.red-color {
    color: #d22233;
}

a {
    color: #224877;
}

a:hover {
  text-decoration: none;
}

.scroll-disabled {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.container {
    margin: auto;
    padding: 0 40px;
    min-width: 320px;
    max-width: 1380px;
}

.container#basket_form_container {
  padding-top: 0;
}

.container.catalog-top {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

@media(max-width: 960px) {

  .container.catalog-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media(max-width: 960px) {

  .container.catalog-top .btn {
    margin-top: 10px;
  }
}

.container--min-height {
    min-height: 130px;
}

@media (max-width: 960px) {
    .container {
        padding: 0 15px;
    }
}
.clearfix{clear:both;}
.clearfix:after, .clearfix:before {
    content: '';
    display: table;
    clear: both;
}

h1, h2, h3, h4, h5, .h2like {
    margin: 5px 0;
    font-weight: 400;
}

.page-heading {
    padding: 0 20px;
}

.sided-holder__right .page-heading {
  margin: 0;
  margin-bottom: 15px;
  padding: 0;
}

@media (max-width: 960px) {
    .page-heading {
        padding: 0;
    }
    .page-heading h1 {
    font-size: 14px;
    font-weight: bold;
    color: #4b4b4b;
  }
}

h1 {
    font-size: 27px;
}

h2, .h2like {
    font-size: 24px;
}

@media (max-width: 960px) {

  h2, .h2like {
    font-size: 20px;
  }
}
.swiper-sliders-wrapper .swiper-sliders__item1 .h2like,
.swiper-sliders-wrapper .swiper-sliders__item2 .h2like { font-size: 27px }

h3 {
    font-size: 18px;
}

h4 {
    font-size: 15px;
}

h5 {
    font-size: 14px;
}

@media (max-width: 960px) {
    h1, h2, h3, h4, h5, .h2like {
        font-weight: bold;
    }
}

dl {
    margin: 15px 0;
    font-size: 12px;
}

dt {
    color: #bfbfbf;
    display: inline-block;
    vertical-align: top;
    max-width: 180px;
    width: 100%;
}

dd {
    color: black;
    display: inline-block;
    vertical-align: top;
    margin: 0;
}

@media (max-width: 960px) {
    dt, dd {
        width: 49%;
        max-width: none;
    }
}

.download-doc-link {
    text-decoration: none;
    color: #d22233;
}

.download-doc-link span {
  text-decoration: underline;
  vertical-align: middle;
}

.download-doc-link .i-icon {
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

.download-doc-link:hover span {
  text-decoration: none;
}

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

table {
    width: 100%;
    table-layout: fixed;
}

table tr:nth-child(odd) {
  background: #f4f4f4;
}

table td {
  padding: 10px 35px;
}

@media (max-width: 960px) {
    table td {
    padding: 10px 20px;
  }
}
.rub {
    font-family: 'ALSRublRegular';
}
.rub::after {
  content: 'i';
}

.disappear {
    transition: 0.7s;
    opacity: 0;
}

@media (max-width: 960px) {
    .hidden-mobile {
        display: none;
    }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .hidden-medium {
        display: none;
    }
}

/*Bootstrap collapse*/

.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
tr.collapse.in {
    display: table-row;
}
tbody.collapse.in {
    display: table-row-group;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
}


/*Bootstrap collapse*/


.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}

.bold {
  font-weight: bold;
}

.ul-title {
  margin-left: 30px;
}

@media (min-width: 961px) {

  .block-item {
    border: 1px solid #e3e3e3;
    padding: 10px 35px 30px 35px;
  }
}

.i-icon--white {
  fill: #ffffff;
}

.i-icon--tech-doc {
  font-size: 32px;
}

.i-icon--tech-doc:hover {
    opacity: .5;
}

.i-icon--docs {
    font-size: 16px;
    margin-top: -5px;
    margin-right: 5px;
}

.hide_block {
    display: none !important;
}

.under{
    z-index: -1;
}

.b_none {
    background-image: none !important;
}

.hide_border {
    border: 1px solid rgb(219, 219, 219) !important;
}

main {
    position: relative;
}

html, body {
    height: 100%;
}

.compareUrl{
    color:#0190d6;
}
.show {
    display: initial!important
}


/* region list */
.b-regions {
	display: -ms-inline-flexbox;
	display: inline-flex;
	-ms-flex-align: center;
	    align-items: center;
	position: relative;
	margin: 0 1.4285em 0 0;
}
.regions_btn {
	position: relative;
	padding: 0 1.9em 0 2.4em;
	font-size: 0.9285rem;
	white-space: nowrap;
	height: 40px;
	cursor: pointer;
	display: -ms-flex;
	display: -ms-flexbox;
	display: flex;
	-moz-align-items: center;
	-ms-align-items: center;
	-o-align-items: center;
	-ms-flex-align: center;
	    align-items: center;
}
.regions_btn > svg {
    position: absolute;
    top: 50%;
    left: 4px;
    width: 20px;
    transform: translateY(-50%);
}
.regions_btn:after {
	content: no-close-quote;
	background: url('/images/icons8-sort-down-filled-24.png') no-repeat center;
    background-size: 100%;
	position: absolute;
    top: 0;
    right: .7em;
    width: .7em;
    height: 100%;
}
.regions_btn:hover .regions_btn-text { text-decoration: underline }
.regions_dropdown {
	display: none;
	background-color: #fff;
    position: absolute;
	width: 20em;
    padding-top: 1em;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
    z-index: 100;
}
.b-regions.isOpened + .regions_dropdown { display: block }
.b-regions.isOpened {
	position: relative;
	z-index: 1;
}
.b-regions.isOpened .regions_btn {
	background-color: #fff;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.35);
}
.regions_links {
	list-style: none;
	max-height: 17.5em;
	padding: 0;
	margin: 0 0 1em;
	overflow-y: auto;
}
.regions_links::-webkit-scrollbar {
	width: .8rem;
	height: .8rem;
}
.regions_links::-webkit-scrollbar-track { background-color: transparent }
.regions_links::-webkit-scrollbar-thumb { background-color: #d9d9d9 }
.regions_item {
	display: block;
	font-size: 0.9285rem;
	color: #000;
	padding: .4em 1.2em;
}
.regions_item:hover {
	background-color: #f4f4f4;
	color: #000;
	text-decoration: none;
}
.regions_item_disabled {
  color: #bbb;
  cursor: default;
}
.regions_item_disabled:hover {
  color: #bbb;
}
.regions_item_disabled:focus {
  color: #bbb;
}

/* mobile menu additionals */
.mobmenu-dops {
	text-align: left;
	line-height: 1;
	padding-left: 45px;
    background: #f5f5f5;
}
.mobmenu-dops .mobmenu-dops-inner {
    background: #fff;
	height: 100%;
	padding-left: 15px;
}
.mobmenu-dops .b-regions {
    margin: 0 0 0 -7px;
}
.mobmenu-dops .regions_dropdown {
	max-width: 50%;
    margin: 0 0 0 -7px;
}
.mobmenu-dops .mobmenu-email,
.mobmenu-dops .mobmenu-worktime span { display: block }
.mobmenu-dops .mobmenu-worktime { padding: 5px 0 }
.mobmenu-dops .mobmenu-worktime span { margin: 5px 0 }
.mobmenu-dops .mobmenu-worktime-weekdays { color: #028fd8 }
.mobmenu-dops .mobmenu-worktime-weekends { color: #e6392a }

/* some adaptive fixses */
@media (max-width: 720px) {
	.catalog-lvl-2__image { max-width: 100% }
	.news-detail__text { overflow-x: auto }
}
/* recemtly_viewed carousel */
.recemtly_viewed.owl-carousel .owl-item img {
	display: initial;
    width: auto;
}
.recemtly_viewed.owl-carousel .catalog-lvl-4__item {
	display: block;
    width: 100%;
    float: none;
    margin: 0 !important;
}
.recemtly_viewed .catalog-lvl-4__item .cl_clear {
	display: block;
    clear: both;
}
@media (max-width: 959px) {
	.recemtly_viewed.owl-carousel .catalog-lvl-4__prices { margin-top: -43px;    -ms-flex-direction: column;    flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start; }
  .recemtly_viewed.owl-carousel .catalog-lvl-4__prices .subtitle {display: none;}
}

/* advantages */
.banners-block-atg { padding-bottom: 22px }
.banners-block-atg .banners-block-atg__item {
    background-position: left center;
    background-repeat: no-repeat;
    display: inline-block;
    width: 23%;
    margin-left: 2%;
    padding: 30px 20px 30px 100px;
    box-sizing: border-box;
	font-family: "Arial";
	font-size: 18px;
	line-height: 20px;
	color: #404040;
	text-decoration: none;
}
.banners-block-atg .banners-block-atg__item:first-child { margin-left: 0 }
.banners-block-atg .banners-block-atg__item:hover { text-decoration: underline }
.banners-block-atg .banners-block-atg__item.item1 { background-image: url('/local/templates/santeam_base/icons/b-block-item1.png') }
.banners-block-atg .banners-block-atg__item.item2 { background-image: url('/local/templates/santeam_base/icons/b-block-item2.png') }
.banners-block-atg .banners-block-atg__item.item3 { background-image: url('/local/templates/santeam_base/icons/b-block-item3.png') }
.banners-block-atg .banners-block-atg__item.item4 { background-image: url(/local/templates/santeam_base/icons/b-block-item4.png) }
.banners-block-atg .banners-block-atg__item:before {
    content: no-close-quote;
    display: inline-block;
    vertical-align: middle;
    width: 1px;
    height: 100%;
    margin-left: -1px;
}
.banners-block-atg .banners-block-atg__item span {
    vertical-align: text-top;
    display: inline-block;
}

@media (max-width: 767px) {
	.banners-block-atg .banners-block-atg__item {
		width: 100%;
		margin-left: 0;
	}
}
@media (min-width: 768px) and (max-width: 1025px) {
	.banners-block-atg .banners-block-atg__item {
		width: 48%;
		margin-left: 2%;
	}
	.banners-block-atg .banners-block-atg__item:first-child + * + * { margin-left: 0 }
}

/* ask price button */
.footer-copyrights__center {
	vertical-align: top;
}
.footer-copyrights__center .askprice-bt {
	display: block;
	background: url('/local/templates/santeam_base/icons/ask_price.png') no-repeat left center;
	color: #fff;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	width: 130px;
	height: 35px;
	padding: 4px 0 4px 50px;
}

main .bx-authform {
  margin: 25px auto 25px;
  padding: 0 20px;
}
main .bx-authform input[type=checkbox] {
  -webkit-appearance: auto;
  height: auto;
}
ul li.hidden{
    display: none;
}
@font-face {
  font-family: 'ALSRublRegular';
  src: url('/local/templates/santeam_base/fonts/rouble.eot');
  src: local('ALS Rubl'), local('ALSRubl'), url('/local/templates/santeam_base/fonts/rouble.woff') format('woff'), url('/local/templates/santeam_base/fonts/rouble.ttf') format('truetype'), url('/local/templates/santeam_base/fonts/rouble.svg#ALSRubl') format('svg');
}



.btn {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background: white;
    border-radius: 4px;
    border: 1px solid #d1d1d1;
    text-decoration: none;
    color: #404040;
    transition: border-color .3s, box-shadow .2s;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
    cursor: pointer;
    height: auto;
}



.btn:hover {
  border-color: black;
}



.btn:active {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.0);
}



.btn[disabled] {
  border-color: #d1d1d1;
  opacity: 0.6;
  background: #f2f2f2;
  pointer-events: none;
}



.btn span {
  vertical-align: middle;
}



.btn .i-icon {
  margin-right: 3px;
}



.btn--small {
  padding: 7px 29px;
}



.btn--big {
  padding: 11px 25px;
  height: auto;
}



.btn--blue {
  color: white;
  background: #224877;
}



.btn--blue .i-icon {
  fill: currentColor;
}



.btn--blue:hover {
  border-color: transparent;
  background: #d22233;
}



.btn--buy:hover svg {
  fill: white;
}



.btn--gray {
  height: 40px;
  color: #404040;
  background: #ebebeb;
}



.btn--gray:hover {
  border-color: transparent;
  color: white;
  background: #d22233;
}



.btn--red {
  color: white;
  background: #d22233;
  border-color: transparent;
  transition: .2s;
}



.btn--red .i-icon {
  fill: white;
}



.btn--red:hover {
  border-color: transparent;
  background: #224877;
}



.btn--order {
  float: right;
  margin-top: 20px;
}



.btn__circle {
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 23px;
  background: white;
  border-radius: 100%;
  line-height: 22px;
  margin-right: 15px;
  text-align: center;
}



.btn__circle .i-icon {
  fill: #d22233;
  margin: 0;
  width: 12px;
  height: 12px;
}



.btn.btn--loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #224877;
  border-radius: 50%;
  animation: btn-loading-spinner 1s ease infinite;
}



.btn.btn--loading .btn__text {
  visibility: hidden;
  opacity: 0;
}

@keyframes btn-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
.i-icon {
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
}
.i-icon--small {
  width: 16px;
  height: 16px;
}
.i-icon--red {
  fill: #d22233;
}
.i-icon--print {
  background-image: url(/local/templates/santeam_base/icons/print.png);
}
.i-icon--edit {
  background-image: url(/local/templates/santeam_base/icons/edit.png);
}

.icon-link {
    text-decoration: none;
}

.icon-link .i-icon {
  vertical-align: middle;
}

.icon-link span {
  text-decoration: underline;
  vertical-align: middle;
}

.icon-link:hover span {
  text-decoration: none;
}
footer {
    position: relative;
    border-top: 1px solid #dadada;
    background: #f0f0f0;
    padding: 30px 0;
    padding-bottom: 0;
}

.footer-menu {
    margin: 35px 0;
    padding-right: 10px;
}

.footer-menu__link {
  border-right: 1px solid #c9c9c9;
  float: left;
}

.footer-menu__link:first-child {
  border-left: 1px solid #c9c9c9;
}

.footer-menu__link a {
  display: block;
  padding: 5px 18px;
  color: #404040;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  transition: .2s;
}

.footer-menu__link a:hover {
  color: white;
  background: #224877;
}

@media (max-width: 960px) {
    .footer-menu {
        display: none;
    }
}

.footer-cities {
    margin: 47px 0;
}

.footer-cities__block {
  display: inline-block;
  width: 33%;
  vertical-align: top;
  color: #404040;
}

.footer-cities__info {
  line-height: 20px;
}

.footer-cities__info a[href*=mailto] {
  color: #d22233;
  text-decoration: none;
}

.footer-cities__info a[href*=mailto]:hover {
  text-decoration: underline;
}

.footer-cities__city {
  font-size: 17px;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
    .footer-cities {
        /*display: none;*/
    }
}

.footer-copyrights {
    background: #224877;
    height: 75px;
    color: white;
    padding: 25px 0;
    font-size: 12px;
}

.footer-copyrights__rights a {
  display: inline-block;
  color: #fff;
  margin-top: 5px;
  margin-right: 10px;
}

.footer-copyrights__fact {
  vertical-align: top;
}

.footer-copyrights__fact a {
  color: inherit;
  text-decoration: none;
}

.footer-copyrights__fact a::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background-image: url(/local/templates/santeam_base/icons/fact.png);
  background-position: center;
  background-repeat: no-repeat;
}

.footer-copyrights__fact div a:before{
  display: none !important;
}

.footer-copyrights__fact .razr {
  border-bottom: 2px solid #abb3c2;
}
@media (max-width: 960px) {
    .footer-copyrights {
        height: auto;
        padding: 20px 0;
    }
    .footer-copyrights__rights span {
    display: block;
  }
    .footer-copyrights__fact {
    margin-top: 25px;
    display: block !important;
  }
}

#cookie-alert {
    transition: all .8s;
    position: fixed;
    bottom: -1px;
    text-align: center;
    padding: 10px;
    z-index: 10000001!important;
    background-color: #f9f9f9;
    border-top: 2px solid #3e5681;
    border-bottom: none;
    box-shadow: inset 0 5px 11px -5px #333;
    left: 0;
    right: 0;
    font-size: 14px;
    opacity: .9;
}
#cookie-alert-close {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding-bottom: 0;
    cursor: pointer;
    display: block;
    right: 20px;
    top: 0;
    color: #d22233;
}
#cookie-alert-close:hover {
    color: #224877;
}
.footer-subscr {
    border-bottom: 1px solid #dadada;
    margin-bottom: 25px;
    padding-bottom: 25px;
}
.footer-subscr-title {
  font-size: 17px;
  color: #404040;
  margin-bottom: 15px;
}
.footer-subscr form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  gap: 20px;
  width: 100%;
}
.footer-subscr form .input-block {
  margin: 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
}
.footer-subscr form .input-block input {
  height: 38px;
}
.footer-subscr form .input-block label {
  display: block;
  color: #404040;
  opacity: .5;
  margin-bottom: 5px;
}
.footer-subscr form .subscribe-form-item__btn--btn-submit {
  display: inline-block;
  padding: 10px 15px;
  border-color: transparent;
  color: #fff;
  background: #d22233;
  transition: .2s;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 5px 14px 0 rgb(0 0 0 / 9%);
  height: auto;
}
.footer-subscr form .subscribe-form-item__btn--btn-submit:hover {
  border-color: transparent;
  background: #224877;
}
@media (max-width: 500px) {
    .footer-subscr form {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
    .footer-subscr form .subscribe-form-item--btn-submit {
    width: 100%;
  }
    .footer-subscr form .subscribe-form-item--btn-submit input {
    width: 100%;
  }
}
.table-main-menu{
  position: relative;
}
.lazy-image-container {
    height: 100%;
    display: none;
}
.lazy-background {
    height: 100%;
}
.main-search__input {
  padding: 0;
  padding-right: 130px;
  padding-left: 20px;
  height: 50px;
  border-radius: 0;
  width: 98%;
}
.main-search__input:placeholder {
  font-style: italic;
  font-size: 13px;
}
.main-search__input:-webkit-input-placeholder{
  font-style: italic;
  font-size: 13px;
}
.main-search__input:-moz-placeholder{
  font-style: italic;
  font-size: 13px;
}
.main-search__input:-ms-input-placeholder{
  font-style: italic;
  font-size: 13px;
}
.main-search__button {
  position: absolute;
  width: 115px;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  color: white;
  background: #d22233;
  border: 0;
  border-top-right-radius: 4px;
  font-size: 16px;
  transition: .3s;
}
.main-search__button--index {
  border-bottom-right-radius: 4px;
}
.main-search__button:hover {
  background: #224877;
}
.inner-top-menu .main-search {
  position: absolute;
  top: 0;
  width: calc(100% - 305px);
  right: 0;
  z-index: 99;
}

@media (min-width: 961px) {
    .main-search {
        position: relative;
    }
    .main-search__input {
    padding-right: 130px;
    padding-left: 20px;
    height: 38px;
    border-radius: 0;
    width: 98%;
  }
}

@media (max-width: 960px) {
    .main-search {
        display: none !important;
    }
}
.main-menu {
    margin-top: 15px;
    margin-bottom: 13px;
}
@media (min-width: 961px) {

  .main-menu {
    height: 38px;
  }
}
@media (max-width:960px){

  .main-menu {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width:960px){

  .main-menu .container {
    padding-bottom: 0;
  }
}

@media (max-width: 960px) {
    .main-menu {
        margin-top: 0;
    }
}
.owl-carousel .owl-item {
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    background-image: url(/local/templates/santeam_base/icons/arrow-red.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    margin: auto;
    cursor: pointer;
    background-color: inherit;
    border: none;
}

.slider-nav--left {
  left: -35px;
  transform: rotate(180deg);
}

.slider-nav--right {
  right: -35px;
}

.slider-nav:hover {
  opacity: 0.8;
}

.slider-nav--top {
  top: -59px;
  right: 0;
  bottom: auto;
}

.slider-nav--top.slider-nav--left {
  right: 70px;
  left: auto;
}

@media (max-width: 960px) {
    .slider-nav {
        /*display: none !important;*/
    }
    .slider-nav--left {
        left: -5px;
    }
    .slider-nav--right {
        right: -5px;
    }
    .footer-cities .footer-cities__block {
        width: 100%;
    }
    
    .footer-cities .slider-nav--left {
        left: -25px;
    }
    .footer-cities .slider-nav--right {
        right: -25px;
    }
}
.index-slider {
    padding-left: 285px;
}
.index-slider__slide {
  height: 450px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.index-slider__more {
  position: absolute;
  right: 25px;
  bottom: 20px;
}
@media(max-width: 600px) {

  .index-slider__more {
    bottom: 55px;
  }
}
.index-slider__more .btn {
  color: black;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0;
  border: 0;
  transition: background .2s;
  font-size: 16px;
  padding: 15px 30px;
}
.index-slider__more .btn:hover {
  background: rgba(255, 255, 255, 1);
}
.index-slider__more .btn span {
  vertical-align: middle;
}
.index-slider__more .btn::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  background-image: url(/local/templates/santeam_base/icons/arrow.png);
  width: 11px;
  height: 11px;
  margin-left: 10px;
}
.index-slider .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
.index-slider .owl-dots .owl-dot {
  width: 9px;
  height: 9px;
  border-radius: 100%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 22px;
  background-color: #c7c1bc;
}
.index-slider .owl-dots .owl-dot.active {
  background-color: #d22233;
}

@media (max-width: 960px) {
    .index-slider {
        padding-left: 0;
    }
    .index-slider__slide {
    height: 0;
    padding-bottom: 44%;
    width: 100% !important;
  }
}

@media (min-width: 961px) {
    .index-slider {
        padding-top: 0 !important;
        margin-top: -12px;
    }
}

@media (max-width: 960px) {
    .owl-item > * {
    width: 245px;
  }
}

.brands-slider {
    border-bottom: 1px solid #dadada;
}

.brands-slider .owl-carousel {
  padding: 45px 0;
}

.brands-slider .slider-nav {
  background-position: right center;
}

.brands-slider__heading {
  font-size: 17px;
  color: #404040;
  opacity: 0.5;
}

.brands-slider__slide {
  height: 45px;
}

.brands-slider__slide .lazy-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(1) opacity(0.4);
  transition: .3s;
}

.brands-slider__slide .lazy-background:hover {
  filter: grayscale(0);
}

@media (min-width: 961px) {
    .brands-slider .owl-carousel {
    width: calc(100% - 75px);
    margin: auto;
  }
}

@media (max-width: 960px) {
    .brands-slider__slide {
    width: 100px;
  }
}

.slider-heading {
    position: relative;
    margin: 37px 0;
}

.slider-heading a {
  color: black;
}

.slider-heading a:hover {
  text-decoration: none;
}

.detail-slider {
	position: relative;
    border: 1px solid #e3e3e3;
}

.detail-slider__image {
  height: 273px;
  font-size: 0;
  text-align: center;
}

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

.detail-slider__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle;
}

@media (max-width: 960px) {
    .detail-slider {
        border: 0;
    }
    .detail-slider__image {
    width: 100%;
  }
}

.detail-slider-thumbs {
    margin-top: 15px;
}

.detail-slider-thumbs__image {
  height: 90px;
  font-size: 0;
  text-align: center;
  border: 1px solid #e3e3e3;
  opacity: 0.5;
  cursor: pointer;
}

.selected .detail-slider-thumbs__image {
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(227, 227, 227);
  opacity: 1;
}

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

.detail-slider-thumbs__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto !important;
  display: inline-block !important;
  vertical-align: middle;
}


@media (max-width: 960px) {
    .detail-slider-thumbs__image {
    width: 100%;
  }
}

.related-products-v2 .slider-heading h2 {
  font-size: 27px;
}

.new-products-v2 .slider-heading h2 {
  font-size: 27px;
}

@media (max-width: 960px) {
    .related-products-v2 {
        display: none;
    }
    .related-products-v2 .slider-heading h2 {
    font-size: 14px;
  }
    .related-products-v2 .owl-item > * {
    width: 100%;
  }
    .new-products-v2 .slider-heading h2 {
    font-size: 14px;
  }
    .new-products-v2 .owl-item > * {
    width: 100%;
  }
    .new-products .owl-item > *,
    .hit-products .owl-item > *,
    .action-products .owl-item > *,
    .company-news .owl-item > *,
    .related-products .owl-item > * {
        width: auto;
    }
}
.login-modal__links {
  margin: 30px 0;
  margin-bottom: 0;
}
.login-modal__links a {
  color: #d22233;
  font-size: 13px;
}
.login-modal__links a:not(:last-child) {
  margin-right: 40px;
}
.login-modal--recover .login-modal__links {
  margin-bottom: 0;
}
.login-modal .confirm-button .btn {
  width: 140px;
  text-align: center;
}

@media (max-width: 767px) {

  .leave-message-modal .input-block {
    margin-bottom: 16px !important;
  }
}

.leave-message-modal .input-block label {
  margin-bottom: 10px;
}

.leave-message-modal .input-block label span {
  color: #D22233;
}

.leave-message-modal .input-block input {
  height: 40px;
}

.leave-message-modal .input-block textarea {
  min-height: 126px;
}

@media (max-width: 767px) {

  .leave-message-modal .modal-content {
    padding: 26px 15px;
  }
}

#leave-message-modal .modal-dialog {
  max-width: 580px;
}

#leave-message-modal .modal-content {
  padding: 50px 45px 30px 45px;
}

@media(max-width: 767px) {

  #leave-message-modal .modal-content {
    padding: 26px 15px;
  }
}

@media(max-width: 767px) {

  #leave-message-modal {
    margin-top: 86px;
  }
}

#leave-message-modal .modal-title {
  max-width: calc(100% - 40px);
}

@media (max-width: 767px) {

  #leave-message-modal .modal-title {
    margin-bottom: 22px;
  }
}

@media (max-width: 767px) {

  #leave-message-modal .confirm-button {
    margin-top: 4px;
  }
}

#leave-message-modal .input-block.errors_cont {
  color: #d22233;
  margin-top: 20px;
}

#leave-message-modal .input-block.success_cont:not(.errors_cont) {
  color: #00A314;
  margin-top: 20px;
}

#leave_message_modal_main_submit {
    padding: 16px;
    min-width: 202px;
}

.city-modal-list {
    width: 100%;
}

.city-modal-list__item {
  float: left;
  padding-right: 15px;
  width: 50%;
  vertical-align: top;
  margin: 10px 0;
}

.request-modal__block {
  width: 335px;
  margin: auto;
}

.request-modal .confirm-button .btn {
  width: 200px;
}

.request-modal-doctor {
    text-align: center;
    background: #fcfcfc;
    border-bottom: 1px solid #ececec;
    padding: 25px 45px;
    display: table;
    width: 100%;
    table-layout: fixed;
}

.request-modal-doctor__left {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 50%;
}

.request-modal-doctor__right {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 50%;
}

.request-modal-doctor__name a {
  font-family: Panton-Bold;
  color: #333636;
}

.request-modal-doctor__spec {
  color: #868686;
}

/*Bootstrap modals*/

.auth_alert{
    text-align: center;
    display: block;
    color: red;
    padding-top: 10px;
}

.modal-open {
    overflow: hidden;
}

.modal {
    display: none;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    perspective: 800px;
    transform-style: preserve-3d;
    transform: translate3d(0,0,0);
}

.modal .input-block {
  margin: 30px 0;
}

.modal .input-block > label {
  margin-bottom: 7px;
  display: block;
}

.modal.fade .modal-dialog {
    transition: 0.3s ease-out;
    transform: rotateX(-100deg) translateY(-20px);
    opacity: 0;
    transform-origin: top;
}
.modal.in .modal-dialog {
    transform: rotateX(0)  translateY(40px);
    opacity: 1;
}
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-dialog {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 30px auto;
}
.modal-content {
    position: relative;
    outline: 0;
    background: white;
    overflow: hidden;
    transition: .3s;
    padding: 25px 45px;
    border: 1px solid rgb(209, 209, 209);
    border-radius: 3px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
}
@media (max-width: 767px) {

  .modal-content {
    padding: 25px 20px;
  }
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #EFEFEF;
}
.modal-backdrop.fade {
    opacity: 0;
}
.modal-backdrop.in {
    opacity: 0.8;
}

.modal-header {
    min-height: 16.42857143px;
}

.modal-header .close {
    position: absolute;
    display: block;
    right: 20px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: #d22233;
    font-size: 35px;
    text-align: center;
    font-family: inherit;
    -webkit-appearance: none;
    cursor: pointer;
}

.modal-header .close:hover {
  opacity: .8;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

.modal-body {
    position: relative;
}
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
#callback-modal-delivery .modal-dialog {
    max-width: 700px;
}
#callback-modal-delivery .modal-dialog .modal-content {
    padding-bottom: 45px;
}
.modal-body.login-modal .nav.nav-tabs.half li {width:50%;}
.modal-body.login-modal .nav.nav-tabs li {
    float: left;
    width: 33.33333%;
    text-align: center;
    line-height: 45px;
    border: 1px solid #eee;
}
.modal-body.login-modal .nav.nav-tabs {
    list-style: none;
    padding: 0;
    margin-bottom:10px;
}
.modal-body.login-modal .nav.nav-tabs li a {
    text-decoration: none;
    display: block;
}
.modal-body.login-modal .nav.nav-tabs li.active a,
.modal-body.login-modal .nav.nav-tabs li a:hover {
    text-decoration: none;
    background: #f2f2f2;
    display: block;
}
.modal-body.login-modal .tab-content {
    text-align: center;
}
#callback-modal-delivery h3{padding:25px 0;}
.modal-delivery-box .delivery-box {
    width: 33.333%;
    float: left;
}
.modal-delivery-box .delivery-box.middle {
    border-left: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
}


.modal-dialog.modal-lg {
	max-width: 1000px;
}

@media(max-width: 600px) {
    .modal-body.login-modal .nav.nav-tabs li {
        width: 100%;
    }
}

/*Bootstrap modals*/
.advantages-blocks {
    margin: 30px 0;
}
.advantages-blocks__item {
  padding: 23px 20px;
  padding-right: 30px;
  background: #f2f2f2;
  box-shadow: 0 2px 10px -5px transparent;
  transition: .2s;
}
.advantages-blocks__item > a {
  text-decoration: none;
  color: black;
}
.advantages-blocks__item:hover {
  box-shadow: 0 2px 10px -5px black;
}
.advantages-blocks__img {
  float: left;
}
.advantages-blocks__img .i-icon {
  width: 50px;
  height: 50px;
}
.advantages-blocks__heading {
  color: #404040;
  font-size: 18px;
  margin-bottom: 20px;
}
.advantages-blocks__text {
  font-size: 13px;
  line-height: 18px;
}
.advantages-blocks__right {
  padding-left: 75px;
}

@media (min-width: 1170px) {
    .advantages-blocks__item {
    float: left;
    width: 25%;
  }
    .advantages-blocks__item:not(:last-child) {
    margin-right: 20px;
    width: calc(25% - 20px);
  }
}

@media (max-width: 960px) {
    .advantages-blocks {
        margin-left: -15px;
        margin-right: -15px;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .advantages-blocks__item {
    -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    margin: 0;
    height: auto !important;
    margin-bottom: 1px;
  }
    .advantages-blocks__item:not(:last-child) {
    margin-right: 0;
  }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .advantages-blocks__item {
    width: 50%;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
  }
    .advantages-blocks__item:nth-child(even) {
    margin-right: 0;
    width: calc(50% - 10px);
  }
}
.rub {
    font-family: 'ALSRublRegular';
}
.rub::after {
  content: 'i';
}
.old-price {
    font-size: 12px;
    color: #cac8c8;
    text-decoration: line-through;
}
.banners-block {
    margin: 20px 0;
    margin-bottom: 30px;
}
.banners-block__item {
  display: block;
  text-decoration: none;
  color: #ffffff;
  height: 180px;
  width: 50%;
  float: left;
  position: relative;
}
.banners-block__item:hover .lazy-background {
  opacity: 0.9;
}
.banners-block__item:not(:last-child) {
  padding-right: 20px;
}
.banners-block__item--big {
  width: 100%;
  margin-top: 26px;
  height: auto;
}
.banners-block__item--big .banners-block__bottom {
  width: 100%;
  bottom: 0;
  text-align: left;
}
@media (max-width: 960px) {

  .banners-block__item--big {
    display: none;
  }
}
.banners-block__image {
  height: inherit;
}
.banners-block__image .lazy-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: .2s;
}
.banners-block__bottom {
  position: relative;
  bottom: 0;
  color:#000;
  left: 0;
  width: calc(100% - 20px);
  padding: 0 20px;
}
.banners-block__text {

    }
.banners-block__heading {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 27px;
}
.banners-block__btn {
  margin-top: 40px;
  margin-bottom: 40px;
}
.banners-block__btn a {
  width: 240px;
  height: 40px;
  text-align: center;
}

@media (max-width: 960px) {
    .banners-block {
        /*display: none;*/
    }
    .banners-block__item {
    width: 100%;
    height: 90px;
    margin-bottom: 20px;
    padding-right: 0!important;
  }
    .banners-block__image {
    height: inherit;
  }
    .banners-block__image .lazy-background {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .2s;
  }
}

@media (max-width: 480px) {
    .banners-block__bottom {
    bottom: 15px;
  }
}
.quality-control {
    color: #404040;
    border: 3px solid #e4e4e4;
    padding: 25px;
    text-align: center;
    margin: 35px 0;
}
.quality-control__wrapper {
  display: inline-block;
  text-align: left;
}
.quality-control__heading {
  font-size: 25px;
  margin-bottom: 18px;
}
.quality-control__text {
  line-height: 20px;
  margin: 20px 0;
}
.quality-control__buttons {
  margin-top: 30px;
}
.quality-control__left {
  float: left;
  margin-left: -60px;
}
.quality-control__left .i-icon {
  width: 78px;
  height: 78px;
}
.quality-control__right {
  padding-left: 70px;
}
.quality-control__buttons .btn {
  text-align: center;
}

@media (max-width: 1070px) {
    .quality-control__left {
    margin-left: 0;
  }
    .quality-control__right {
    padding-left: 120px;
  }
}

@media (min-width: 961px) {
    .quality-control__buttons .btn {
    max-width: 230px;
    width: 30%;
  }
    .quality-control__buttons .btn:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 960px) {
    .quality-control {
        border: 0;
        padding: 0 10px;
    }
    .quality-control__left {
    display: none;
  }
    .quality-control__right {
    padding-left: 0;
  }
    .quality-control__heading {
    font-size: 19px;
  }
    .quality-control__heading::before {
    content: '';
    display: block;
    float: left;
    width: 45px;
    height: 45px;
    background-image: url(/local/templates/santeam_base/icons/control.svg);
    background-size: contain;
    margin-right: 15px;
    background-position: center;
    background-repeat: no-repeat;
  }
    .quality-control__text {
    color: #6e6e6e;
  }
    .quality-control__text br {
    display: none;
  }
    .quality-control__buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}
.breadcrumbs {
    padding: 10px 18px;
    padding-bottom: 0;
    background: #eeeeee;
    margin-top: -13px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.breadcrumbs__item {
  background: #f6f6f6;
  float: left;
  font-size: 13px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  position: relative;
  color: #b2b2b2;
  transition: .3s;
}
.breadcrumbs__item:not(:last-child):hover {
  color: #d22233;
}
.breadcrumbs__item:not(:last-child) {
  margin-right: 5px;
}
.breadcrumbs__item >a {
  display: block;
  height: 100%;
  padding: 8px 18px;
  text-decoration: none;
  color: inherit;
}
.breadcrumbs__item:last-child>a {
  pointer-events: none;
}
.breadcrumbs__item--opened .breadcrumbs-item-dropdown {
  display: block;
}
.breadcrumbs__item--unactive a {
  cursor: default;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 210px;
  white-space: nowrap;
}
.breadcrumbs__item--unactive:hover {
  color: #b2b2b2;
}
.breadcrumbs__item--dropdown {
  background: #f6f6f6;
  color: #224877;
}
.breadcrumbs__item--dropdown .i-icon {
  margin-left: 20px;
  width: 11px;
  height: 11px;
  fill: #224877;
}
.breadcrumbs__item--dropdown:hover {
  color: #d22233;
}
.breadcrumbs__item--dropdown:hover .i-icon {
  fill: currentColor;
}
.breadcrumbs__item .opened-hide:checked+.breadcrumbs-item-dropdown {
  display: block;
}

@media (max-width: 960px) {
    .breadcrumbs {
        display: none;
    }
}

.breadcrumbs-item-dropdown {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0px 5px 24px 0px rgba(0, 0, 0, 0.07);
    border: 1px solid rgb(227, 227, 227);
    margin-top: 7px;
    width: 108%;
    min-width: 225px;
    z-index: 11;
}

.breadcrumbs-item-dropdown__item a {
  display: block;
  padding: 8px 25px;
  text-decoration: none;
  color: #224877;
  transition: .2s;
}

.breadcrumbs-item-dropdown__item a:hover {
  background: #cccccc;
}

.container.container--breadcrumbs{
    padding-bottom: 0;
}
@media(max-width: 960px) {
    .container.container--breadcrumbs {
        padding-top: 0;
    }
}
.sided-holder {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin: 25px 0;
}
.sided-holder__left, .sided-holder__right {
  display: table-cell;
  vertical-align: top;
}
.sided-holder__left {
  width: 275px;
}
.sided-holder__right {
  padding-left: 20px;
}
.sided-holder--half .sided-holder__left {
  width: calc(50% - 20px);
  padding-right: 20px;
}
.sided-holder--half .sided-holder__right {
  padding-left: 0;
}

@media (max-width: 960px) {
    .sided-holder {
        display: block;
    }
    .sided-holder__left, .sided-holder__right {
    margin: 25px 0;
    display: block;
    vertical-align: top;
    width: 100%;
    padding: 0;
  }
    .sided-holder--half .sided-holder__left {
    width: 100%;
    padding-right: 0;
  }
    .sided-holder--half .sided-holder__right {
    padding-left: 0;
  }
}
.content.content--news .sided-holder {
    margin: 0;
}
select {
    cursor: pointer;
}

input {
    border-radius: 3px;
    border: 1px solid rgb(219, 219, 219);
    padding: 15px 10px;
    background: #fff;
    height: 28px;
    -webkit-appearance: none;
}

input.valid {
  background-image: url(/local/templates/santeam_base/icons/galka-green.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 23px;
  padding-right: 50px;
}

input.invalid {
  border-color: currentColor;
  background-image: url(/local/templates/santeam_base/icons/invalid.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  padding-right: 50px;
  color: #d22233;
}

input.invalid::-moz-placeholder {
  color: currentColor;
}

input.invalid:-ms-input-placeholder {
  color: currentColor;
}

input.invalid::placeholder {
  color: currentColor;
}

input.invalid:-webkit-input-placeholder{
  color: currentColor;
}

input[type=text], input[type=password] {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 28px;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill  {
    background: transparent !important;
}

textarea {
    border-radius: 3px;
    border: 1px solid rgb(219, 219, 219);
    padding: 15px 10px;
    background: #fff;
    -webkit-appearance: none;
    resize: vertical;
}

.big-radio {
    position: relative;
    margin: 45px 0;
    cursor: pointer;
}

.big-radio input {
  display: none;
}

.big-radio input:checked + label .big-radio__circle::before {
  background: #d22233;
}

.big-radio label {
  display: block;
  padding-left: 40px;
  cursor: pointer;
}

.big-radio__heading {
  color: black;
  margin-bottom: 35px;
}

.big-radio__text {
  color: #9c9c9c;
  font-size: 12px;
  line-height: 2em;
}

.big-radio__circle {
  top: -3px;
  left: 0;
  width: 22px;
  height: 22px;
  position: absolute;
  border-bottom: 100%;
  border: 1px solid rgb(223, 223, 223);
  border-radius: 100%;
}

.big-radio__circle::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  transition: .2s;
  background: transparent;
}

.custom-checkbox {
    margin: 65px 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox input:checked + label .custom-checkbox__slider::before {
  left: calc(100% - 30px);
}

.custom-checkbox input:checked + label .custom-checkbox__left {
  font-weight: normal;
  color: black;
  cursor: pointer;
}

.custom-checkbox input:checked + label .custom-checkbox__right {
  font-weight: bold;
  color: #224877;
  cursor: default;
}

.custom-checkbox__left, .custom-checkbox__right {
  font-size: 16px;
  min-width: 160px;
}

.custom-checkbox__left {
  font-weight: bold;
  color: #224877;
}

.custom-checkbox__right {
  cursor: pointer;
}

.custom-checkbox label > * {
  display: inline-block;
  vertical-align: middle;
}

.custom-checkbox__slider {
  width: 115px;
  height: 29px;
  margin: 0 40px;
  position: relative;
  border: 1px solid rgb(231, 231, 231);
  background-color: rgb(242, 242, 242);
  position: relative;
  border-radius: 18px;
}

.custom-checkbox__slider::before {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background: #d22233;
  border-radius: 50%;
  transition: .2s;
  cursor: pointer;
}

@media (min-width: 961px) {
    .custom-checkbox {
        margin: 60px 0;
        padding: 0 20px;
    }
}

@media (max-width: 960px) {
    .custom-checkbox label > * {
    display: block;
  }
    .custom-checkbox__slider {
    margin: 10px 0;
  }
}

.input-block {
    margin: 10px 0;
}

.input-block--half {
  display: inline-block;
  vertical-align: top;
  width: 49%;
}

.input-block input, .input-block textarea {
  width: 100%;
}

.input-block--double input {
  display: inline-block;
  vertical-align: middle;
  width: calc(50% + 4px - 1em);
}

.input-block--double span {
  width: 10px;
  text-align: center;
  display: inline-block;
}

.input-block--cities {
  margin-top: 20px;
}

.input-block input[type=checkbox], .input-block input[type=radio] {
  display: none;
}

.input-block input[type=checkbox] + label:hover::before, .input-block input[type=radio] + label:hover::before {
  box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0);
}

.input-block input[type=checkbox] + label::before, .input-block input[type=radio] + label::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background: white;
  box-shadow: 0px 5px 13px 0px rgba(0, 0, 0, 0.11);
  border: 1px solid rgb(219, 219, 219);
  border-radius: 3px;
  margin-right: 10px;
  background: white;
  cursor: auto;
  transition: box-shadow .2s;
}

.input-block input[type=checkbox] + label a, .input-block input[type=checkbox] + label span, .input-block input[type=radio] + label a, .input-block input[type=radio] + label span {
  text-decoration: none;
  vertical-align: middle;
  font-size: 13px;
  color: #404040;
  cursor: pointer;
}

.input-block input[type=checkbox] + label span, .input-block input[type=radio] + label span{
  cursor: auto;
}

.input-block input[type=checkbox]:checked + label::before, .input-block input[type=radio]:checked + label::before {
  background: #d22233;
  background-image: url(/local/templates/santeam_base/icons/galka-white.svg);
  background-position: center;
  background-size: 14px;
  background-repeat: no-repeat;
  box-shadow: 0 0 0 0;
  cursor: auto;
}

.input-block__note {
  color: #999999;
  font-size: 13px;
  margin-bottom: 10px;
}

.input-block__delete {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  height: 100%;
}

.input-block__delete:before, .input-block__delete:after {
  content: '';
  width: 55%;
  height: 1px;
  display: block;
  position: absolute;
  background: #fb7216;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.input-block__delete:before {
  transform: rotate(45deg);
}

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

.input-block--inline > label {
  display: inline-block;
}

.input-block.disabled {
  opacity: 0.7;
}

.input-block.required > label:first-child > * {
  vertical-align: middle;
}

.input-block.required > label:first-child::after {
  content: '*';
  margin-left: 2px;
  color: #d22233;
}


.bx-auth-reg input{
    max-width: 100%;
}
.register_submit_button--mobile {
    padding: 5px 10px;
}

.politics {
    display: block;
    font-size: 13px;
}
.lk-personal .politics {
    margin-bottom: -15px;
}
.login-modal .politics, .work-with-claims__form .politics {
    padding: 0 0 20px;
}
.pagination {
    text-align: right;
}
.pagination__item {
  display: inline-block;
  vertical-align: middle;
}
.pagination__item:not(:last-child) {
  margin-right: 5px;
}
.pagination__item a {
  display: block;
  height: 100%;
  border: 1px solid #e3e3e3;
  background: white;
  color: #224877;
  width: 26px;
  height: 26px;
  line-height: 24px;
  text-align: center;
  transition: .2s;
  text-decoration: none;
}
.pagination__item a:hover {
  background: #224877;
  color: white;
}
.pagination__item--current a {
  background: #224877;
  color: white;
  cursor: default;
}
.pagination__item--prev .i-icon {
  transform: rotate(90deg);
}
.pagination__item--next .i-icon {
  transform: rotate(-90deg);
}
.pagination__item--prev a, .pagination__item--next a {
  background: #ebebeb;
}
.pagination__item--prev .i-icon, .pagination__item--next .i-icon {
  fill: #224877;
  width: 10px;
  height: 10px;
}
.pagination__item--prev:hover .i-icon, .pagination__item--next:hover .i-icon {
  fill: white;
}

@media (max-width: 960px) {
    .pagination {
        text-align: center;
        margin: 20px 0;
    }
    .pagination__item:not(:last-child) {
    margin-right: 3px;
  }
}
@media (max-width: 330px) {
    .pagination {
        margin-left: -20px;
        margin-right: -20px;
    }
}
.nav-tabs--detail {
  display: block;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  border: 1px solid rgb(227, 227, 227);
  padding: 0;
  margin: 10px 0;
}
.nav-tabs--detail li {
  display: inline-block;
  position: relative;
}
.nav-tabs--detail li.active::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 0;
  right: 0;
  margin: auto;
  width: 17px;
  height: 17px;
  background: #fff;
  transform: rotate(45deg);
  border-right: 1px solid rgb(227, 227, 227);
  border-bottom: 1px solid rgb(227, 227, 227);
  box-shadow: 8px 8px 13px 0px rgba(0, 0, 0, 0.08);
}
.nav-tabs--detail li a {
  text-decoration: none;
  display: block;
  height: 100%;
  font-size: 16px;
  color: #224877;
  text-align: center;
  padding: 18px 50px;
  transition: .2s;
}
.nav-tabs--detail li a:hover {
  color: #d22233;
}

@media (min-width: 961px) and (max-width: 1170px) {
    .nav-tabs--detail li {
    width: 33%;
    vertical-align: middle;
  }
    .nav-tabs--detail li a {
    padding: 18px 82px;
  }
}

@media (max-width: 960px) {
    .nav-tabs--detail {
    box-shadow: none;
    border: 0;
  }
    .nav-tabs--detail li {
    display: block;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid #e3e3e3;
  }
    .nav-tabs--detail li a {
    padding: 18px;
  }
    .nav-tabs--detail li.active {
    background: #224877;
  }
    .nav-tabs--detail li.active a {
    color: white;
  }
    .nav-tabs--detail li.active::after {
    content: none;
  }
    .nav-tabs--detail li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.tab-content__pane {
  padding: 55px;
  padding-top: 70px;
  background: #f6f6f6;
  margin-top: -10px;
  font-size: 13px;
}

.tab-content__pane p {
  line-height: 30px;
}
@media (max-width: 960px) {
    .tab-content__pane {
    background: #f4f4f4;
    padding: 20px;
    margin-top: 25px;
    margin-left: -15px;
    margin-right: -15px;
  }
}
.nav-lk {
    border-bottom: 1px solid #dfdfdf;
    font-size: 0;
}
.nav-lk--4 .nav-lk__item {
  width: calc((100% - 300px) / 3);
}
.nav-lk__item {
  display: inline-block;
  font-size: 14px;
  text-align: center;
  position: relative;
  width: calc((100% - 300px) / 4);
}
@media (min-width: 961px) {

  .nav-lk__item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 1px;
    margin-top: 1px;
    right: 0;
    height: 0px;
    background: white;
  }
}
.nav-lk__item:hover a {
  color: #224877;
}
.nav-lk__item a {
  color: #949494;
  text-decoration: none;
  padding: 12px;
  border: 1px solid #dfdfdf;
  border-bottom: 0;
  display: block;
}
@media(max-width: 1350px) {

  .nav-lk__item a {
    padding: 10px;
  }
}
.nav-lk__item--active {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.09);
}
.nav-lk__item--active a {
  border-bottom: 1px solid white;
  margin-bottom: -1px;
  color: #224877;
}

@media (min-width: 961px) {
    .nav-lk__item:not(:last-child) a {
    border-right: 0;
  }
}

@media (max-width: 960px) {
    .nav-lk__item {
    max-width:none !important;
    display:block;
  }
    width:100% !important
            .nav-lk__item:not(:last-child) {

    }
}

@media (max-width: 960px) {
	.nav-lk {
		position: absolute;
		top: 255px;
		left: 0;
		right: 0;
		z-index: 10;
		background-color: #ffffff;
		transition: .3s;
	}
	.nav-lk__item {
    max-width:none !important;
    display:block;
    width:100% !important
  }
	.search-opened .nav-lk {
    top: 180px;
  }
}

@media (max-width: 960px) {

  .inner-menu-hidden {
    display: none;
  }
}
.documents-list__item:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px dashed #224877;
}
.documents-list__item:not(:first-child) {
  padding-top: 40px;
}
.documents-list__heading {
  margin-bottom: 40px;
}
@media (max-width: 960px) {
    .documents-list__heading > * {
    font-size: 14px;
  }
}
.document {
    display: inline-block;
    vertical-align: top;
    margin-right: 25px;
    margin-bottom: 25px;
}
.document__wrapper {
  background: white;
  height: 207px;
  width: 195px;
  padding: 25px 12px;
  font-size: 13px;
  border: 1px solid #e3e3e3;
  position: relative;
  z-index: 2;
}
.document__wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -5px;
  left: -5px;
  border: 1px solid #e3e3e3;
  z-index: -1;
  background: white;
}
.document__name {
  color: #224877;
  margin-bottom: 5px;
}
.document__size {
  color: #d22233;
}
.document__buttons {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 0 12px;
}
.document__buttons .btn {
  padding: 7px 22px;
}

@media (max-width: 960px) {
    .document {
        display: block;
        margin: 0;
    }
    .document__wrapper {
    background: transparent;
    height: auto;
    width: 100%;
    padding: 20px;
    padding-left: 60px;
  }
    .document__wrapper::before {
    content: none;
  }
    .document:hover .document__name::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22fill%3A%23d22233%3B%22%3E%20%3Cpath%20d%3D%22M-0.000%2C14.000%20C-0.000%2C14.000%20-0.000%2C12.000%20-0.000%2C12.000%20C-0.000%2C12.000%2014.000%2C12.000%2014.000%2C12.000%20C14.000%2C12.000%2014.000%2C14.000%2014.000%2C14.000%20C14.000%2C14.000%20-0.000%2C14.000%20-0.000%2C14.000%20ZM8.000%2C10.000%20C8.000%2C10.000%206.000%2C10.000%206.000%2C10.000%20C6.000%2C10.000%206.000%2C9.414%206.000%2C9.414%20C6.000%2C9.414%202.171%2C5.585%202.171%2C5.585%20C2.171%2C5.585%203.586%2C4.171%203.586%2C4.171%20C3.586%2C4.171%206.000%2C6.586%206.000%2C6.586%20C6.000%2C6.586%206.000%2C-0.000%206.000%2C-0.000%20C6.000%2C-0.000%208.000%2C-0.000%208.000%2C-0.000%20C8.000%2C-0.000%208.000%2C6.585%208.000%2C6.585%20C8.000%2C6.585%2010.414%2C4.171%2010.414%2C4.171%20C10.414%2C4.171%2011.828%2C5.585%2011.828%2C5.585%20C11.828%2C5.585%208.000%2C9.414%208.000%2C9.414%20C8.000%2C9.414%208.000%2C10.000%208.000%2C10.000%20Z%22%20id%3D%22path-1%22%20class%3D%22cls-2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  }
    .document:not(:last-child) .document__wrapper {
    border-bottom: 0;
  }
    .document__buttons {
    opacity: 0;
    z-index: 100;
    top: 0;
    height: 100%;
    padding: 0;
  }
    .document__buttons .btn {
    width: 100%;
    height: 100%;
  }
    .document__name {
    position: relative;
    line-height: 16px;
  }
    .document__name::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
    top: 0;
    left: -40px;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22fill%3A%23224877%3B%22%3E%20%3Cpath%20d%3D%22M-0.000%2C14.000%20C-0.000%2C14.000%20-0.000%2C12.000%20-0.000%2C12.000%20C-0.000%2C12.000%2014.000%2C12.000%2014.000%2C12.000%20C14.000%2C12.000%2014.000%2C14.000%2014.000%2C14.000%20C14.000%2C14.000%20-0.000%2C14.000%20-0.000%2C14.000%20ZM8.000%2C10.000%20C8.000%2C10.000%206.000%2C10.000%206.000%2C10.000%20C6.000%2C10.000%206.000%2C9.414%206.000%2C9.414%20C6.000%2C9.414%202.171%2C5.585%202.171%2C5.585%20C2.171%2C5.585%203.586%2C4.171%203.586%2C4.171%20C3.586%2C4.171%206.000%2C6.586%206.000%2C6.586%20C6.000%2C6.586%206.000%2C-0.000%206.000%2C-0.000%20C6.000%2C-0.000%208.000%2C-0.000%208.000%2C-0.000%20C8.000%2C-0.000%208.000%2C6.585%208.000%2C6.585%20C8.000%2C6.585%2010.414%2C4.171%2010.414%2C4.171%20C10.414%2C4.171%2011.828%2C5.585%2011.828%2C5.585%20C11.828%2C5.585%208.000%2C9.414%208.000%2C9.414%20C8.000%2C9.414%208.000%2C10.000%208.000%2C10.000%20Z%22%20id%3D%22path-1%22%20class%3D%22cls-2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  }
}
.orders-head {
    margin: 35px 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.orders-head__item {
  position: relative;
  display: inline-block;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
.orders-head__item-count {
  color: white;
  background: #d22233;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 11px;
  vertical-align: middle;
  border-radius: 100%;
  display: inline-block;
  margin-left: 10px;
}
.orders-head__item a {
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: #9e9e9e;
  padding: 10px 0;
  padding-right: 10px;
  border-bottom: 2px solid #d1d1d1;
  display: block;
}
.orders-head__item a > * {
  vertical-align: middle;
}
.orders-head__item--active {
  color: #d22233;
}
.orders-head__item--active a {
  color: currentColor;
}
.orders-head__item--active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 0;
  height: 2px;
  background: currentColor;
}

@media (min-width: 961px) and (max-width: 1170px) {
    .orders-head__item a {
    text-transform: none;
  }
}


@media (max-width: 960px) {
    .orders-head {
        margin: 0;
        border: 0;
        display: block;
    }
    .orders-head > .justify {
    text-align: left;
    margin: 0;
  }
    .orders-head > .justify::after {
    content: none;
  }
    .orders-head__item {
    display: block !important;
    margin: 10px 0;
    border: 1px solid #e3e3e3;
    text-align: left;
  }
    .orders-head__item .orders-head__item-count {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-weight: 700;
    background: #3D6FAE;
    font-size: 14px;
  }
    .orders-head__item a {
    color: #224877;
    text-transform: none;
    padding: 15px 25px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    border: 0;
  }
    .orders-head__item a:hover {
    background: #ebebeb;
  }
    .orders-head__item--active a {
    background: #ebebeb;
  }
    .orders-head__item--active::after {
    content: none;
  }
}

.order__items-wrap > div {
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.order__num {
  width: 290px;
  color: #222222;
}

.order__status {
  width: 240px;
  color: #222222;
}

.order__status .red {
  color: #A94442;
}

.order__summ {
  width: 160px;
  color: #222222;
  font-weight: 600;
}

.order__payment-status{
  width: 120px;
}

.order__payment-status--red {
  color: #A94442;
}

.order:not(:last-child) {
  margin-bottom: 25px;
}

.order__item {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 16px;
  color: #a1a0a0;
}

.order__item > * {
  display: table-cell;
  vertical-align: middle;
}

.order__item:not(:last-child) {
  border-bottom: 1px solid #d1d1d1;
}

.order__name {
  font-size: 14px;
  text-align: left;
}

.order__image {
  height: 100px;
}

.order__image .lazy-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: calc(100% - 10px);
  margin: 5px;
}

.order__buttons {
  padding: 50px 0;
  border-bottom: 1px solid #d1d1d1;
  text-align: right;
}

.order__buttons .btn {
  margin-left: 20px;
  padding: 0px 33px;
  height: 40px;
  line-height: 36px;
}

.order__buttons .btn span {
  vertical-align: baseline;
}

.order__collapse {
  font-size: 16px;
  padding: 28px;
  border-radius: 2px;
  color: black;
  border: 1px solid #e3e3e3;
  transition: .2s;
  background: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.order__collapse[aria-expanded=true] {
  color: #224877;
  background: #f4f4f4;
}

.order__collapse[aria-expanded=true] .i-icon {
  transform: scale(-1);
  fill: #224877;
}

.order__collapse .i-icon {
  transition: .2s;
}

@media (min-width: 961px) and (max-width: 1170px) {
    .order__buttons .btn {
    width: calc(100% / 3 - 2px - 1em);
    margin: 0 10px;
    padding: 0 15px;
    text-align: center;
  }
    .order__buttons .btn:first-letter {
    text-transform: uppercase;
  }
    .order__buttons .btn:first-child {
    margin-left: 0;
  }
    .order__buttons .btn:last-child {
    margin-right: 0;
  }
}

@media (max-width: 960px) {
    .order__item {
    display: block;
    border-bottom: 0 !important;
    font-size: 13px;
  }
    .order__item > * {
    display: block;
    margin-bottom: 5px;
  }
    .order__item:not(:last-child) {
    margin-bottom: 40px;
  }
    .order__item .o-cl-5 {
    display: none;
  }
    .order__item .o-cl-6 {
    font-size: 20px;
    color: #404040;
    margin-top: 15px;
  }
    .order__name {
    padding-top: 20px;
    font-size: 13px;
    color: #404040;
  }
    .order__image {
    float: left;
    width: 80px;
    margin-right: 10px;
  }
    .order__buttons {
    text-align: center;
    padding: 0;
    margin: 50px 0;
    margin-bottom: 28px;
    border: 0;
  }
    .order__buttons .btn {
    margin: 5px 0;
    width: 100%;
  }
    .order__buttons .btn:first-letter {
    text-transform: uppercase;
  }
    .order__small, .order__big {
    color: #3e6fad;
    clear: both;
  }
    .order__small::before, .order__big::before {
    content: attr(data-before);
  }
    .order:not(:last-child) {
    margin-bottom: -1px;
  }
    .order__collapse {
    font-size: 12px;
    border-left: 0;
    border-right: 0;
    padding: 15px;
    margin: 0 -15px;
    position: relative;
  }
    .order__collapse > .justify {
    text-align: left;
    margin: 0;
  }
    .order__collapse > .justify > * {
    display: block;
  }
    .order__collapse > .justify::after {
    content: none;
  }
    .order__collapse[aria-expanded="true"] {
    background: #ebebeb;
    box-shadow: none;
  }
    .order__collapse[aria-expanded="true"] .order__arrow {
    transform: rotate(90deg);
  }
    .order__collapse [class*="order"]:not(:last-child) {
    margin-bottom: 3px;
  }
    .order__arrow {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    height: 20px;
    width: 20px;
    margin: auto;
    background-image: url(/local/templates/santeam_base/icons/arrow2.svg);
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
  }
    .order__arrow .i-icon {
    display: none;
  }
    .order__payment-status {
    display: none !important;
  }
}


.order-info {
    padding: 25px 0;
    line-height: 20px;
    color: #6e6e6e;
}


.order-info__heading {
  font-weight: bold;
  margin-bottom: 25px;
  color: #404040;
}


.order-info__item {
  margin: 10px 0;
}


.order-info__item:not(:last-child) {
  padding-right: 10px;
}


.order-info__item .icon-link {
  color: #6e6e6e;
  margin-bottom: 10px;
  display: block;
}


.order-info__item .i-icon {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}


.order-info-client {
  font-size: 16px;
  text-align: left;
  margin-bottom: 50px;
}


.order-info-client__title {
  font-size: 16px;
  margin-bottom: 17px;
  font-weight: 700;
}


.order-info-client__link {
  font-size: 14px;
  color: #D22233;
  text-decoration: none;
  border-bottom: 1px solid #D22233;
  margin-top: 11px;
  display: inline-block;
  transition: .2s;
  margin-bottom: 10px;
}


.order-info-client__link:hover {
  border-bottom: 1px solid transparent;
}

@media (max-width: 960px) {
    .order-info {
        display: none;
    }
    .order-info-client {
    display: none;
  }
}

.order-table {
    border: 1px solid #e3e3e3;
    border-top: 0;
}

.order-table__body {
  padding: 0 25px;
  text-align: center;
}

.order-table__head {
  display: table;
  table-layout: fixed;
  width: 100%;
  padding: 15px 25px;
  border-bottom: 2px solid #dfdfdf;
  color: #606060;
  text-align: center;
}

.order-table__head > * {
  display: table-cell;
  vertical-align: middle;
}

@media (max-width: 960px) {
    .order-table {
        border: 0;
        margin: 0 -15px;
    }
    .order-table__head {
    display: none;
  }
    .order-table__body {
    padding: 0 20px;
    text-align: left;
  }
}

@media (min-width: 961px) {

    .o-cl-1 {
        width: 130px;
    }
    .o-cl-2 {
        text-align: left;
    }
    .o-cl-3 {

    }
    .o-cl-4 {

    }
    .o-cl-5 {

    }
    .o-cl-6 {
        width: 80px;
        color: black;
    }
}
.contacts-list {
    padding-bottom: 60px;
    padding-top: 20px;
}
.contacts-list__item {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.contacts-list__item:not(:last-child) {
  margin-bottom: 125px;
}
.contacts-list__item > * {
  display: table-cell;
  vertical-align: top;
}
.contacts-list__item td {
  font-size: 13px;
  padding: 10px 22px;
}
.contacts-list__item td:first-child {
  width: 40%;
}
.contacts-list__right {
  padding-left: 70px;
}
.contacts-list__heading {
  font-size: 16px;
  color: #224877;
  padding-left: 22px;
  margin-bottom: 30px;
}

@media (max-width: 960px) {
    .contacts-list__item {
    display: block;
  }
    .contacts-list__item > * {
    display: block;
  }
    .contacts-list__item:not(:last-child) {
    margin-bottom: 30px;
  }
    .contacts-list__right {
    padding-left: 0;
    padding-top: 40px;
  }
}
.seo-block {
    margin-top: 45px;
    margin-bottom: 60px;
    /* color: #9f9f9f; */
    line-height: 21px;
    font-size: 15px;
}

@media (max-width: 960px) {
    .seo-block {
        font-size: 13px;
    }
}
.advantages__item {
  padding: 30px 15px;
  border: 1px solid #e3e3e3;
  margin-bottom: 25px;
  position: relative;
}
.advantages__image {
  height: 100px;
}
.advantages__image .lazy-background {
  background-position: center;
  background-repeat: no-repeat;
}
.advantages__heading {
  font-size: 19px;
}
.advantages__text {
  margin-top: 40px;
  color: #6e6e6e;
  line-height: 22px;
}
.advantages__text img {
  -o-object-fit:contain;
     object-fit:contain;
  width: 100%;
  height: 100%;
}
.advantages__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (min-width: 961px) {
    .advantages__item {
    display: -ms-flexbox;
    display: flex;
  }
    .advantages__image {
    margin-right: 15px;
    -ms-flex: 0 0 140px;
        flex: 0 0 140px;
  }
}
.static-content {
    font-size: 14px;
    color: #6e6e6e;
}
.static-content p {
  margin: 25px 0;
}
.static-content ul {
  list-style-type: none;
  padding: 0;
  margin: 25px 0;
}
.static-content ul li {
  position: relative;
  padding-left: 25px;
  margin: 15px 0;
}
.static-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  background-color: #d22233;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.27);
  border-radius: 100%;
}
.static-content ol {
  list-style-type: none;
  padding: 0;
  margin: 25px 0;
  counter-reset: Counter;
}
.static-content ol li {
  position: relative;
  padding-left: 25px;
  margin: 15px 0;
}
.static-content ol li::before {
  content: counter(Counter) '.';
  counter-increment: Counter;
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #d22233;
}
.static-content table {
  font-size: 13px;
  color: #404040;
}
.static-content table td {
  padding: 4px 35px;
}

@media (max-width: 960px) {
    .static-content table td {
    padding: 4px 15px;
  }
}
.cart-animation {
    animation-name: cart-animation;
    animation-duration: .4s;
    animation-iteration-count: 2;
}

@keyframes cart-animation {
    0% {
        box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);;
    }
    50% {
        box-shadow: 0 0 20px 0 #7fad36;
    }
    100% {
        box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
    }
}

.cart-summary-animation {
	animation-name: cart-summary-animation;
	animation-duration: .4s;
	animation-iteration-count: 2;
}

@keyframes cart-summary-animation {
	0% {
		box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
	}
	50% {
		box-shadow: 0 0 20px 0 #d22233;
	}
	100% {
		box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
	}
}
.param {
	line-height: 1.4;
}

.param__prop {
	position: relative;
	display: block;
	overflow: hidden;
}

.param__prop:after {
	content: '';
	position: absolute;
	margin-left: .3em;
	bottom: .35em;
	width: 100%;
	border-bottom: .1em dotted;
}

.param__value {
	float: right;
	padding-left: .2em;
}

.param--align:after {
	content: '';
	display: table;
	clear: both;
}

.param--align .param__prop {
	float: left;
	width: 70%;
}

.param--align .param__value {
	float: right;
	width: 30%;
	box-sizing: border-box;
}

.table-emulate>div,.table-emulate>ul {
	vertical-align: top;
}

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

.list__item {
	margin-bottom: 10px;
}

.list--gutter {
	padding: 0;
}
.fastViewModal .section-holder__left {
	width: 45%;
	display: inline-block;
}

.fastViewModal  .section-holder__right {
	display: inline-block;
	width: 53%;
	vertical-align: top;
}

.fastViewModal .section-slider {
	width: 275px;
	height: 275px;
	display: inline-block;
}

.fastViewModal  .section-slider-thumbs2 {
	display: inline-block;
	vertical-align: top;
	width: 100px;
}

.fastViewModal  .section-product-characteristics-table {
	margin-top: 20px;
	font-size: 13px;
	color: #404040;
	height: 293px;
	overflow-x: auto;
}

.fastViewModal .section-product-buy__article {
	display: inline-block;
	font-size: 21px;
}

.fastViewModal .section-product-buy__compare {
	display: inline-block;
	float: right;
}

.catalog-lvl-4__item2 > * > .fastView,
.catalog-lvl-4__item > * > .fastView,.tile-product .fastView {
	display: none;
}
.catalog-lvl-4__item2:hover  > * > .fastView,
.catalog-lvl-4__item:hover  > * > .fastView,.tile-product:hover .fastView {
	display: block;
	position: absolute;
	width: 100%;
	height: 40px;
	box-shadow: inset 0 0 0 1px #2992C4;
	background-color: #fff;
	color: #2992C4;
	border-radius: 7px;
	text-align: center;
	box-sizing: border-box;
	padding: 11px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
}
.view_row .catalog-lvl-4__item>*>.fastView {
	top: auto;
	bottom: 0;
}
.fastViewModal a.goItem {
	background: #D22233;
	text-align: center;
	color: #fff;
	display: block;
	border: 1px solid #D1D1D1;
	height: 47px;
	box-sizing: border-box;
	padding: 9px;
	font-size: 18px;
	border-radius: 3px;
	margin: 14px 0;
	text-decoration: none;
	vertical-align: baseline;
}

.fastViewModal a.goItem:before {
	background: url(/local/templates/santeam_base/images/tovar.png) no-repeat;
	width: 25px;
	height: 25px;
	content: no-close-quote;
	position: relative;
	display: inline-block;
	vertical-align: text-bottom;
	line-height: 43px;
	position: relative;
	left: -5px;
}

.fastViewModal .goItem > span {
	display: inline-block;
}

.fastViewModal .section-product-buy__compare > a {
	text-decoration: none;
	color: #2992C4;
	border-bottom: 1px dashed #2992C4;
}

.fastViewModal .section-product-buy__compare > a:before {
	content: no-close-quote;
	background: url(/local/templates/santeam_base/images/comp.png) no-repeat;
	width: 17px;
	height: 15px;
	display: inline-block;
}

.fastViewModal .owl-dots.disabled,.fastViewModal .owl-nav.disabled {
	display: none;
}
.catalog-lvl-4__item:hover>*>.fastView {
	top: auto;
	bottom: 0;
}

@media (max-width: 640px) {
	.fastViewModal .modal-content {
		padding: 20px;
	}

	.fastViewModal  .modal-header {
		padding: 0 28px;
	}

	.fastViewModal .section-holder__left {
		display: block;
		width: 100%;
	}

	.fastViewModal .section-holder__right {
		display: block;
		width: 100%;
		clear: both;
		margin-top: 83px;
	}


}

/*Header*/

/* Header */

.header {
    display: none;
	height: 133px;
}

.header__top {
  background: #f2f2f2;
  border-bottom: 1px solid #cccccc;
  height: 40px;
  padding-left: 0;
  padding-right: 20px;
}

.header__top > .container {
  padding: 0;
}

.header__top-wrapper {
  position: relative;
}

.header__bottom {
  padding-top: 14px;
  margin-top: 0;
  padding-left: 0;
  padding-right: 20px;
}

.header__bottom > .container {
  padding: 0;
}

.header__bottom-wrapper {
  margin-bottom: -52px;
  padding-bottom: 16px;
}

.header__bottom-wrapper .header-callback .header-cities-list__phone {
  font-size: 20px;
  padding: 0 0 10px 4px;
  display: block;
  text-align: center;
}

.header .container {
  max-width: 1341px;
}

.header.fixed {
  height: 168px;
}
.header-logo img {
    border: 0;
}

@media (min-width: 961px) {
    .header {
        display: block;
    }
}

/* -- Header */

/* Top links */

.header-top-links__link {
  display: inline-block;
}

.header-top-links__link a {
  color: #404040;
}

.header-top-links__left a {
  padding: 10px 5px;
  font-size: 14px;
  display: block;
  text-decoration: none;
  margin-right: 8px;
}

.header-top-links__left a:hover {
  color: white;
  background: #224877;
}

.header-top-links__right .header-top-links__link:hover a {
  color: #d22233;
}

.header-top-links__right .header-top-links__link:not(:last-child) {
  margin-right: 50px;
}

.header-top-links__right .header-top-links__link a {
  display: block;
  text-decoration: none;
  font-size: 12px;
}

.header-top-links__right .header-top-links__link span {
  vertical-align: middle;
}

.header-top-links__right .header-top-links__link .i-icon {
  margin-right: 10px;
  width: 14px;
  height: 14px;
}

.header-top-links.justify {
  margin: 0;
  padding: 0;
  height: 40px;
}

/* -- Top links */

.header-cities-list {
	margin-left: -7px;
	margin-top: -2px;
	vertical-align: top!important;
	padding-left: 0;
	text-align: center;


}

.header-cities-list__item {
  margin: 8px 0;
}

.header-cities-list__phone {
  color: #404040;
}

.header-cities-list__note {
  font-size: 13px;
  color: #224877;
  position: relative;
  display: inline-block;
  padding-left: 5px;
}

.header-cities-list__note::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: currentColor;
}

.header-cities-list .phone-incitylist {
  font-size: 20px;
  letter-spacing: 0;
  text-align: center;
}

.header-cities-list .city-incitylist {
  padding: 0;
  width: auto;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
}

.header-cities-list .email-incitylist {
  padding: 3px 17px 0 15px;
  font-size: 13px;
  text-align: center;
}


.header-mode {
	position: relative;
}


.header-mode:before {
  background: url(/local/templates/santeam_base/images/rr.png?v2) no-repeat;
  width: 60px;
  height: 70px;
  position: absolute;
  display: block;
  content: no-close-quote;
  left: 12px;
}


.header-mode-list{
  color: #028fd8;
  font-size: 13px;
  padding: 0 0 0 82px;
  box-sizing: border-box;
  display: block;
}


.header-mode-list > p {
  line-height: 7px;
}


.header-mode-list-holydays{
  color: #e6392a;
}



@media (max-width: 1070px) {
    .header-cities-list {
        display: none !important;
    }
}

.header-callback {
	width: 245px;
	vertical-align: top!important;
	padding: 0;
    margin-left: -10px;
	box-sizing: border-box;
	margin-top: -10px;
}

.header-callback .btn {
  font-size: 12px;
  padding-right: 35px;
}

.header-callback .i-icon {
  width: 14px;
  height: 14px;
  margin-right: 15px;
}

.header-callback-block {
	vertical-align: top !important;
}

.header-callback-block > * {
  display: inline-block;
  vertical-align: top;
}

.header-callback-block-btn> .btn {
  display: inline-block;
  padding: 12px 15px;
  background: white;
  border-radius: 4px;
  border: 1px solid #d1d1d1;
  text-decoration: none;
  color: #404040;
  transition: border-color .3s, box-shadow .2s;
  box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  width: 231px;
  height: 44px;
}

.header-cart {
	margin-left: 23px;
	vertical-align: top !important;
}

.header-cart .btn {
  font-size: 15px;
  color: #224877;
  padding-right: 0;
  padding-left: 0;
  width: 231px;
  height: 44px;
  padding: 10px 15px;
  text-align: center;
}

.header-cart .btn .i-icon {
  font-size: 18px;
  margin-right: 12px;
}

.header-cart__note {
  color: #b8b3b3;
  font-size: 11px;
  margin-top: 10px;
}

.header-cart #bx_basket {
  vertical-align: baseline;
  display: inline-block;
}

.header-cart #bx_basket .rub {
  vertical-align: baseline;
}
.header.fixed {
    top: 0;
    z-index: 100;
    background-color: #fff;
    border-bottom: solid 1px #ccc;
    box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.09);
    padding-bottom: 5px;
}

.header-logo {
	min-width: 228px;
    text-align: center;
}
.header-mobile__search input {
  width: 100%;
  height: 40px;
}

.main-search__input {
  text-overflow: ellipsis;
}


@media (max-width: 1350px) {
	.header-callback-block-btn, .header-cart {
			display: block;
			padding: 0 0 2px;
	}

	.header__top {
		padding: 0 27px 0 39px;
	}

	.header-cart {
		margin-left: 0;
	}

    .header.fixed{
        padding-top: 14px;
    }
}

@media (max-width: 960px) {
  .main-search__input {
    padding-right: 60px;
  }
}
.header-mobile {
    display: none;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px 10px;
    background: #fff;
}
.header-mobile > *:not(:last-child) {
  margin-right: 7px;
}
.header-mobile > *:nth-child(3) {
  margin-right: 0;
}
.header-mobile__note {
  font-size: 11px;
  text-align: center;
  color: #a8a8a8;
  -ms-flex: 1 1 100%;
      flex: 1 1 100%;
  margin-top: 5px;
}
.header-mobile__big-btn {
  background: white;
  border-radius: 4px;
  height: 40px;
  padding: 0 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex: 1 1 0%;
      flex: 1 1 0%;
  margin-top: 10px;
}
.header-mobile__logo {
  font-size: 0;
  margin: auto;
}
.header-mobile__logo img {
  max-height: 40px;
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
}
.header-mobile__btn {
  background: #224877;
  cursor: pointer;
  width: 40px;
  margin-top: 10px;
  border-radius: 4px;
  text-align: center;
  line-height: 40px;
}
.header-mobile__btn .i-icon {
  fill: white;
}
.header-mobile__btn--red {
  background: #d22233;
}
.header-mobile__btn--white {
  background: #fff;
}
.header-mobile__search {
  -ms-flex: 1 1 90%;
      flex: 1 1 90%;
  max-height: 50px;
  overflow: hidden;
  transition: .2s;
  margin-top: 10px !important;
  margin-right: 10px;
  position: relative;
}
.header-mobile__search input {
  width: 100%;
  height: 40px;
}
.header-mobile__search input[type=submit] {
  position: absolute;
  width: 40px;
  right: 0;
  top: 0;
  background: url(/local/templates/santeam_base/icons/zoom.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: center;
  border-radius: 0;
  border-width: 0;
}
.header-mobile__search input[type=text] {
  border-color: #d22233;
}
.header-mobile__search--open {
  max-height: 50px;
}
@media (max-width: 600px) {

  .header-mobile__search {
    -ms-flex: 1 1 80%;
        flex: 1 1 80%;
  }
}
.header-mobile__burger {
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
}
.header-mobile__burger span {
  width: 25px;
  height: 3px;
  background: #d22233;
  display: block;
  transition: .2s;
  margin: 0 auto;
}
.header-mobile__burger span:not(:last-child) {
  margin-bottom: 3px;
}
.header-mobile__burger--open span:first-child {
  transform: rotate(45deg);
  transform-origin: center;
}
.header-mobile__burger--open span:last-child {
  transform: rotate(-45deg);
  transform-origin: center;
  margin-top: -12px;
}
.header-mobile__burger--open span:nth-child(2) {
  opacity: 0;
}
.header-mobile__menu-lk {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: white;
  padding: 20px;
  margin-top: 60px;
  z-index: 20;
  border: 1px solid #e3e3e3;
  box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 9%);
  display: none;
}
.header-mobile__menu-lk.open {
  display: block;
}
.header-mobile__link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
}
.header-mobile__link:not(:last-child) {
  margin-bottom: 15px;
}
.header-mobile__link .i-icon {
  fill: #224877;
  margin-right: 10px;
}
.header-mobile__link--logout {
  color: #bfbfbf;
}
.header-mobile__link--logout .i-icon {
  fill: #bfbfbf;
  filter: grayscale(1);
  opacity: 0.4;
}

@media (max-width: 960px) {
    .header-mobile {
	    position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
	    z-index: 80;
    }
}

.header-mobile-dropdown {
    display: none;
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    background: white;
    height: calc(100% - 60px);
    z-index: 30;
    overflow: scroll;
}

.header-mobile-dropdown .i-icon {
  fill: #224877;
}

.header-mobile-dropdown__item {
  border-bottom: 1px solid #ebebeb;
}

.header-mobile-dropdown--open {
  display: block;
}

.header-mobile-dropdown__icon {
  width: 45px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 15px;
  vertical-align: middle;
  background: #f5f5f5;
}

.header-mobile-dropdown__heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.header-mobile-dropdown__heading .header-mobile-dropdown__link a {/*font-size: 16px;*/
  text-transform: uppercase;
  font-weight: bold;
  color: #224877;
}

.header-mobile-dropdown__link {
  -ms-flex: 1 1 0%;
      flex: 1 1 0%;
  height: 55px;
}

.header-mobile-dropdown__link a {
  -webkit-box-align: center;
  padding-left: 15px;
  color: #666666;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
}

.header-mobile-dropdown__list {
  border-top: 1px solid #ebebeb;
}

.header-mobile-dropdown__list-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.header-mobile-dropdown__list-item .header-mobile-dropdown__icon, .header-mobile-dropdown__list-item .header-mobile-dropdown__link {
  height: 50px;
}

/*News*/

.news-list--ml {
  margin-left: -20px;
}

@media (max-width: 960px) {

  .news-list--ml {
    margin-left: 0;
  }
}

.news-list__item {
  border: 1px solid #e3e3e3;
}

.news-list__item:not(:last-child) {
  margin-bottom: 25px;
}

.news-list__image {
  height: 164px;
  position: relative;
}

.news-list__image .lazy-background {
  background-position: center;
  background-repeat: no-repeat;
}

.news-list__image > a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.news-list__heading {
  font-size: 19px;
}

.news-list__heading a {
  text-decoration: none;
  color: #404040;
}

.news-list__heading a:hover {
  color: #224877;
}

.news-list__text {
  margin-top: 15px;
  color: #6e6e6e;
  line-height: 22px;
}

.news-list__date {
  color: #224877;
  font-size: 12px;
  margin-top: 5px;
}

.news-list__info {
  padding: 20px 30px;
}

@media (min-width: 961px) {
    .news-list__item {
    display: -ms-flexbox;
    display: flex;
  }
    .news-list__image {
    margin-right: 15px;
    -ms-flex: 0 0 215px;
        flex: 0 0 215px;
  }
}
.news-detail__item {

    }
.news-detail__image {
  float: left;
  margin-right: 20px;
}
.news-detail__heading {
  font-size: 19px;
}
.news-detail__heading a {
  text-decoration: none;
  color: #404040;
}
.news-detail__heading a:hover {
  color: #224877;
}
.news-detail__text {
  margin-top: 0;
  color: #6e6e6e;
  line-height: 22px;
}
.news-detail__text p:first-child {
  margin-top: 0;
}
.news-detail__date {
  color: #224877;
  font-size: 12px;
  margin-top: 5px;
}
.news-detail__navs {
  margin-top: 25px;
}
.news-detail__navs a {
  display: inline-block;
  padding: 10px 10px 10px 0;
  color: #d22233;
  font-size: 15px;
}
.news-detail__navs a:not(:last-child) {
  margin-right: 45px;
}

@media (max-width: 600px) {
    .news-detail__image {
    float: none;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (min-width: 961px) {
    .news-detail__item {
    border: 1px solid #e3e3e3;
    padding: 30px 35px;
  }
}

@media (max-width: 960px) {
    .news-detail__navs a {
    display: block;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.tile-new {
    border: 1px solid #e4e4e4;
}
.tile-new__image {
  height: 180px;
  position: relative;
}
.tile-new__image .lazy-background {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.tile-new__image > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.tile-new__date {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #224877;
  padding: 4px 14px;
}
.tile-new__bottom {
  padding: 12px 16px 17px 16px;
  background: #f2f2f2;
}
.tile-new__name {
  margin-bottom: 10px;
  height: 32px;
  overflow: hidden;
}
.tile-new__name a {
  color: #404040;
  text-decoration: none;
}
.tile-new__name a:hover {
  text-decoration: underline;
}
.tile-new__text {
  font-size: 12px;
  line-height: 16px;
  color: #666666;
  height: 48px;
  overflow: hidden;
}

/*Catalog*/

.catalog-menu {
    position: relative;
    width: 285px;
    vertical-align: bottom;
}

.inner-top-menu .catalog-menu{width: 100%;position: absolute;}

.catalog-menu__btn {
  background: #224877;
  color: white;
  text-transform: uppercase;
  padding: 17px 20px;
  cursor: pointer;
  border-top-left-radius: 4px;
  position: relative;
  font-size: 15px;
  z-index: 20;
}

.inner-top-menu .catalog-menu__btn {
  width: 305px;
}

@media screen and (max-width: 991px) {
  .catalog-menu__btn {
      width: 100% !important;
  }
}

.catalog-menu__btn::before {
  content: '';
  position: absolute;
  left: 10px;
  width: 28px;
  top: 0;
  bottom: 0;
  background: url(/local/templates/santeam_base/icons/burger.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: .2s;
  background-size: contain;
}

.catalog-menu--opened .catalog-menu-dropdown {
  display: block;
  background: white;
  z-index: 60;
}

.catalog-menu--opened .catalog-menu-dropdown__item {
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.09);
}

.catalog-menu--disabled .catalog-menu-dropdown {
  display: block;
  margin-top: 10px;
  border-top: 1px solid #ededed;
  overflow: auto;
  height: 454px;
}

.catalog-menu--disabled .catalog-menu-dropdown__item {
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.09);
}

.catalog-menu--disabled .catalog-menu__btn {
  border-bottom-left-radius: 4px;
  cursor: default;
}

.catalog-menu--disabled .catalog-menu__btn::after {
  content: none;
}

@media (min-width: 961px) {
    .catalog-menu__btn {
    background: #224877;
    color: #fff;
    padding: 10px 20px 10px 50px;
    transition: .3s;
    height: 38px;
  }
    .catalog-menu__btn:hover {
    background: #d22233;
  }
}

@media (max-width: 960px) {
    .catalog-menu {
        margin: 0 -15px;
        display: block !important;
        width: auto !important;
    }
    .catalog-menu__btn {
    border-radius: 0 !important;
    text-align: center;/*&::after {*//*transform: rotate(-90deg);*//*}*/
  }
    .catalog-menu--disabled .catalog-menu-dropdown {
    margin-top: 0;
  }
    .catalog-menu--opened .catalog-menu-dropdown__item, .catalog-menu--disabled .catalog-menu-dropdown__item {
    box-shadow: 0px 1px 1px 0px rgba(231, 231, 231, 0.9);
  }
}

.catalog-menu-dropdown {
    position: absolute;
    width: 100%;
    z-index: 10;
    display: none;
}

@media (max-width: 960px) {

  .catalog-menu-dropdown {
    top: 50px;
  }
}

.catalog-menu-dropdown__item {
  transition: .2s;
  width: 100%;
  margin: 0 !important;
  position: relative;
  background: white;
}

.catalog-menu-dropdown__item:first-child {
  border-top: 1px solid #e3e3e3;
}

.catalog-menu-dropdown__img {
  width: 45px;
  height: inherit;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
}

.catalog-menu-dropdown__img--left {
  background-position: left center;
}

.catalog-menu-dropdown__img .i-icon {
  width: 19px;
  height: 19px;
}

.catalog-menu-dropdown__name {
  color: #666666;
  height: 100%;
  flex: 1;
  padding-left: 10px;
}
.catalog-menu-dropdown__submenus {
    top: 38px;
    width: calc(100% - 285px);
    height: 466px;
    left: 285px;
    position: absolute;
    z-index: 99;
    padding-left: 285px;
    display: none;

}
.catalog-menu-dropdown__submenus .catalog-menu-dropdown__submenu {
  margin-left: 0;
  padding-left: 20px;
  left: 0;
  top: 0;
  font-size: 0;
  height: auto;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  background: #fff;
  z-index: 9;
  display: none;
  min-width: 1000px;
}
@media (max-width: 1200px) {

  .catalog-menu-dropdown__submenus .catalog-menu-dropdown__submenu {
    min-width: 600px;
  }
}
.catalog-menu-dropdown__submenus .catalog-menu-dropdown__submenu > .catalog-menu-dropdown__item {
  font-size: 14px;
  float: none;
  vertical-align: top;
  width: 33.3333%;
  height: auto;
  position: relative;
  box-shadow: none !important;
  min-height: 60px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-align: center;
      align-items: center;
}
@media (max-width: 960px) {
    .catalog-menu-dropdown__submenus {
        display: none !important;
    }
}
@media (max-width: 960px) {
  .catalog-menu-dropdown__item:hover {
    padding-left: 0;
  }
  .catalog-menu-dropdown__link {
    padding: 0 20px;
    padding-right: 40px;
    position: relative;
  }
  .catalog-menu-dropdown__img {
    background-position: center;
  }
  .catalog-menu-dropdown__name {
    padding-left: 20px;
  }

}
#opened:checked + .catalog-menu .catalog-menu-dropdown {
  display: block;
  background: white;
  z-index: 11;
  overflow: visible;
  padding-top: 30px;
}
#opened:checked + .catalog-menu .catalog-menu-dropdown__item{
  margin-top: 0 !important;
  position: relative;
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.09) inset !important;
}
#opened:checked + .catalog-menu .catalog-menu__btn:after{
  transform: scale(-1);
}

.opened-hide {
    display: none;
}
.catalog-anchors-big {
    margin-left: -15px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.catalog-anchors-big__item {
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  width: calc(16.6% - 15px);
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin-left: 15px;
  margin-bottom: 15px;
}
.catalog-anchors-big__item a {
  text-decoration: none;
  text-align:  center;
  display: block;
  padding: 5px;
  position: relative;
}
.catalog-anchors-big__item:hover .catalog-anchors-big__name span {
  border-bottom: 0;
}
.catalog-anchors-big.horizontal .catalog-anchors-big__item {
  width: calc(33.3% - 15px);
}
@media (max-width: 1100px) {

  .catalog-anchors-big.horizontal .catalog-anchors-big__item {
    width: calc(49.9% - 15px);
  }
}
@media (max-width: 960px) {

  .catalog-anchors-big.horizontal .catalog-anchors-big__item {
    width: 100%;
  }
}
.catalog-anchors-big.horizontal .catalog-anchors-big__item a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.catalog-anchors-big__img {
  display: block;
  width: 90px;
  height: 90px;
  margin: 0 auto;
}
.catalog-anchors-big__img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.catalog-anchors-big.horizontal .catalog-anchors-big__img {
  width: 55px;
  height: 55px;
  -ms-flex: 0 0 55px;
      flex: 0 0 55px;
  margin: 0;
}
.catalog-anchors-big__name {
  display: block;
  padding-top: 10px;
}
.catalog-anchors-big__name span {
  color: #224877;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px dashed currentColor;
}
.catalog-anchors-big.horizontal .catalog-anchors-big__name {
  padding-top: 0;
  -ms-flex: 0 1 auto;
      flex: 0 1 auto;
  text-align: left;
  margin-left: 10px;
}

@media (max-width: 1200px) {
    .catalog-anchors-big__item {
    width: calc(24.9% - 15px);
  }
}

@media (max-width: 960px) {
    .catalog-anchors-big {
        margin: 0;
    }
    .catalog-anchors-big__item {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
    .catalog-anchors-big__item a {
    padding: 5px 20px;
  }
    .catalog-anchors-big__name span {
    font-size: 14px;
  }
}

.topSectionsMain .catalog-anchors-big .catalog-anchors-big__name{
  padding-top: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  text-align: left;
  margin-left: 10px;
}

.topSectionsMain .catalog-anchors-big .catalog-anchors-big__item{
  width: calc(33.3% - 15px);
}

@media(max-width: 1100px){

  .topSectionsMain .catalog-anchors-big .catalog-anchors-big__item {
    width: calc(49.9% - 15px);
  }
}

@media(max-width: 960px){

  .topSectionsMain .catalog-anchors-big .catalog-anchors-big__item {
    width: 100%;
  }
}

.topSectionsMain .catalog-anchors-big .catalog-anchors-big__item a{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.topSectionsMain .catalog-anchors-big .catalog-anchors-big__img{
  width: 55px;
  height: 55px;
  -ms-flex: 0 0 55px;
  flex: 0 0 55px;
  margin: 0;
}
.catalog-anchors-small__item {
  color: #224877;
  font-size: 15px;
  border-top: 1px dashed #224877;
  transition: .2s;
}
.catalog-anchors-small__item:last-child {
  border-bottom: 1px dashed #224877;
}
.catalog-anchors-small__item:hover {
  color: #d22233;
}
.catalog-anchors-small__item a {
  padding: 10px 25px;
  display: block;
  color: inherit;
  text-decoration: none;
}
.catalog-anchors-small__item--active {
  color: #d22233;
}
.catalog-lvl-1 {
    margin-top: 50px;
}
.catalog-lvl-1__item {
  padding: 35px 18px;
  border-top: 1px solid #e3e3e3;
}
.catalog-lvl-1__item:last-child {
  border-bottom: 1px solid #e3e3e3;
}
.catalog-lvl-1__heading {
  margin-bottom: 70px;
}
.catalog-lvl-1__heading > a {
  text-decoration: none;
}
.catalog-lvl-1__image {
  width: 70px;
  height: 70px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 30px;
}
.catalog-lvl-1__image .lazy-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: calc(100% - 10px);
  margin: 5px;
}
.catalog-lvl-1__title {
  font-size: 19px;
  display: inline-block;
  vertical-align: middle;
  color: #404040;
  text-decoration: underline;
  width: calc(100% - 100px - 1em);
}
.catalog-lvl-1__title:hover {
  text-decoration: none;
}

.catalog-lvl-2__item {
  border: 1px solid #e3e3e3;
}

.catalog-lvl-2__item:not(:last-child) {
  margin-bottom: 35px;
}

.catalog-lvl-2__heading {
  background: #eeeeee;
  padding: 20px 30px;
  display: table;
  width: 100%;
}

.catalog-lvl-2__heading > * {
  display: table-cell;
}

.catalog-lvl-2__count {
  text-align: right;
  font-size: 12px;
  color: #d22233;
}

.catalog-lvl-2__count > * {
  vertical-align: middle;
}

.catalog-lvl-2__count .i-icon {
  margin-right: 5px;
}

.catalog-lvl-2__title {
  font-size: 19px;
  color: #404040;
  display: table;
  text-decoration: none;
}

.catalog-lvl-2__title:hover {
  color: #d22233;
}

.catalog-lvl-2__main {
  display: table;
  padding: 40px 0;
}

.catalog-lvl-2__image, .catalog-lvl-2__desc {
  display: table-cell;
  vertical-align: top;
}

.catalog-lvl-2__image {
  width: 290px;
  height: 240px;
}

.catalog-lvl-2__image .lazy-background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.catalog-lvl-2__desc .catalog-preview-list__item {
  width: 33%;
}

.catalog-lvl-2__text {
  color: #6e6e6e;
  margin-bottom: 70px;
  line-height: 22px;
  padding-right: 10px;
}

@media (min-width: 961px) and (max-width: 1170px) {
    .catalog-lvl-2 .catalog-preview-list__item {
    width: 50%;
  }
}

@media (max-width: 960px) {
    .catalog-lvl-2__count {
    display: none;
  }
    .catalog-lvl-2__text {
    margin-bottom: 30px;
  }
    .catalog-lvl-2__main {
    padding: 15px;
    display: block;
  }
    .catalog-lvl-2__image {
    height: 200px;
  }
    .catalog-lvl-2__image .lazy-background {
    background-position: center;
  }
    .catalog-lvl-2__image, .catalog-lvl-2__desc {
    display: block;
    margin: auto;
  }
    .catalog-lvl-2 .catalog-preview-list__item {
    width: 50%;
  }
}

.catalog-lvl-3__item {
  border: 1px solid #e3e3e3;
  display: table;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.catalog-lvl-3__item:hover {
  box-shadow: 0 0 1px 0px #a29c9c;
}

.catalog-lvl-3__item > * {
  display: table-cell;
  vertical-align: middle;
}

.catalog-lvl-3__item:not(:last-child) {
  margin-bottom: 15px;
}

.catalog-lvl-3__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.catalog-lvl-3__link__new {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
}

.catalog-lvl-3__title {
  font-size: 19px;
  color: #404040;
  margin-bottom: 17px;
}

.catalog-lvl-3__desc {
  padding: 10px 0;
  padding-right: 20px;
}

.catalog-lvl-3__text {
  color: #6e6e6e;
  line-height: 22px;
}

.catalog-lvl-3__image {
  width: 190px;
  height: 160px;
  padding: 10px;
}

.catalog-lvl-3__image .lazy-background {
  height: auto;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: -1;
}

.catalog-lvl-3__count {
  border-left: 1px solid #e3e3e3;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 23px;
  text-align: center;
  width: 168px;
}

.catalog-lvl-3__count .i-icon {
  margin-bottom: 10px;
}

@media (max-width: 960px) {
    .catalog-lvl-3__count {
    display: none !important;
  }
    .catalog-lvl-3__image {
    margin: auto;
  }
    .catalog-lvl-3__item {
    display: block;
    width: 100%;
    padding: 20px;
  }
    .catalog-lvl-3__item > * {
    display: block;
  }
    .catalog-lvl-3__text {
    font-size: 12px;
  }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .catalog-lvl-3__count {
    width: 130px;
    padding: 0;
  }
    .catalog-lvl-3__text {
    font-size: 13px;
  }
}

.catalog-lvl-4 .lazy-image-container {
  padding: 6px;
}

.catalog-lvl-4 .lazy-image-container.show{
  display: block!important;
}

.catalog-lvl-4--ml {
  margin-left: -20px;
}

@media (max-width: 960px) {

  .catalog-lvl-4--ml {
    margin-left: 0;
  }
}

.catalog-lvl-4__item {
  border: 1px solid #e3e3e3;
  display: table;
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.catalog-lvl-4__item > * {
  display: table-cell;
  vertical-align: middle;
}

.catalog-lvl-4__item:not(:last-child) {
  margin-bottom: 9px;
}

.catalog-lvl-4__title {
  margin-bottom: 5px;
}

.catalog-lvl-4__title a {
  font-size: 15px;
  line-height: 21px;
  color: #404040;
}

.catalog-lvl-4__desc {
  padding: 10px 0;
  padding-right: 20px;
  width: 420px;
}

.owl-carousel .catalog-lvl-4__desc {
  padding: 20px 0;
  padding-right: 30px;
}

.catalog-lvl-4__art {
  color: #cacaca;
}

.catalog-lvl-4__image {
  width: 175px;
  min-width: 135px;
  height: 145px;
}

.catalog-lvl-4__image .lazy-background {
  background-position: center !important;
  background-repeat: no-repeat;
  margin: 0px auto !important;
  display:block;
  background-size: contain;
}

.catalog-lvl-4__image a {
  display: block;
  height: 100%;
  max-height: 145px;
}

.catalog-lvl-4__prices {
  font-size: 23px;
  width: 11%;
  white-space: nowrap;
}

.owl-carousel .catalog-lvl-4__prices {
  width: 100%;
  margin-top: 10px;
}

.catalog-lvl-4__prices .old-price {
  font-size: 16px;
}

.catalog-lvl-4__buttons {
  width: 185px;
  text-align: center;
}

.catalog-lvl-4__buttons .btn {
  width: 123px;
  height: 33px;
  line-height: 1;
  padding-top: 8px;
  padding-bottom: 9px;
}

@media (max-width: 1100px) and (min-width: 960px) {

  .catalog-lvl-4__buttons .btn {
    width: auto;
  }

  .catalog-lvl-4__buttons .btn span {
    display: none;
  }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .catalog-lvl-4__title a {
    font-size: 13px;
  }
}

@media (max-width: 960px) {
    .catalog-lvl-4__image {
    width: 100%;
    height: 155px;
    min-width: 0;
  }
    .catalog-lvl-4__image .lazy-background {
    background-position: left;
  }
    .catalog-lvl-4__desc {
    padding: 0;
    width: 100%;
  }
    .catalog-lvl-4__prices {
    width: 50%;
    max-height: 33px;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    margin: 0;
  }
    .catalog-lvl-4__prices .old-price {
    -ms-flex-order: 1;
        order: 1;
  }
    .catalog-lvl-4__count {
    padding: 10px 0;
    width: 100%;
  }
    .catalog-lvl-4__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    padding: 20px;
    margin: 0 -15px;
    border-right: 0;
    border-left: 0;
  }
    .catalog-lvl-4__item > * {
    display: block;
  }
    .catalog-lvl-4__item:not(:last-child) {
    margin-bottom: -1px;
  }
    .owl-item .catalog-lvl-4__item {
    margin-left: 0;
    margin-right: 0;
  }
    .catalog-lvl-4__text {
    font-size: 12px;
  }
    .catalog-lvl-4__buttons {
    width: 50%;
    text-align: right;
  }
}

.catalog-preview-list {
    font-size: 0;
}

.catalog-preview-list__item {
  display: inline-block;
  width: 25%;
  margin-bottom: 25px;
  padding-right: 20px;
}

.catalog-preview-list__item a {
  font-size: 12px;
}

@media (max-width: 960px) {
    .catalog-preview-list__item {
    width: 50%;
  }
}

.page-heading {
    position: relative;
}
.catalog-tabs {
    display: block;
    position: absolute;
    right: 10px;
    top: 5px;
    z-index: 10;
}
@media (max-width: 960px) {

  .catalog-tabs {
    top: 0;
  }
}
.catalog-tabs span {
  display: inline-block;
  vertical-align: middle;
  color: #224877;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
  margin-left: 10px;
}
.catalog-tabs span:hover {
  opacity: 1;
}
.catalog-tabs span.active {
  opacity: 1;
  cursor: default;
}
.swiper-slide .catalog-lvl-4__image {
    height: 105px;
}
@media (max-width: 960px) {

  .swiper-slide .catalog-lvl-4__image {
    height: 155px;
  }
}

.catalog-lvl-4__prices > div:not(.old-price), .tile-product__prices  > div:not(.old-price) {
    color: #0093C7;
}

.catalog-lvl-4__prices > div > span, .tile-product__prices  > div > span {
    font-weight: bold;
}
.catalog-lvl-4__buttons .compareUrl:before {
    content: no-close-quote;
    background: url(/local/templates/santeam_base/images/comp.png) no-repeat;
    width: 17px;
    height: 15px;
    display: inline-block;
}
.compareBox {
    right: 22px;
    position: absolute;
    bottom: 5px;
}

.compareBox-row { margin-top: 12px;}
.catalog-filter {
    background: #f2f2f2;
}
.catalog-filter__item {
  padding: 13px 15px;
}
.catalog-filter__item.active .catalog-filter__heading-btn .i-icon {
  transform: scale(1,-1);
}
.catalog-filter__item:not(:last-child) {
  border-bottom: 1px dashed #224877;
}
.catalog-filter__item--prices input[type=text] {
  max-width: 75px;
  display: inline-block;
  vertical-align: middle;
}
.catalog-filter__swimming-btn {
  position: absolute;
  width: 120px;
  height: 30px;
  right: -120px;
  top: -6px;
  background-color: #d22233;
  text-align: center;
  box-shadow: 0 10px 12px -9px rgba(0,0,0,.48);
  border-radius: 5px;
}
.catalog-filter__swimming-btn::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-right: 17px solid #d22233;
  border-bottom: 16px solid transparent;
  left: -14px;
  top: 0px;
  border-radius: 5px;
}
.catalog-filter__swimming-btn-link {
  color: #ffffff;
  text-decoration: none;
  line-height: 30px;
}
.catalog-filter__swimming-btn-link:hover {
  text-decoration: underline;
}
.catalog-filter__heading {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #404040;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  cursor: pointer;
}
.catalog-filter__heading-btn .i-icon {
  width: 11px;
  height: 11px;
  transition: .2s;
}
.catalog-filter__search-btn {
  width: 175px !important;
  margin: auto;
  margin-top: 35px;
  display: block;
  height: 43px;
  text-align: center;
  font-size: 15px;
  color: #404040;
}
.catalog-filter__reset-btn {
  font-size: 13px;
  margin-top: 10px;
  display: inline-block;
}
.catalog-filter__filters {
  padding-top: 10px;
  position: relative;
}
.catalog-filter__filters .input-block--new label::after {
  background: #7fad36;
}
.catalog-filter__filters .input-block--action label::after {
  background: #d22233;
}
.catalog-filter__filters .input-block--new label::after, .catalog-filter__filters .input-block--action label::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  margin-left: 5px;
}

@media (min-width: 961px) {
    .catalog-filter {
        display: block !important;
    }
}

.catalog-filter-opener {
  display: none;
  line-height: 22px;
  cursor: pointer;
  border-bottom: 1px dashed;
  width: 90px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.catalog-filter-opener svg{
  margin-left: 5px;
}

@media (max-width: 960px) {
    .catalog-filter-opener.active {
    display: block;
  }
}
.catalog-sort {
    font-size: 13px;
    color: #404040;
    padding-bottom: 20px;
}
.catalog-sort__item.view_sort{
  margin-left: 0;
  margin-right: 0;
  line-height: 25px;
}
@media(max-width: 480px){

  .catalog-sort__item.view_sort {
    display: none;
  }
}
.catalog-sort__item.view_sort .view_col{
  width: 25px;
  height: 25px;
  background: url(/local/templates/santeam_base/images/view.png) no-repeat top right;
  display: inline-block;
  margin-right: 7px;
  margin-left: 7px;
}
.catalog-sort__item.view_sort .view_col:hover{
  background: url(/local/templates/santeam_base/images/view.png) no-repeat bottom right;
}
.catalog-sort__item.view_sort .view_col.active{
  background: url(/local/templates/santeam_base/images/view.png) no-repeat bottom right;
}
.catalog-sort__item.view_sort .view_row{
  width: 25px;
  height: 25px;
  display: inline-block;
  background: url(/local/templates/santeam_base/images/view.png) no-repeat top left;
}
.catalog-sort__item.view_sort .view_row:hover{
  background: url(/local/templates/santeam_base/images/view.png) no-repeat bottom left;
}
.catalog-sort__item.view_sort .view_row.active{
  background: url(/local/templates/santeam_base/images/view.png) no-repeat bottom left;
}
@media (max-width: 960px) {

  .catalog-sort__item {
    line-height: 22px;
  }
}
.catalog-sort__item select {
  background: transparent;
  border: 0;
}
@media(max-width: 960px) {

  .view_row .catalog-lvl-4__item {
    padding-bottom: 50px;
  }
}
@media(max-width: 960px) {

  .view_row .catalog-lvl-4__item .catalog-lvl-4__buy_one {
    margin-top: -20px !important;
  }
}
.view_row .compareBox {
  display: none;
}
.view_col .catalog-lvl-4{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  width: calc(100% + 20px);
  height: auto;
}
.view_col .catalog-lvl-4__item{
  display: block;
  width: calc(33.33333333% - 20px);
  float: left;
  margin: 0 10px 20px !important;
}
.view_col .catalog-lvl-4__title a{
  height: 40px;
  overflow: hidden;
  display: block;
}
.view_col .catalog-lvl-4__image{
  width: 100%;
  display: block;
  text-align: center;
}
.view_col .catalog-lvl-4__desc{
  width: 100%;
  display: block;
  padding: 0 20px 20px;
}
.view_col .catalog-lvl-4__count{
  display: block;
  width: 100%;
  padding: 0 20px 10px;
  height: 50px;
}
.view_col .catalog-lvl-4__prices{
  padding-left: 20px;
  padding-bottom: 20px;
  float: left;
  width: 50%;
  margin-top: -21px;
  max-height: 33px;
}
.view_col .catalog-lvl-4__buttons{
  width: -moz-fit-content !important;
  width: -webkit-fit-content !important;
  display: block;
  float: right;
  width: 50%;
  padding-right: 20px;
  padding-bottom: 32px;
}
.view_col .catalog-lvl-4 .compareBox {
  bottom: 50px;
}
.view_col .catalog-lvl-4 .buyoneclick {
  left: 22px;
  position: absolute;
  bottom: 50px;
}
.view_col .catalog-lvl-4 .compareBox-row {
  display: none;
}
.view_col .catalog-lvl-4 .catalog-lvl-4__buy_one {
  margin-top: 80px !important;
  margin-left: 20px;
  display: block;
  padding-top: 7px;
}
.view_col .cart-item__count{
  width: -moz-fit-content;
  width: -webkit-fit-content;
  float: right;
  height: 50px;
}


/*Products*/

.product-characteristics {
    padding: 20px;
    padding-left: 30px;
    padding-right: 25px;
}

.product-characteristics__heading {
  font-size: 16px;
  color: #bcbcbc;
}

@media (max-width: 960px) {
    .product-characteristics {
        position: relative;
        padding: 25px 0;
        padding-top: 70px;
    }
}

.product-min-sum {
    color: #d22233;
    font-size: 13px;
}

@media (max-width: 960px) {
    .product-min-sum {
        position: absolute;
        top: 12px;
        left: 30px;
        right: 30px;
        text-align: center;
    }
}
.product-characteristics-table {
    margin-left: -30px;
    margin-right: -25px;
    margin-top: 20px;
    font-size: 13px;
    color: #404040;
}

@media (max-width: 960px) {
    .product-characteristics-table {
        margin-left: -15px;
        margin-right: -15px;
        font-size: 12px;
    }
}

.product-characteristics-show-all {
    color: white;
    font-size: 13px;
    background: #224877;
    padding: 8px 28px;
    padding-right: 70px;
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.product-characteristics-show-all__count {
  color: #86addf;
}

.product-characteristics-show-all.opened::after {
  transform: scale(-1);
}

.product-characteristics-show-all::after {
  content: '';
  position: absolute;
  right: 0px;
  width: 50px;
  top: 0;
  bottom: 0;
  background: url(/local/templates/santeam_base/icons/arrow-down.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: .2s;
}

@media (max-width: 960px) {
    .product-characteristics-show-all {
        background: transparent;
        color: #d22233;
        padding-left: 0;
        padding-right: 35px;
    }
    .product-characteristics-show-all::after {
    background-image: url(/local/templates/santeam_base/icons/arrow-down.svg);
    width: 15px;
  }
}


.product-description {

}
.product-labels {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
.product-labels__item {
  width: 80px;
  height: 25px;
  line-height: 25px;
  background: #f6f6f6;
  font-size: 12px;
  padding: 0 5px;
}
.product-labels__item:not(:last-child) {
  margin-bottom: 5px;
}
.product-labels__item > * {
  vertical-align: middle;
}
.product-labels__item::before {
  content: '';
  display: inline-block;
  background-size: 10px;
  vertical-align: middle;
  height: 100%;
  margin-right: 2px;
  width: 15px;
  background-position: center;
  background-repeat: no-repeat;
}
.product-labels__item--new {
  color: #7fad36;
}
.product-labels__item--new::before {
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22%D0%A1%D0%BB%D0%BE%D0%B9_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20135%20200%22%20width%3D%2210%22%20height%3D%2210%22%20style%3D%22fill%3A%237fad36%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cg%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M67.5%2C1C30.8%2C1%2C1%2C30.8%2C1%2C67.5c0%2C22%2C10.8%2C42.4%2C28.9%2C54.8v45.3c0%2C8.6%2C7%2C15.6%2C15.6%2C15.6h0.2c1.8%2C8.9%2C10.9%2C15.8%2C21.8%2C15.8c10.9%2C0%2C20-6.8%2C21.8-15.8h0.2c8.6%2C0%2C15.6-7%2C15.6-15.6v-45.3c18.2-12.4%2C28.9-32.8%2C28.9-54.8C134%2C30.8%2C104.2%2C1%2C67.5%2C1z%20M38.2%2C150.2h58.6v7.4H38.2V150.2z%20M96.8%2C141.9H38.2v-7.4h58.6V141.9z%20M89.5%2C175h-8.7l0.4%2C4.5l0.1%2C0.6c0%2C5.9-6.2%2C10.7-13.9%2C10.7c-7.6%2C0-13.9-4.8-13.9-10.6l0.5-5.2h-8.7c-4%2C0-7.3-3.3-7.3-7.3v-1.8h58.6v1.8C96.8%2C171.7%2C93.6%2C175%2C89.5%2C175z%20M98.7%2C116.6l-1.9%2C1.2v8.4H38.2v-8.4l-1.9-1.2c-16.9-10.8-27-29.1-27-49.1c0-32.1%2C26.1-58.3%2C58.3-58.3c32.1%2C0%2C58.3%2C26.1%2C58.3%2C58.3C125.8%2C87.5%2C115.7%2C105.9%2C98.7%2C116.6z%22%2F%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M103.3%2C44.8c-7-10.9-20.3-23.2-44.2-19.7c-2.3%2C0.3-3.8%2C2.4-3.5%2C4.7c0.3%2C2.3%2C2.4%2C3.8%2C4.7%2C3.5c37.4-5.4%2C43.9%2C35%2C44.1%2C36.8c0.3%2C2%2C2.1%2C3.5%2C4.1%2C3.5c0.2%2C0%2C0.4%2C0%2C0.6%2C0c2.3-0.3%2C3.8-2.4%2C3.5-4.7C112.5%2C68.3%2C110.7%2C56.3%2C103.3%2C44.8z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.product-labels__item--action {
  color: #d22233;
}
.product-labels__item--action::before {
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22%D0%A1%D0%BB%D0%BE%D0%B9_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20200%20175.6%22%20width%3D%2210%22%20height%3D%2210%22%20style%3D%22fill%3A%23d22233%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20class%3D%22st0%22%20d%3D%22M158.1%2C1H41.9L1%2C62.4l99%2C112.2l99-112.2L158.1%2C1z%20M122.3%2C68L100%2C143.8L77.7%2C68H122.3z%20M79.9%2C55.8L100%2C19.6l20.1%2C36.2H79.9z%20M110.3%2C13.2h35.1l-15.6%2C35.1L110.3%2C13.2z%20M70.2%2C48.3L54.6%2C13.2h35.1L70.2%2C48.3z%20M60.2%2C55.8H20l24.1-36.1L60.2%2C55.8z%20M65%2C68l21.4%2C72.8L22.2%2C68H65z%20M135%2C68h42.8l-64.3%2C72.8L135%2C68z%20M139.8%2C55.8l16.1-36.1L180%2C55.8H139.8z%22%2F%3E%3C%2Fsvg%3E");
  background-size: 13px;
}
.product-labels__item--hit {
  color: #d3ab2d;
}
.product-labels__item--hit::before {
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%22-282%20374%2046%2046%22%20width%3D%2210%22%20height%3D%2210%22%20style%3D%22fill%3A%23000000%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E.st100%7Bfill%3Anone%3Bstroke%3A%23d3ab2d%3Bstroke-width%3A3%3B%7D.st1%7Bfill%3A%23d3ab2d%3Bstroke%3A%23d3ab2d%3Bstroke-width%3A2%3B%7D.st2%7Bfill%3A%23d3ab2d%3B%7D%3C%2Fstyle%3E%3Cg%3E%3Cpath%20class%3D%22st100%22%20d%3D%22M-280.5%2C392.3c0-4%2C18.3-16.8%2C22-16.8c3.7%2C0%2C15.6%2C10%2C20.2%2C15c3.6%2C3.9-5.9%2C25.2-8.3%2C26.2c-5.6%2C2.4-19.7%2C2.5-25.7%2C0C-274.7%2C415.6-280.5%2C395.8-280.5%2C392.3z%22%2F%3E%3Cpath%20class%3D%22st1%22%20d%3D%22M-271.5%2C392.3c0%2C0%2C8.4%2C1.4%2C11.8%2C1.4c3.5%2C0%2C9.7-1%2C11.2-1.4c1.4-0.4-10.5%2C5-10.5%2C6.3s8.2%2C10.3%2C7.9%2C10.5c-0.3%2C0.2-2.7-1.7-3.3-2.1c-2.8-1.9-5.3-4.3-5.3-4.2s-4.5%2C3.4-4.7%2C3.7c-0.4%2C0.4-3.5%2C2.9-3.8%2C2.6c-0.4-0.3%2C7.9-9.1%2C7.9-10.5C-260.3%2C397.3-271.3%2C393.2-271.5%2C392.3z%22%2F%3E%3Ccircle%20class%3D%22st2%22%20cx%3D%22-264%22%20cy%3D%22387.7%22%20r%3D%222.1%22%2F%3E%3Ccircle%20class%3D%22st2%22%20cx%3D%22-259%22%20cy%3D%22385.7%22%20r%3D%222.2%22%2F%3E%3Ccircle%20class%3D%22st2%22%20cx%3D%22-254%22%20cy%3D%22387.7%22%20r%3D%222.1%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: 13px;
}
.tile-product {
    position: relative;
    border: 1px solid rgb(228, 228, 228);
    padding: 20px 15px;
    color: #404040;
}
.tile-product__image {
  height: 140px;
}
.tile-product__image .lazy-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -o-object-fit: contain;
     object-fit: contain;
  height: calc(100% - 10px);
  margin: 5px;
}
.tile-product__name a {
  display: inline-block;
  width: 212px;
  height: 50px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
.tile-product__name a:hover {
  text-decoration: underline;
}
.tile-product__bottom {
  margin-top: 20px;
}
.tile-product__art {
  color: #b5b2b2;
  font-size: 12px;
  margin-top: 5px;
}
.tile-product__prices {
  font-size: 19px;
}
.tile-product__prices .old-price {
  position: absolute;
}
.tile-product__buttons {
  width: 115px;
}
.tile-product__buttons .btn {
  white-space: nowrap;
}


/*Detail*/

.detail-product .sided-holder {
  margin-bottom: 75px;
}

.detail-product .sided-holder__left {
  width: 280px;
}

@media (max-width: 960px) {
    .detail-product .sided-holder {
    margin-bottom: 25px;
  }
    .detail-product .sided-holder__left {
    width: 100%;
  }
}

.detail-product-buy {
    display: table;
    width: 100%;
    padding: 20px;
    padding-left: 30px;
    padding-right: 25px;
    border: 1px solid #e3e3e3;
}

.detail-product-buy > * {
  display: table-cell;
  vertical-align: middle;
}

.detail-product-buy__prices {
  font-size: 13px;
  color: #224877;
}

.detail-product-buy__prices > *:not(:last-child) {
  margin-bottom: 10px;
}

.detail-product-buy__prices {
  font-size: 13px;
  color: #224877;
}

.detail-product-buy__prices > *:not(:last-child) {
  margin-bottom: 10px;
}

.detail-product-buy__compare > a {
  text-decoration: none;
  color: #2992c4;
  border-bottom: 1px dashed #2992c4;
}

.detail-product-buy__compare > a:before {
  content: no-close-quote;
  background: url(/local/templates/santeam_base/images/comp.png) no-repeat;
  width: 17px;
  height: 15px;
  display: inline-block;
}

.detail-product-buy__sale {
  font-size: 18px;
  color: #404040;
}

.detail-product-buy__buttons {
  text-align: right;
}

.detail-product-buy__buttons .btn {
  width: 183px;
  height: 31px;
  text-align: center;
  padding: 0;
  line-height: 29px;
  transition: .2s;
  border: 1px solid rgb(209, 209, 209);
  box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.09);
}

.detail-product-buy__buttons .btn .i-icon {
  fill: white;
}

.detail-product-buy__buttons .btn:hover {
  background: #224877;
}

@media (max-width: 960px) {
    .detail-product-buy {
        display: block;
        padding: 20px 15px;
    }
    .detail-product-buy > * {
    display: block;
  }
    .detail-product-buy__prices {
    margin-bottom: 20px;
  }
    .detail-product-buy__buttons {
    margin-top: 20px;
  }
    .detail-product-buy__buttons .btn {
    width: 100%;
    height: 50px;
    line-height: 47px;
  }
    .detail-product-buy__buttons .btn .i-icon {
    margin-right: 15px;
  }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .detail-product-buy {
        position: relative;
        padding-bottom: 60px;
    }
    .detail-product-buy__buttons {
    text-align: right;
    position: absolute;
    right: 24px;
    top: 80px;
  }
}
.detail-product-count {
    font-size: 18px;
    color: #224877;
}
.detail-product-count > * {
  display: inline-block;
  vertical-align: middle;
}
.detail-product-count__btn, .detail-product-count__input {
  height: 47px;
  width: 47px;
  padding: 0;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #e3e3e3;
}
.detail-product-count__btn {
  position: relative;
  background: #f6f6f6;
  cursor: pointer;
}
.detail-product-count__btn:hover::before, .detail-product-count__btn:hover::after {
  background: #d22233;
}
.detail-product-count__btn--minus::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: #224877;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.detail-product-count__btn--plus::before, .detail-product-count__btn--plus::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 1px;
  background: #224877;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.detail-product-count__btn--plus::after {
  transform: rotate(90deg);
  transform-origin: center;
}
@media (min-width: 961px) and (max-width: 1170px) {
    .detail-product-count {
        text-align: right;
    }
}
.related-products {
    margin-top: 60px;
}
.detail-product-data {
    width: 183px;
    text-align: center;
    float: right;
}
.detail-product-data .detail-product-buy__buttons .btn {
    display:block;margin:0 auto;
}

.detail-product-heading-container.container h1 {
  max-width: 100%;
}

.detail-product-buy__declaration-data:before{
  position: relative;
  display: block;
  content: '';
  width: 30px;
  height: 30px;
  float: left;
  margin-right: 7px;
}

.detail-product-buy__declaration-data.delivery:before{
  background: url(/local/templates/santeam_base/images/delivery_icon.png) no-repeat left center / contain;
}

.detail-product-buy__declaration-data.warranty:before{
  background: url(/local/templates/santeam_base/images/warranty_icon.png) no-repeat left center / contain;
}

.detail-product-buy__declaration-data.card:before{
  background: url(/local/templates/santeam_base/images/card_icon.png) no-repeat left center / contain;
}

.detail-product__custom #reviews {
  padding: 0 30px;
}

.detail-product__custom .nav-tabs--detail li a{
  padding: 18px 30px;
}

.detail-product__custom .product-characteristics-table {
  margin: 20px 0;
}

.detail-product__custom .reviewsTitle {
  font-size: 17px;
  color: #0190d6;
}

.detail-product__custom .reviewsItem {
  margin-bottom: 25px;
}

.detail-product__custom .reviewsItem > div {
  border: 1px solid #cccccc;
  padding: 25px;
}

.detail-product__custom .product-characteristics-table table td {
  padding: 10px 30px;
}

.detail-product__custom .detail-product-count{
  width: -moz-fit-content;
  width: -webkit-fit-content;
  height: 40px;
  margin: 75px auto 0;
}

.detail-product__custom .detail-product-count__btn{
  width: 35px;
  height: 35px;
}

.detail-product__custom .detail-product-count__input{
  width: 35px;
  height: 35px;
}

.detail-product__custom .detail-product__left-info{
  width: 50%;
  float: left;
}

.detail-product__custom .detail-product__right-info{
  width: 50%;
  float: right;
}

.detail-product__custom .detail-product-buy__article{
  font-size: 18px;
  margin-bottom: 7px;
}

.detail-product__custom .detail-product-buy__stock{
  font-size: 16px;
  margin-bottom: 15px;
}

.detail-product__custom .detail-product-buy__declaration{
  max-width: 350px;
  border-bottom: 1px solid #cccccc;
  margin-top: 55px;
}

.detail-product__custom .detail-product-buy__prices{
  text-align: right;
}

.detail-product__custom .detail-product-buy__prices > span{
  font-size: 33px;
  font-weight:bold;
}

.detail-product__custom .detail-product-buy__min{
  text-align: center;
  margin-bottom: 25px;
  color: #d22233;
}

.detail-product__custom .detail-product-buy__declaration-data{
  line-height:30px;
  padding: 10px;
  border-top: 1px solid #cccccc;
}

.detail-product__custom .detail-product-buy__declaration-data p{
  margin: 0;
}

.detail-product__custom .detail-product-buy__declaration-data span{
  float: right;
}

.detail-product__custom .detail-product-buy__declaration-data a {
  text-decoration:none;
  color:#0190d6;
}

.detail-product__custom .detail-product-buy__declaration-data a:hover {
  text-decoration:underline;
}

/*Lk*/

.lk-start {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-right: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
}

.lk-start > * {
  display: table-cell;
  vertical-align: top;
}

.lk-start .wide-input {
  width: 540px;
}

.lk-start__adress-save-btn {
  padding: 7px;
  padding-left: 0;
  text-decoration: none;
}

.lk-start__adress-save-btn .i-icon {
  width: 14px;
  height: 14px;
}

.lk-start__adress-save  {
  width: 180px;
  display: inline-block;
}

.lk-start__delete-btn {
  display: inline-block;
  cursor: pointer;
  padding: 7px;
  padding-left: 0;
}

.lk-start__delete-btn .i-icon {
  width: 14px;
  height: 14px;
}

.lk-start__item {
  padding: 25px 45px;
  font-size: 12px;
}

.lk-start__item:not(:last-child) {
  border-bottom: 2px solid #d1d1d1;
}

.lk-start__item dd {
  position: relative;
  word-break: break-word;
  width: 100%;
}

@media (max-width: 1024px) {

  .lk-start__item dd {
    width: 49%;
  }
}

.lk-start__item dd .requisites_block {
  margin-bottom: 5px;
}

.lk-start__item dt {/*height: 30px;*/
}

.lk-start__item dt span {
  line-height: 30px;
}

.lk-start__item-destination-list-item-input--select {
  padding-left: 8px;
  border-radius: 2px;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2211%22%20height%3D%227%22%20viewBox%3D%220%200%2011%207%22%20style%3D%22fill%3A%23224877%3B%22%3E%20%3Cdefs%3E%20%3C%2Fdefs%3E%20%3Cpath%20d%3D%22M10.840%2C0.938%20C10.840%2C0.938%205.881%2C6.804%205.881%2C6.804%20C5.770%2C6.935%205.619%2C6.976%205.476%2C6.946%20C5.333%2C6.976%205.182%2C6.935%205.071%2C6.804%20C5.071%2C6.804%200.112%2C0.938%200.112%2C0.938%20C-0.071%2C0.722%20-0.072%2C0.370%200.108%2C0.151%20C0.289%2C-0.067%200.583%2C-0.069%200.766%2C0.147%20C0.766%2C0.147%205.476%2C5.718%205.476%2C5.718%20C5.476%2C5.718%2010.186%2C0.147%2010.186%2C0.147%20C10.369%2C-0.069%2010.663%2C-0.067%2010.844%2C0.151%20C11.024%2C0.370%2011.023%2C0.722%2010.840%2C0.938%20Z%22%20id%3D%22path-1%22%20class%3D%22cls-2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  cursor: pointer;
  line-height: 1em;/* for FF */
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';/* for IE */
  -ms-appearance: none;
  -webkit-appearance: none!important;
     -moz-appearance: none!important;
          appearance: none!important;
}

.lk-start__item-destination-list-item-input--select::-ms-expand {
  display: none;
}

.lk-start__item-destination {
  margin-bottom: 10px;
}

.lk-start__item-destination-list {
  list-style: none;
  padding-left: 0;
}

.lk-start__item-destination-list-item {
  position: relative;
  margin-bottom: 5px;
}

.lk-start__item-destination-list-item-btn {
  width: 185px !important;
  margin-right: 10px;
  text-align: center;
  padding: 11px 25px;
}

@media (max-width: 1280px) {

  .lk-start__item-destination-list-item-btn {
    margin-bottom: 10px;
  }
}

@media (max-width: 620px) {

  .lk-start__item-destination-list-item-btn {
    margin-bottom: 10px;
  }/*display: block;*/
}

.lk-start__item-destination-list-item-cover {
  position: absolute;
  width: 175px;/*height: 40px;*/
  left: 0;
  top: 0;/*bottom: 0;*/
  margin: auto;
}

@media (max-width: 1280px) {

  .lk-start__item-destination-list-item-cover {
    width: 100%;
  }
}

.lk-start__item-destination-list-item-input {/*height: 40px;
                                 margin-bottom: 10px;*/
  margin-right: 10px;
  padding-left: 0;
  border: 1px solid transparent;
}

.lk-start__item-destination-list-item-input::-webkit-input-placeholder {
  color:#404040;
}

.lk-start__item-destination-list-item-input::-moz-placeholder          {
  color:#404040;
}

.lk-start__item-destination-list-item-input:-moz-placeholder           {
  color:#404040;
}

.lk-start__item-destination-list-item-input:-ms-input-placeholder      {
  color:#404040;
}

@media (max-width: 1280px) {

  .lk-start__item-destination-list-item-input {
    width: 100%;
  }
}

.lk-start__item-destination-list-item-input.error {
  border: 1px solid #d22233 !important;
}

.lk-start__item-title {
  display: inline-block;
  width: 175px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: middle;
}

.lk-start__item-content-wrapper dl {
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

@media(max-width: 640px) {

  .lk-start__item-content-wrapper dl {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}

@media(max-width: 640px) {

  .lk-start__item-content-wrapper dl dt, .lk-start__item-content-wrapper dl dd {
    width: 100%;
  }
}

.lk-start__heading {
  margin-bottom: 15px;
}

.lk-start__heading h5 {
  font-weight: bold;
}

.lk-start__add {
  margin-top: 15px;
}

.lk-start__add .btn {
  font-size: 12px;
  height: 40px;
  margin-right: 15px;
  text-align: center;
  width: 180px;
  cursor: pointer;
}

.lk-start__add--save {
  margin-top: 10px;
  margin-bottom: 0;
}

.lk-start__left {

    }

.lk-start__right {
  width: 465px;
  padding-left: 45px;
}

.lk-start__note {
  font-size: 16px;
  padding: 25px 45px;
  color: #9c9c9c;
  border-top: 1px solid #DFDFDF;
}

.lk-start__note a {
  color: #d22233;
}

@media (max-width: 1200px) {
    .lk-start__delete-btn .i-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
    .lk-start__item-adress {
    padding-right: 20px;
  }
    .lk-start__adress-save-btn .i-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: -16px;
    margin: auto;
  }
    .lk-start__add--save {
    margin-top: 0;
  }
    .lk-start__adress-save-btn {
    padding: 0;
  }
    }

@media (max-width: 1024px) {
    .lk-start__item-adress-wrap {
    padding-right: 0;
  }
}



@media (max-width: 960px) {
    .lk-start {
        display: block;
        border: 0;
    }
    .lk-start > * {
    display: block;
    width: 100%;
  }
    .lk-start__right {
    padding: 0;
  }
    .lk-start__item {
    padding: 15px 0;
    border-bottom: 0 !important;
  }
    .lk-start__note {
    font-size: 14px;
    line-height: 24px;
    padding: 25px 0;
    border: 0;
  }
    .lk-start__add {
    margin: 20px 0;
  }
}

.lk-start-managers {
    background: #f8f8f8;
    padding: 45px;
    position: relative;
}

.lk-start-managers__item:not(:last-child) {
  margin-bottom: 32px;
}

.lk-start-managers__heading {
  color: #224877;
  margin-bottom: 20px;
}

.lk-start-managers__dl {
  margin: 10px 0;
}

.lk-start-managers__dl dl {
  font-size: 14px;
}

.lk-start-managers__dl dt {
  max-width: 40%;
  color: #838384;
  line-height: 1.5;
}

.lk-start-managers__dl dd {
  color: #222222;
  line-height: 1.5;
}

.lk-start-managers__dl dd a {
  color: #222222;
  text-decoration: none;
  border-bottom: 1px solid #222222;
}

.lk-start-managers__name {
  color: black;
  margin-bottom: 20px;
}

.lk-start-managers__type {
  color: #838384;
  margin-bottom: 10px;
}

.lk-start-managers__btn {
  padding: 12px 35px;
  background: #D22233;
  border-radius: 4px;
  font-size: 14px;
  color: white;
  text-decoration: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  cursor: pointer;
  transition: .2s;
}

.lk-start-managers__btn:hover {
  background: #224877;
}

@media (max-width: 960px) {
    .lk-start-managers {
        margin-top: 0;
        margin-left: -15px;
        margin-right: -15px;
        padding: 25px;
    }
    .lk-start-managers__dl dl {
    font-size: 13px;
  }
    .lk-start-managers__heading {
    margin-bottom: 40px;
  }
    .lk-start-managers__heading > * {
    font-weight: 400;
    font-size: 18px;
  }
    .lk-start-managers__type {
    color: #4f688b;
  }
    .lk-start-managers__name {
    margin-bottom: 35px;
  }
    .lk-start-managers__name > * {
    font-weight: 400;
    font-size: 17px;
  }
    .lk-start-managers__btn {
    width: 100%;
  }
}


.lk-personal {
    border-right: 1px solid #dfdfdf;
    border-left: 1px solid #dfdfdf;
    border-bottom: 1px solid #dfdfdf;
    padding: 40px 45px;
}


.lk-personal__city-adress {
  position: relative;
  margin-bottom: 20px !important;
}


.lk-personal__input-adress-block {
  max-width: none !important;
}


.lk-personal__input-adress-block input {
  width: 540px;
  margin-right: 10px;
}


.lk-personal__item:not(:last-child) {
  margin-bottom: 40px;
}


.lk-personal__item--subscribe {
  border-top: 1px solid #d1d1d1;
  padding-top: 35px;
}


.lk-personal__item--subscribe > * {
  display: inline-block;
}


.lk-personal__item--subscribe label {
  color: black;
}


.lk-personal__item--subscribe label span {
  font-size: 16px !important;
}


.lk-personal__item--subscribe label:before {
  margin-right: 25px;
}


.lk-personal__item--subscribe .btn {
  font-size: 12px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: 35px;
}


.lk-personal__buttons {
  margin: 45px 0;
}


.lk-personal__buttons .btn {
  font-size: 12px;
  padding-left: 30px;
  padding-right: 30px;
}


.lk-personal__buttons .btn:not(:last-child) {
  margin-right: 45px;
}


.lk-personal__buttons .input-file input {
  display: none;
}


.lk-personal__inputs .input-block {
  max-width: 415px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}


.lk-personal__inputs .input-block input {/*height: 42px;*/
}


.lk-personal__inputs .input-block label {
  display: block;
  margin: 10px 0;
  color: black;
}


.lk-personal__heading {
  font-size: 16px;
  color: black;
  font-weight: bold;
}


.lk-personal--success {
  max-width: 576px;
  background: #E1F4E4;
  padding: 15px;
  color: #00A314;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 20px;
}


.lk-personal--success img {
  margin-right: 10px;
}


.lk-personal--employee ~ .lk-start__note {
  border-top: none;
  margin-top: 50px;
}


.lk-personal #error_block{
  color: #d22233;
}


.lk-personal .add-employee {
  margin-bottom: 48px;
}


.lk-personal .add-employee__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 0;
}


.lk-personal .add-employee__label {
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
}


.lk-personal .add-employee__input {
  width: 281px;
  padding: 13px 15px;
  border: 1px solid #DBDBDB;
  border-radius: 2px;
  margin-bottom: 12px;
  height: 40px;
}


.lk-personal .add-employee__input::-moz-placeholder {
  color: #DBDBDB;
}


.lk-personal .add-employee__input:-ms-input-placeholder {
  color: #DBDBDB;
}


.lk-personal .add-employee__input::placeholder {
  color: #DBDBDB;
}


.lk-personal .add-employee__title {
  font-size: 16px;
  color: #404040;
  margin-bottom: 18px;
  font-weight: 700;
}


.lk-personal .add-employee__btn {
  padding: 12px 35px;
  font-size: 14px;
  color: black;
  background: #EBEBEB;
  border-radius: 4px;
  text-decoration: none;
  height: 40px;
  border: none;
  display: -ms-inline-flexbox;
  display: inline-flex;
}


.lk-personal .add-employee__info {
  margin-bottom: 25px;
}


.lk-personal .add-employee__info .error {
  font-size: 14px;
  color: #A94442;
  line-height: 1.3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  border: none;
}


.lk-personal .add-employee__info .error img {
  margin-right: 8px;
}


.lk-personal .add-employee__info .success {
  font-size: 14px;
  color: #00A314;
  line-height: 1.3;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
}


.lk-personal .add-employee__info .success img {
  margin-right: 8px;
}


.lk-personal .add-employee__form {
  display: none;
}


.lk-personal .add-employee__form.active {
  display: block;
}


.lk-personal .employee-list__title {
  font-size: 16px;
  margin-bottom: 18px;
  color: #404040;
  font-weight: 700;
}


.lk-personal .employee-list__table {
  font-size: 14px;
  color: #404040;
}


.lk-personal .employee-list__head {
  background: #F8F8F8;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 18px 20px;
}


.lk-personal .employee-list__head .employee-list__col--name {
  margin-bottom: 0;
}


@media (max-width: 991px) {

  .lk-personal .employee-list__head .employee-list__col--mail, .lk-personal .employee-list__head .employee-list__col--phone, .lk-personal .employee-list__head .employee-list__col--delete {
    display: none;
  }
}


.lk-personal .employee-list__row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 26px 20px;
  border-bottom: 2px solid #F8F8F8;
}


@media(max-width: 991px) {

  .lk-personal .employee-list__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
  }
}


@media(max-width: 991px) {

  .lk-personal .employee-list__col[data-line-mobile] {
    display: none;
  }
}


.lk-personal .employee-list__col[data-line-mobile].active {
  display: block;
}


.lk-personal .employee-list__col a {
  color: #404040;
  text-decoration: none;
  transition: .2s;
  cursor: pointer;
}


.lk-personal .employee-list__col a:hover {
  color: #d22233;
}


.lk-personal .employee-list__col--number {
  margin-right: 53px;
}


@media (max-width: 991px) {

  .lk-personal .employee-list__col--number {
    min-width: 16px;
    margin-right: 24px;
  }
}


.lk-personal .employee-list__col--name {
  min-width: 280px;
  width: 280px;
  margin-right: 31px;
}


@media (max-width: 991px) {

  .lk-personal .employee-list__col--name {
    min-width: auto;
    width: calc(100% - 40px);
    margin-right: 0;
  }
}


.lk-personal .employee-list__col--mail {
  min-width: 200px;
  width: 200px;
  margin-right: 23px;
}


.lk-personal .employee-list__col--mail span {
  display: none;
}


@media (max-width: 991px){

  .lk-personal .employee-list__col--mail span {
    min-width: 60px;
    margin-right: 17px;
    display: inline-block;
    color: #6E6E6E;
  }
}


@media (max-width: 991px) {

  .lk-personal .employee-list__col--mail {
    width: calc(100% - 40px);
    margin-right: 0;
    margin-left: auto;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}


.lk-personal .employee-list__col--phone span {
  display: none;
}


@media (max-width: 991px){

  .lk-personal .employee-list__col--phone span {
    min-width: 60px;
    margin-right: 17px;
    display: inline-block;
    color: #6E6E6E;
  }
}


@media (max-width: 991px) {

  .lk-personal .employee-list__col--phone {
    width: calc(100% - 40px);
    margin-right: 0;
    margin-left: auto;
    margin-bottom: 16px;
  }
}


.lk-personal .employee-list__col--delete {
  min-width: 30px;
  width: 30px;
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-left: auto;
  cursor:pointer;
}


@media(max-width: 991px) {

  .lk-personal .employee-list__col--delete svg {
    display: none;
  }
}


.lk-personal .employee-list__col--delete span {
  display: none;
}


@media (max-width: 991px) {

  .lk-personal .employee-list__col--delete span {
    display: block;
  }
}


@media (max-width: 991px) {

  .lk-personal .employee-list__col--delete {
    display: inline-table;
    width: auto;
    height: auto;
    margin-right: 0;
    margin-left: 40px;
    color: #D22233;
    border-bottom: 1px solid #D22233;
  }
}


.lk-personal .employee-list__arrow {
  display: none;
}


@media(max-width: 991px) {

  .lk-personal .employee-list__arrow {
    display: block;
    position: absolute;
    right: 15px;
    top: 25px;
    padding: 10px;
    margin: -10px;
  }
}


.lk-personal .employee-list__arrow.active {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .lk-personal__adress-block-input {
    width: 96% !important;
    margin-right: 0;
  }
    .lk-personal__input-adress-block {
    padding-right: 20px;
  }
    .lk-personal__input-adress-block input {
    width: 96%;
    margin-right: 0;
  }
    #add_adress {
        margin-bottom: 20px;
    }
}


@media (min-width: 961px) {
    .lk-personal__inputs .input-block:nth-child(odd) {
    margin-right: 110px;
  }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .lk-personal__inputs .input-block {
    max-width: 300px;
  }
}

@media (max-width: 960px) {
    .lk-personal {
        border: 0;
        padding: 0;
    }
    .lk-personal__inputs .input-block {
    max-width: none;
  }
    .lk-personal__buttons .btn {
    margin-top: 5px;
    margin-bottom: 5px;
  }
    .lk-personal__item--subscribe .input-block {
    display: block;
  }
    .lk-personal__item--subscribe .btn {
    margin-left: 0;
  }
}

.lk-orders {
    padding: 25px;
    padding-bottom: 30px;
    border: 1px solid #DFDFDF;
    border-top: 0;
}

.lk-orders__load #new_order2 {
  position: relative;
}

.lk-orders__load #new_order2 #rez_add {
  color: #d22233;
  position: absolute;
  right: 0;
  top: -40px;
  display: block;
  width: 230px;
}

@media(max-width: 1023px) {

  .lk-orders__load #new_order2 #rez_add {
    position: relative;
    right: 0;
    top: auto;
    display: block;
    width: 100%;
    text-align: left;
    margin-bottom: 10px;
  }
}

.lk-orders__load .btn {
  width: 195px;
  height: 40px;
  text-align: center;
  line-height: 20px;
}

.lk-orders-filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 40px;
}

@media(max-width: 1024px) {

  .lk-orders-filter {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
  }
}

@media(max-width: 1024px) {

  .lk-orders-filter__btn {
    width: 100%;
    margin-bottom: 20px;
  }
}

.lk-orders-filter__btn .btn {
  width: 110px;
  height: 40px;
}

@media(max-width: 1024px) {

  .lk-orders-filter__btn .btn {
    width: 100%;
    height: 45px;
  }
}

.lk-orders-filter__date {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 254px;
}

@media(max-width: 1024px) {

  .lk-orders-filter__date {
    width: 100%;
  }
}

.lk-orders-filter__left {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  width: calc(100% - 193px - 164px);
  margin-right: 164px;
}

@media(max-width: 1350px) {

  .lk-orders-filter__left {
    width: calc(100% - 193px - 20px);
    margin-right: 20px;
  }
}

@media(max-width: 1024px) {

  .lk-orders-filter__left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    width: 100%;
    margin-right: 0;
  }
}

.lk-orders-filter__left .input-block {
  margin-top: 0;
  margin-bottom: 0;
}

.lk-orders-filter__left .input-block input {
  height: 40px;
}

.lk-orders-filter__left .input-block label {
  display: inline-block;
  min-height: 14px;
  margin-bottom: 10px;
}

.lk-orders-filter__left .input-block--status {
  width: calc(100% - 178px - 20px - 121px - 6px - 121px - 6px - 20px);
  margin-right: 20px;
}

@media(max-width: 1024px) {

  .lk-orders-filter__left .input-block--status {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.lk-orders-filter__left .input-block--number {
  width: 178px;
  margin-right: 20px;
}

@media(max-width: 1024px) {

  .lk-orders-filter__left .input-block--number {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.lk-orders-filter__left .input-block--date {
  width: 121px;
  margin-right: 6px;
  position: relative;
}

@media(max-width: 1024px) {

  .lk-orders-filter__left .input-block--date {
    width: calc(50% - 3px);
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.lk-orders-filter__left .input-block--date input {
  padding: 10px 10px 10px 35px;
  cursor: pointer;
}

.lk-orders-filter__left .input-block--date:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url('/local/templates/santeam_base/images/calendar.svg') no-repeat center;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(50%);
  pointer-events: none;
}

@media(max-width: 1024px) {

  .lk-orders-filter__left .input-block--date:last-child {
    margin-right: 0;
  }
}

@media(max-width: 1024px) {

  .lk-orders-filter__right {
    width: 100%;
  }
}

@media (max-width: 960px) {
    .lk-orders {
        padding: 25px 0;
        border: 0;
        margin-top: 0;
        padding-top: 0;
    }
    .lk-orders__load .btn {
    width: 100%;
    height: 45px;
    line-height: 27px;
    text-align: center;
  }
    .lk-orders__load .btn::before {
    content: '';
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    margin-right: 15px;
    transform: rotate(180deg);
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22fill%3A%23d22233%3B%22%3E%20%3Cpath%20d%3D%22M-0.000%2C14.000%20C-0.000%2C14.000%20-0.000%2C12.000%20-0.000%2C12.000%20C-0.000%2C12.000%2014.000%2C12.000%2014.000%2C12.000%20C14.000%2C12.000%2014.000%2C14.000%2014.000%2C14.000%20C14.000%2C14.000%20-0.000%2C14.000%20-0.000%2C14.000%20ZM8.000%2C10.000%20C8.000%2C10.000%206.000%2C10.000%206.000%2C10.000%20C6.000%2C10.000%206.000%2C9.414%206.000%2C9.414%20C6.000%2C9.414%202.171%2C5.585%202.171%2C5.585%20C2.171%2C5.585%203.586%2C4.171%203.586%2C4.171%20C3.586%2C4.171%206.000%2C6.586%206.000%2C6.586%20C6.000%2C6.586%206.000%2C-0.000%206.000%2C-0.000%20C6.000%2C-0.000%208.000%2C-0.000%208.000%2C-0.000%20C8.000%2C-0.000%208.000%2C6.585%208.000%2C6.585%20C8.000%2C6.585%2010.414%2C4.171%2010.414%2C4.171%20C10.414%2C4.171%2011.828%2C5.585%2011.828%2C5.585%20C11.828%2C5.585%208.000%2C9.414%208.000%2C9.414%20C8.000%2C9.414%208.000%2C10.000%208.000%2C10.000%20Z%22%20id%3D%22path-1%22%20class%3D%22cls-2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  }
    .lk-orders__load .btn:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20preserveAspectRatio%3D%22xMidYMid%22%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22fill%3A%23fff%3B%22%3E%20%3Cpath%20d%3D%22M-0.000%2C14.000%20C-0.000%2C14.000%20-0.000%2C12.000%20-0.000%2C12.000%20C-0.000%2C12.000%2014.000%2C12.000%2014.000%2C12.000%20C14.000%2C12.000%2014.000%2C14.000%2014.000%2C14.000%20C14.000%2C14.000%20-0.000%2C14.000%20-0.000%2C14.000%20ZM8.000%2C10.000%20C8.000%2C10.000%206.000%2C10.000%206.000%2C10.000%20C6.000%2C10.000%206.000%2C9.414%206.000%2C9.414%20C6.000%2C9.414%202.171%2C5.585%202.171%2C5.585%20C2.171%2C5.585%203.586%2C4.171%203.586%2C4.171%20C3.586%2C4.171%206.000%2C6.586%206.000%2C6.586%20C6.000%2C6.586%206.000%2C-0.000%206.000%2C-0.000%20C6.000%2C-0.000%208.000%2C-0.000%208.000%2C-0.000%20C8.000%2C-0.000%208.000%2C6.585%208.000%2C6.585%20C8.000%2C6.585%2010.414%2C4.171%2010.414%2C4.171%20C10.414%2C4.171%2011.828%2C5.585%2011.828%2C5.585%20C11.828%2C5.585%208.000%2C9.414%208.000%2C9.414%20C8.000%2C9.414%208.000%2C10.000%208.000%2C10.000%20Z%22%20id%3D%22path-1%22%20class%3D%22cls-2%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
  }
}

.lk-checkout__item:not(:last-child) {
  margin-bottom: 80px;
}

@media (max-width: 960px) {

  .lk-checkout__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

.lk-checkout__item--radio {
  border-bottom: 1px solid #dfdfdf;
  margin: 0 !important;
}

.lk-checkout__item--radio:first-child {
  border-top: 1px solid #dfdfdf;
}

.lk-checkout__item--radio .lk-checkout__heading {
  margin: 60px 0;
}

.lk-checkout__item--order {
  margin-top: 40px;
}

@media (min-width: 961px) {

  .lk-checkout__item--order {
    padding: 0 !important;
  }
}

@media (min-width: 961px) {

  .lk-checkout__item--order .lk-checkout__heading {
    padding: 0 20px;
  }
}

.lk-checkout__item #select_delivery {
  width: 100%;
}

.lk-checkout__item .big-radio__text {
  color: #404040;
  font-size: 14px;
  line-height: normal;
}

.lk-checkout__item .selectric {
  min-height: 40px;
  height: auto;
  padding-right: 40px;
}

.lk-checkout__table {
  margin-top: 60px;
}

.lk-checkout__table .cl-1 {

    }

.lk-checkout__table .cl-2 {
  width: 30%;
  padding-left: 40px;
}

.lk-checkout__table .cl-3 {
  text-align: center;
}

.lk-checkout__table .cl-4 {
  text-align: center;
}

.lk-checkout__error {
  color: #d22233;
  font-size: 13px;
  margin-top: 20px;
  padding-left: 15px;
}

.lk-checkout__error i {
  vertical-align: top;
  margin-right: 4px;
}

.lk-checkout__buttons {
  margin: 30px 0;
}

.lk-checkout__buttons .btn {
  font-size: 15px;
  padding: 9px 30px;
}

.lk-checkout__inputs .input-block {
  max-width: 415px;
  width: 100%;
  display: inline-block;
  vertical-align: top;
}

.lk-checkout__inputs .input-block input {
  height: 42px;
}

.lk-checkout__inputs .input-block label {
  display: block;
  margin: 10px 0;
  color: black;
}

.lk-checkout__inputs .input-block:nth-child(odd) {
  margin-right: 110px;
}

.lk-checkout__inputs .input-block .input-block__msg {
  display: none;
}

.lk-checkout__inputs .input-block input.error ~ .input-block__msg {
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #d22233;
  padding: 5px 10px;
  color: white;
  margin-top: 5px;
}

.lk-checkout__heading {
  font-size: 16px;
  color: black;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 960px) {

  .lk-checkout .custom-checkbox {
    margin: 45px 0;
  }
}

@media (min-width: 961px) {
    .lk-checkout__item {
    padding: 0 20px;
  }
}

@media (max-width: 960px) {
    .lk-checkout__table .cl-2 {
    width: 100%;
  }
    .lk-checkout__table .cl-3, .lk-checkout__table .cl-4 {
    text-align: left;
  }
}

@media (min-width: 961px) and (max-width: 1170px) {
    .lk-checkout__inputs .input-block {
    max-width: 300px;
  }
    .lk-checkout__inputs .input-block:nth-child(odd) {
    margin-right: 110px;
  }
}
.content#order_form_div .custom-checkbox {
    margin: 0 0 65px 0;
}
.content#order_form_div .container {
    padding-top: 0;
}
.content.content--news .sided-holder {
    margin: 0;
}
.content.content--news .container {
    padding-top: 0;
}
@media (max-width: 960px) {
    .lk-checkout__inputs .input-block {
    max-width: none;
  }
    .lk-checkout__inputs .input-block:nth-child(odd) {
    margin-right: 0;
  }
    .content#order_form_div .custom-checkbox {
        margin: 0 0 45px 0;
    }
    .content.content--news .sided-holder__right {
        margin: 0;
    }
}

#add_requisites, #save_requisites  {
    width: 180px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

#add_requisites {
    margin-top: 20px;
}

.save-btn {
    margin-bottom: 10px;
}

.hide_item {
    display: none;
}

.wide {
    width: 100%;
}

.lk-price-note {
    display: table-cell;
    position: relative;
    width: 100%;
    background-color: #f8f8f8;
    padding: 30px 45px 25px;
    margin-bottom: 30px;
}
.lk-price-check {
    display: table-row;
}
.lk-price-check .lk-check-block {
  display: table-cell;
  padding: 5px 45px 0;
}
.lk-price-check .lk-check-block .input-block {
  display: inline-block;
}
.lk-price-check .lk-check-block .input-block input[type=checkbox] + label span, .lk-price-check .lk-check-block .input-block input[type=checkbox] + label::before {
  cursor: pointer;
}
.lk-price-check .lk-check-block .btn {
  margin-right: 20px;
}
.lk-price-check:last-child .lk-check-block {
  padding-top: 10px;
  padding-bottom: 30px;
}

.personal-offer__items {
    position: relative;
}
.personal-offer__items .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}
.personal-offer__items .owl-dots .owl-dot {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 22px;
    background-color: #c7c1bc;
}
.personal-offer__items .owl-dots .owl-dot:hover,
.personal-offer__items .owl-dots .owl-dot.active {
    background-color: #d22233;
}
.personal-offer__items .owl-dots .owl-dot.active {
    cursor: default;
}
@media(max-width: 960px) {
    .personal-offer__items .owl-item .personal-offer__item{
        width: 100%;
    }
    .personal-offer__items .owl-dots {
        bottom: 0;
    }
}
@media(max-width:600px) {
    .lk-price-check .lk-check-block .btn {
        margin-right: 0;
        width: 100% !important;
        margin-bottom: 10px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center;
        text-align: center;
    }
    #add_requisites {
        width: 100% !important;
    }
    #add_adress {
        width: 100% !important;
        margin-right: 0;
    }
    .lk-start__add .lk-start__item-destination-list-item-btn {
        width: 100% !important;
        margin-right: 0;
    }
    .content--lk .container {
        padding-top: 0;
    }
}
.lk-personal--registration .lk-personal__item--registration:not(:last-child) {
  margin-bottom: 0;
}
.lk-personal--registration .lk-personal__item--last {
  margin-bottom: 40px !important;
}
.lk-personal--registration .input-block--registration__title {
  margin-right: 10px;
}
@media (max-width: 480px) {

  .lk-personal--registration .input-block--registration__title {
    display: block;
    margin-bottom: 20px;
  }
}
.lk-personal--registration .input-block--registration label {
  margin-right: 10px;
}
.lk-personal--registration .lk-personal__buttons--registration span {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 20px;
}
.lk-personal--registration .registration-signature {
  margin-top: 40px;
  color: darkgrey;
}
@media(max-width: 600px) {
    #reg_form .nav-lk {
        position: initial;
        background-color: transparent;
    }
    #reg_form .nav-lk .nav-lk__item {
        box-shadow: none;
        border-color: transparent;
    }
    #reg_form .nav-lk .nav-lk__item a {
        border-bottom: 1px solid #dfdfdf;
    }
}
.lk-change-data__prompt {
  margin-top: 10px;
  font-size: 12px;
  color: #d22233;
}
.lk-personal__item--docs-title {
  display: inline-block;
  padding: 9px;
}
.lk-personal__item--docs .lk-personal__buttons {
  display: inline-block;
  float: right;
  margin: 0;
}
@media (max-width: 845px) {

  .lk-personal__item--docs .lk-personal__buttons {
    width: 100%;
    margin-top: 20px;
  }
}


/*Cart*/

.cart-table__head {
  display: table;
  table-layout: fixed;
  width: 100%;
  font-size: 12px;
  background: #f2f2f2;
}

.cart-table__head > * {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0;
  padding-right: 5px;
}

.cart-table__body {
  margin: 15px 0;
}

@media (max-width: 960px) {
    .cart-table__head {
    display: none;
  }
    .cart-table__head * > {
    display: table;
  }
}

@media (min-width: 961px) {
    .cl-1 {
        width: 105px;
    }
    .cl-2 {
        width: 21%;
    }
    .cl-3 {

    }
    .cl-4 {

    }
    .cl-5 {
        width: 170px;
    }
    .cl-6 {

    }
    .cl-7 {

    }
    .cl-8 {
        width: 45px;
    }
}
.cart-item {
    position: relative;
    border: 1px solid #e3e3e3;
}
.cart-item:not(:last-child) {
  margin-bottom: 15px;
}
.cart-item__table {
  display: table;
  table-layout: fixed;
  width: 100%;
}
.cart-item__table > * {
  display: table-cell;/*padding: 25px 0;*/
  vertical-align: middle;
}
.cart-item--alert::after {
  content: '';
  position: absolute;
  right: -25px;
  top: -17px;
  background: url(/local/templates/santeam_base/icons/alert.png);
  width: 61px;
  height: 56px;
}
.cart-item__image {
  height: 100px;
}
.cart-item__image .lazy-background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: calc(100% - 10px);
  margin: 5px;
}
.cart-item__desc {
  padding-right: 15px;
}
.cart-item__name {
  line-height: 21px;
  font-size: 13px;
}
.cart-item__name a {
  text-decoration: none;
  color: black;
}
.cart-item__name a:hover {
  text-decoration: underline;
}
.cart-item__art {
  margin-top: 7px;
  color: #cacaca;
  font-size: 12px;
}
@media (max-width: 960px) {

  .cart-item__price {
    width: 48%;
    display: inline-block !important;
  }
}
.cart-item__price, .cart-item__price-sale {
  font-size: 21px;
}
.cart-item__price-sale {
  color: #a1a1a1;
}
.cart-item__count {
  font-size: 0;
}
@media (max-width: 960px) {

  .cart-item__count {
    width: 48%;
    display: inline-block !important;
  }
}
.cart-item__count > * {
  display: inline-block;
  vertical-align: middle;
}
.cart-item__count-btn, .cart-item__count-input {
  height: 35px;
  padding: 0;
  text-align: center;
  background: #f2f2f2;
  font-size: 16px;
}
.cart-item__count-btn {
  position: relative;
  cursor: pointer;
  width: 30px;
}
.cart-item__count-btn:hover::after, .cart-item__count-btn:hover::before {
  background: #d22233;
}
.cart-item__count-btn--plus {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.cart-item__count-btn--plus::before, .cart-item__count-btn--plus::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #224877;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cart-item__count-btn--plus::after {
  transform: rotate(90deg);
  transform-origin: center;
}
.cart-item__count-btn--minus {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.cart-item__count-btn--minus::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 2px;
  background: #224877;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cart-item__count-input {
  width: 47px;
  border: 0;
  border-left: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
  color: #224877;
}
.cart-item__delete .i-icon {
  cursor: pointer;
  fill: #aeaeae;
  width: 18px;
  height: 18px;
  transition: .1s;
}
.cart-item__delete .i-icon:hover {
  transform: scale(1.2);
}
.cart-item__note {
  text-align: center;
  color: #d22233;
  font-size: 13px;
  margin: 25px 0;
  padding: 0 15px;
}

@media (max-width: 960px) {
    .cart-item {
        margin: 0 -15px;
        border-right: 0;
        border-left: 0;
    }
    .cart-item:not(:last-child) {
    margin-bottom: -1px;
  }
    .cart-item--alert::after {
    right: 0;
    top: 0;
  }
    .cart-item__note {
    text-align: left;
    margin-top: 0;
  }
    .cart-item__table {
    display: block;
    table-layout: auto;
    padding: 20px;
    font-size: 13px;
  }
    .cart-item__table > * {
    display: block;
    margin-bottom: 10px;
  }
    .cart-item__left {
    float: left;
    width: 80px;
    margin-right: 10px;
  }
    .cart-item__desc {
    padding: 0;
    padding-right: 35px;
  }
    .cart-item__small, .cart-item__big {
    color: #3e6fad;
    clear: both;
  }
    .cart-item__small::before, .cart-item__big::before {
    content: attr(data-before);
  }
    .cart-item__price-sale {
    display: none;
  }
    .cart-item__delete .i-icon {
    display: none;
  }
    .cart-item__delete::before {
    content: 'Удалить товар';
    color: #9e9e9e;
    border-bottom: 1px dashed;
    cursor: pointer;
  }
    .cart-item__delete:hover::before {
    border-bottom-color: transparent;
  }
}
.cart-summary {
    display: table;
    width: 100%;
    border: 1px solid #e3e3e3;
    table-layout: fixed;
    margin: 15px 0;
}
.cart-summary__item {
  display: table-cell;
  vertical-align: top;
  padding: 20px 35px;
}
.cart-summary__item:not(:last-child) {
  border-right: 1px solid #e3e3e3;
}
.cart-summary__item:last-child {
  background: #f6f6f6;
  width: 30%;
}
.cart-summary__item:last-child .cart-summary__val {
  color: #404040;
}
.cart-summary__item > *:not(:last-child) {
  margin-bottom: 20px;
}
.cart-summary__heading {
  font-size: 15px;
  font-weight: bold;
}
.cart-summary__val {
  font-size: 21px;
  color: #a1a1a1;
}
.cart-summary__left {
  color: #d22233;
}

@media (max-width: 960px) {
    .cart-summary {
        display: block;
        border: 0;
        margin-bottom: 50px;
    }
    .cart-summary__item {
    display: table;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 10px 0;
    position: relative;
  }
    .cart-summary__item > * {
    display: table-cell;
  }
    .cart-summary__item:not(:last-child) {
    border: 0;
  }
    .cart-summary__item:last-child {
    background: transparent;
    width: 100%;
  }
    .cart-summary__heading {
    width: 40%;
  }
    .cart-summary__val {
    font-size: 17px;
  }
    .cart-summary__left {
    position: absolute;
    left: 0;
    bottom: -30px;
  }
}
.cart-buy {
    text-align: right;
    margin: 30px 0;
}
.cart-buy.hidden-desktop {
    margin: 0 0 30px 0;
}
@media (max-width: 960px) {
    .cart-buy .btn {
    width: 100%;
    height: 50px;
    line-height: 33px;
    text-align: center;
  }
}
.page-heading--empty {
  padding: 0;
}
.page-heading__signature {
  margin-top: 20px;
}
.page-heading__signature-title {
  display: inline-block;
  color: #d22233;
}
.page-heading__signature-title--order {
  margin-bottom: 10px;
  color: #000000;
}
.page-heading__signature-text {
  line-height: 20px;
}
.page-heading__signature-btn {
  float: right;
}
@media (max-width: 960px) {

  .page-heading__signature-btn {
    margin-bottom: 20px;
    text-align: center;
  }
}
@media (max-width: 768px) {

  .page-heading__signature-btn {
    display: block;
    float: left;
    margin-top: 20px;
  }
}

.same_size {
    font-size: 27px !important;
}

.same_size--order {
  font-size: 24px !important;
}

.bottom-line {
	width: 100%;
	height: 1px;
	margin-top: 40px;
	background-color: #dadada;
}

.addtocart-modal-img{
  width: 40%;
  float: left;
  padding: 20px;
}

.addtocart-modal-text {
  float: right;
  width: 60%;
  padding: 20px;
}

.addtocart-modal-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.addtocart-modal-content button {
  width: 45%;
  margin-right: 5%;
  height: 35px;
  line-height: 33px;
  border: 1px solid #ccc;
  background: #eee;
  border-radius: 3px;
}

.addtocart-modal-content button:hover{
  background: #ccc;
}

@media(max-width: 375px) {

  .addtocart-modal-content button {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.addtocart-modal-content a {
  width: 45%;
  margin-left: 5%;
  height: 35px;
  line-height: 33px;
  border: 1px solid #224877;
  background: #224877;
  border-radius: 3px;
  display:block;
  float:right;
  text-decoration:none;
  color:#fff;
  text-align:center;
}

.addtocart-modal-content a:hover{
  background: #ccc;
  text-decoration:none;
  color:#000;
}

@media(max-width: 375px) {

  .addtocart-modal-content a {
    width: 100%;
    margin-left: 0;
  }
}

/*Prices*/

.prices-block__right {
  display: inline-block;
  vertical-align: top;
}

.prices-block__condition {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 50px;
}

.prices-block__docs {
  display: inline-block;
  vertical-align: top;
}

.prices-block__text {
  font-size: 16px;
  color: #224877;
  line-height: 21px;
}

@media (min-width: 961px) {
    .prices-block {
        padding: 22px;
    }
    .prices-block__right {
    margin-left: 50px;
    width: 65%;
  }
    .prices-block__condition {
    font-size: 16px;
    font-weight: bold;
    margin-top: 11px;
    line-height: 21px;
    margin-bottom: 48px;
  }
}

@media (max-width: 960px) {
    .prices-block__docs {
    display: block;
  }
    .prices-block__condition br {
    display: none;
  }
}
.prices-steps {
    background: url(/local/templates/santeam_base/images/shadow.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;
}
@media (max-width: 960px) {

  .prices-steps {
    background: none;
  }
}
.prices-steps__heading {
  padding: 80px 0;
  padding-bottom: 65px;
}
.prices-steps__image {
  height: 210px;
  width: 320px;
  float: left;
  max-width: 100%;
}
.prices-steps__image .lazy-background {
  background-position: center;
  background-repeat: no-repeat;
}
.prices-steps__right {
  margin-left: 385px;
  margin-top: 40px;
}
.prices-steps__item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e3e3e3;
}
.prices-steps__item .prices-block__text {
  padding-left: 60px;
  padding-right: 60px;
}
.prices-steps__circle {
  position: relative;
  float: left;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  line-height: 29px;
  text-align: center;
  font-size: 15px;
  color: #d22233;
  border: 2px solid #f3d1d4;
}
.prices-steps__circle::after {
  content: '';
  position: absolute;
  transform: rotate(45deg);
  transform-origin: center;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid transparent;
  border-top: 2px solid #d22233;
  border-radius: 100%;
  margin: auto;
}
.prices-steps__circle--two::after {
  border-right: 2px solid #d22233;
}
.prices-steps__circle--three::after {
  border-right: 2px solid #d22233;
  border-bottom: 2px solid #d22233;
}
.prices-steps__circle--four::after {
  border-right: 2px solid #d22233;
  border-bottom: 2px solid #d22233;
  border-left: 2px solid #d22233;
}

@media (max-width: 960px) {
    .prices-steps__heading {
    padding: 50px 0;
  }
    .prices-steps__image {
    float: none;
    margin: auto;
  }
    .prices-steps__right {
    margin-left: 0;
    margin-top: 20px;
  }
    .prices-steps__circle {
    float: none;
    margin: auto;
  }
    .prices-steps__item {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
    .prices-steps__item .prices-block__text {
    padding: 0;
  }
}
.prices-advantages__item {
  float: left;
  width: 33.3%;
  margin-bottom: 45px;
  box-shadow: 0px 14px 16px 0px rgba(0, 0, 0, 0.05);
  padding: 60px 35px;
  padding-bottom: 30px;
}
.prices-advantages__item:not(:last-child) {
  width: calc(33.3% - 20px);
  margin-right: 20px;
}
.prices-advantages__heading {
  font-size: 19px;
  line-height: 40px;
  margin-bottom: 30px;
}
.prices-advantages__icon {
  margin-bottom: 40px;
}
.prices-advantages__icon .i-icon {
  font-size: 8em;
}
.prices-advantages__text {
  padding-right: 80px;
  font-size: 15px;
  line-height: 27px;
}

@media (min-width: 961px) and (max-width: 1170px) {
    .prices-advantages__text {
    padding: 0;
  }
}

@media (max-width: 960px) {
    .prices-advantages__text {
    padding: 0;
  }
    .prices-advantages__item {
    width: 100% !important;
    height: auto !important;
    padding: 25px;
  }
    .prices-advantages__heading {
    line-height: 27px;
  }
}

/*Company*/

@media (min-width: 961px) {

  .company__item {
    border: 1px solid #e3e3e3;
    padding: 30px 35px;
  }
}

.company__top-image {
  text-align: center;
  padding: 60px 0;
}

@media (max-width: 480px) {

  .company__top-image {
    padding: 30px;
  }
}

.company__text {
  color: #6e6e6e;
  line-height: 22px;
}

.company__text .ul-title {
  margin-left: 30px;
}
@media (min-width: 961px) {

  .trade-marks__item {
    border: 1px solid #e3e3e3;
    padding: 30px 35px;
  }
}
.trade-marks__tile-wrapper {
  text-align: center;
}
.trade-marks__tile-wrapper h2 {
  color: #224877;
}
.trade-marks__tile-item {
  height: 120px;
  width: 140px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
  text-align: center;
  cursor: pointer;
}
.trade-marks__tile-item:hover .trade-marks__tile-item-image-wrapper {
  opacity: 1;
}
@media (min-width: 961px) {

  .trade-marks__tile-item {
    margin-right: 5px;
  }
}
.trade-marks__tile-item-image-wrapper {
  padding: 20px;
  opacity: .4;
}
.trade-marks-detail__item {
  position: relative;
  border: 1px solid #e3e3e3;
  padding: 30px 35px;
}
@media (max-width: 961px) {

  .trade-marks-detail__item {
    padding: 30px 0;
    border: none;
  }
}
.trade-marks-detail__top-item-back {
  display: block;
  position: absolute;
  top: 30px;
  right: 35px;
  text-decoration: none;
  color: inherit;
}
.trade-marks-detail__top-item-back:hover {
  text-decoration: underline;
  color: #d22233;
}
@media(max-width: 600px) {

  .trade-marks-detail__top-item-back {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
}
@media(max-width: 600px) {

  .trade-marks-detail__top-item-image {
    text-align: center;
    margin-top: 30px;
  }
}
.trade-marks-detail__bottom-item-list {
  margin-top: 10px;
}
.trade-marks-detail__bottom-item-list-object {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 15px;
  font-size: 12px;
  border: 1px dashed #e3e3e3;
  background-color: #f0f0f0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.trade-marks-detail__bottom-item-list-object:hover {
  border: 1px dashed #d22233;
  color: #d22233;
}
.vacancies {

}

/*Support*/

.support {

}
.tech-doc .block-item {
  padding: 30px 20px;
}
@media (min-width: 961px) {

  .tech-doc__item {
    border: 1px solid #e3e3e3;
    padding: 30px 35px;
  }
}
.tech-doc__tile-wrapper {
  text-align: center;
}
.tech-doc__tile-item {
  height: 315px;
  width: 220px;
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 20px;
  text-align: left;
  cursor: pointer;
}
.tech-doc__tile-item-title {
  margin-top: 10px;
  font-size: 10px;
}
.tech-doc__tile-item-image {
  display: block;
  max-height: 90%;
  max-width: 90%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  right: 0;
  left: 0;
}
.tech-doc__tile-item-image-icons {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 35px;
  margin: auto;
  text-align: center;
}
.tech-doc__tile-item-image-icon {
  padding: 5px;
  opacity: 0;
}
.tech-doc__tile-item-image-wrapper:hover .tech-doc__tile-item-image-icon {
  opacity: 1;
}
@media (min-width: 961px) {

  .tech-doc__tile-item {
    margin-right: 15px;
    vertical-align: top;
  }
}
.tech-doc__tile-item-image-wrapper {
  position: relative;
  height: 280px;
  width: 220px;
  padding: 10px;
  border: 1px solid #e3e3e3;
}
.tech-doc__tile-item-image-wrapper:hover {
  box-shadow: inset 200px 200px 0px 200px rgba(0,0,0,0.46);
}
.advertasing-support__tile-wrapper {
  margin-left: -10px;
  margin-right: -10px;
  text-align: center;
}
.advertasing-support img {
  max-width: 90%;
}
.work-with-claims__form-wrapper{
  position: relative;
  max-width: 550px;
  margin: auto;
  margin-top: 30px;
  border: 1px solid #e3e3e3;
  border-radius: 3px;
}
.work-with-claims__form {
  margin: auto;
  padding: 20px 47px;
}
.work-with-claims__form [disabled] {
  pointer-events: none;
  opacity: 0.7;
}
.work-with-claims__form-title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}
.work-with-claims__form-input {
  margin-bottom: 10px;
}
.work-with-claims__form-input label {
  display: inline-block;
  width: 170px;
  text-align: left;
}
@media (max-width: 580px) {

  .work-with-claims__form-input label {
    margin-bottom: 10px;
  }
}
.work-with-claims__form-input input {
  height: 40px;
  width: 280px;
}
@media (max-width: 580px) {

  .work-with-claims__form-input input {
    width: 100%;
  }
}
.work-with-claims__form-textarea {
  text-align: center;
}
.work-with-claims__form-textarea label {
  display: block;
  margin-top: 25px;
  margin-bottom: 10px;
  text-align: left;
}
.work-with-claims__form-textarea textarea {
  height: 100px;
  width: 100%;
  resize: none;
  margin-bottom: 10px;
}
.work-with-claims__form-select label {
  display: inline-block;
  margin-bottom: 10px;
}
.work-with-claims__form-file.form-file {
  margin-bottom: 30px;
}
.work-with-claims__form-file.form-file .label {
  padding: 0;
  margin-right: 10px;
}
.work-with-claims__form-file.form-file .form-file__wrap {
  margin-bottom: 10px;
}
.work-with-claims__form-file.form-file .form-file__wrap .form-file__action {
  display: inline-block;
  margin-bottom: 10px;
}
.work-with-claims__form-file.form-file .form-file__wrap .form-file__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
.work-with-claims__form-file.form-file .form-file__wrap .form-file__info .form-file__info-text {
  font-size: 12px;
  line-height: 150%;
}
@media (max-width: 500px) {

  .work-with-claims__form {
    padding: 20px 25px;
  }
}
.work-with-claims__btn {
  display: block;
  width: 200px;
  margin: auto;
  box-shadow: none;
  color: inherit;
}

.upload-file__list {
  margin-top: 10px;
}

.upload-file__item .upload-file__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.upload-file__item + .upload-file__item{
  margin-top: 10px;
}

.upload-file__name {
  margin-right: 5px;
  overflow-x: hidden;
  max-width: 70%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-file__remove {
  color: #404040;
  transition: color 0.3s;
  cursor: pointer;
  display: block;
}

.upload-file__remove:hover {
  color: #d22233;
}

.upload-file__remove svg {
  display: block;
}

.upload-file__error {
  //color: #d22233;
}

/*button to top*/
.btn-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 70px;
    padding: 6px 0;
    box-shadow: 2px 2px 3px -1px rgba(0,0,0,.5);
    border-radius: 6px;
    background-color: #d22233;
    text-align: center;
    cursor: pointer;
    z-index: 100;

}
.btn-to-top__title {
  margin-top: 5px;
  color: #ffffff;
}
.btn-to-top:hover {
  opacity: .8;
}

/*callback-modal*/
#callback-modal input[type="text"] {
  height: 32px;
}
#callback-modal .btn {
  width: auto;
}

/*swiper-slider*/
.swiper-sliders-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-left: -20px;
}
.swiper-sliders-wrapper .swiper-sliders__item1, .swiper-sliders-wrapper .swiper-sliders__item2 {
  width: calc(50% - 20px);
  margin-left: 20px;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
}
.swiper-sliders-wrapper .swiper-sliders__item1 h2, .swiper-sliders-wrapper .swiper-sliders__item2 h2 {
  font-size: 27px;
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-container, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-container {
  width: 100%;
  height: auto !important;
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-slide, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-slide {
  height: 135px;
  background: #fff;/* Center slide text vertically */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-slide .catalog-lvl-4__item, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-slide .catalog-lvl-4__item {
  margin-bottom: 0;
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-slide .catalog-lvl-4__item .catalog-lvl-4__prices, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-slide .catalog-lvl-4__item .catalog-lvl-4__prices {
  width: 100%;
  margin-top: 10px;
}
@media (max-width: 960px) {

  .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-slide .catalog-lvl-4__item, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-slide .catalog-lvl-4__item {
    width: 90%;
  }
}
@media (max-width: 960px) {

  .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-slide, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-slide {
    height: auto;
  }
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-next, .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-prev, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-next, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-prev {
  padding: 20px;
  background-size: 14px 20px !important;
}
@media (max-width: 480px) {

  .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-next, .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-prev, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-next, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-prev {
    top: 180% !important;
  }
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-next, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-next {
  background-image: url('/local/templates/santeam_base/icons/arrow2.svg') !important;
}
@media (max-width: 480px) {

  .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-next, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-next {
    left: 50px !important;
  }
}
.swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-prev, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-prev {
  right: 80px !important;
  left: auto !important;
  background-image: url('/local/templates/santeam_base/icons/arrow.svg') !important;
}
@media (max-width: 480px) {

  .swiper-sliders-wrapper .swiper-sliders__item1 .swiper-button-prev, .swiper-sliders-wrapper .swiper-sliders__item2 .swiper-button-prev {
    left: 0 !important;
  }
}
@media (max-width: 960px) {

  .swiper-sliders-wrapper .swiper-sliders__item1, .swiper-sliders-wrapper .swiper-sliders__item2 {
    width: 100%;
  }
}
.swiper-sliders-wrapper .swiper-sliders__item1 .slider-heading, .swiper-sliders-wrapper .swiper-sliders__item2 .slider-heading {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 480px) {

  .swiper-sliders-wrapper .swiper-sliders__item1 .slider-heading, .swiper-sliders-wrapper .swiper-sliders__item2 .slider-heading {
    margin-bottom: 55px;
  }
}

/*error*/
.error {
    border: 1px solid #d22233;
}
.error-text {
    color: #d22233;
}

.success-text {
    color: #7fad36;
}

/*visible-input*/
/*.visible_input {*/
    /*display: block !important;*/
/*}*/

.hide_city {
    display: none;
}


/*search*/
.resaults-news {
    margin-top: 60px;
    margin-bottom: 35px;
    padding-left: 20px;
}
.resaults-news__title {
  margin-bottom: 30px;
}

.news-list__heading--resaults {
    font-size: 14px;
    margin-top: 5px;
}

.pagination--search {
    margin-bottom: 60px;
}

/*404*/
.page-error {
    margin-top: 170px;
    margin-bottom: 190px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.page-error__number {
    font-family: "MyriadProBold", Arial, sans-serif;
    padding-bottom: 10px;
    font-size: 120px;
    color: #224877;
    line-height: 120px;
}

.page-error__text {
    font-family: "MyriadProRegular", Arial, sans-serif;
    padding-bottom: 50px;
    font-size: 24px;
    color: #224877;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .error {
        /*margin-top: 105px;*/
        /*margin-bottom: 130px;*/
    }
}

@media (max-width: 480px) {
    .page-error {
        margin-top: 40px;
        margin-bottom: 25px;
    }

    .page-error__number {
        font-size: 72px;
        line-height: 80px;
    }

    .page-error__text {
        font-size: 16px;
    }
}

.incart {
	background: #224877;
	color: #ffffff;
}

.incart .i-icon {
  fill: #ffffff !important;
}

.mobile-menu-inner {
	display: none;
	height: 100%;
	background: #224877;
	color: white;
	text-transform: uppercase;
	padding: 17px 20px;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom:  0;
	line-height: 18px;
	text-align: center;
	z-index: 20;
}

.mobile-menu-inner-wrap {
  position: relative;
  height: 55px;
  width: 100%;
  margin-top: 20px;
  left: 0;
  right: 0;
  overflow: hidden;
  transition: .2s;
}

@media (min-width: 961px) {

  .mobile-menu-inner-wrap {
    display: none;
  }
}

.search-opened .mobile-menu-inner-wrap {
  top: 125px;
}

.mobile-menu-inner::after {
  content: '';
  position: absolute;
  right: 0px;
  width: 50px;
  top: 0;
  bottom: 0;
  background: url(/local/templates/santeam_base/icons/arrow-down.png);
  background-position: center;
  background-repeat: no-repeat;
  transition: .2s;
}

@media (max-width: 960px) {

  .mobile-menu-inner {
    display: block;
  }
}

.mobile-menu-inner-btn-back {
	display: none;
	position: absolute;
	height: 100%;
	width: 60px;
	top: 0;
	bottom: 0;
	left: 0;
	background-color: #3865A4;
	text-decoration: none;
	z-index: 40;
	line-height: 18px;
}

.mobile-menu-inner-btn-back:hover {
  background-color: #d22233;
}

.mobile-menu-inner-btn-back .i-icon {
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin: auto;
}

@media (max-width: 960px) {

  .mobile-menu-inner-btn-back {
    display: block;
  }
}


.check-rotate::after {
  transform: rotate(180deg);
}

/*selectric*/
/*======================================
  Selectric v1.13.0
======================================*/

.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-wrapper.selectric-open .selectric:before {
  transform: rotate(180deg);
}

.selectric {
  border: 1px solid #DBDBDB;
  border-radius: 4px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 8px 20px;
  height: 40px;
}

.catalog-sort .catalog-sort__item:first-child .selectric {

  width: 150px;
}

.selectric b.button {
  display: none;
}

.selectric:before {
  content: '';
  background: url('/local/templates/santeam_base/images/arrow.svg') no-repeat center;
  width: 12px;
  height: 6px;
  position: absolute;
  right: 20px;
  top: 15px;
}

.selectric-focus .selectric {
  border-color: #bababa;
}

.selectric-hover .selectric {
  border-color: #d4d4d4;
}

.selectric-label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 38px 0 1em;
  font-size: 12px;
  line-height: 38px;
  color: #2f2f2f;
  height: 38px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-button {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 38px;
  height: 38px;
  line-height: 38px;
  background-color: transparent;
  color: #b0b0b0;
  text-align: center;
  border: none;
  padding: 0;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric-button:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border: 4px solid;
  border-bottom: none;
  border-left-color: transparent;
  border-right-color: transparent;
}

.selectric-hover .selectric-button {
  color: #979797;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric {
  border-color: #d4d4d4;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
}

.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

/* Items box */
.selectric-items {
  display: none;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  background: #fdfdfd;
  border: 1px solid #d4d4d4;
  box-shadow: 0 0 10px -6px;
  font-size: 12px;
}

.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}

.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}

.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.selectric-items li {
  display: block;
  padding: 10px;
  color: #2f2f2f;
  cursor: pointer;
}

.selectric-items li.selected {
  background: #f0f0f0;
  color: #222222;
}

.selectric-items li.highlighted {
  background: #e4e4e4;
  color: #222222;
}

.selectric-items li:hover {
  background: #d7d7d7;
  color: #222222;
}

.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #2f2f2f !important;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #161616;
}

.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}

.selectric-items .selectric-group li {
  padding-left: 25px;
}

/*pickmeup*/
.pickmeup{background:#000;border-radius:.4em;box-sizing:content-box;display:inline-block;position:absolute;-ms-touch-action:manipulation;touch-action:manipulation}.pickmeup *{box-sizing:border-box}.pickmeup.pmu-flat{position:relative}.pickmeup.pmu-hidden{display:none}.pickmeup .pmu-instance{display:inline-block;height:13.8em;padding:.5em;text-align:center;width:15em}.pickmeup .pmu-instance .pmu-button{color:#eee;cursor:pointer;outline:none;text-decoration:none}.pickmeup .pmu-instance .pmu-today{background:#17384d;color:#88c5eb}.pickmeup .pmu-instance .pmu-button:hover{background:transparent;color:#88c5eb}.pickmeup .pmu-instance .pmu-not-in-month{color:#666}.pickmeup .pmu-instance .pmu-disabled,.pickmeup .pmu-instance .pmu-disabled:hover{color:#333;cursor:default}.pickmeup .pmu-instance .pmu-selected{background:#136a9f;color:#eee}.pickmeup .pmu-instance .pmu-not-in-month.pmu-selected{background:#17384d}.pickmeup .pmu-instance nav{color:#eee;display:-ms-flexbox;display:flex;line-height:2em}.pickmeup .pmu-instance nav *:first-child :hover{color:#88c5eb}.pickmeup .pmu-instance nav .pmu-prev,.pickmeup .pmu-instance nav .pmu-next{display:none;height:2em;width:1em}.pickmeup .pmu-instance nav .pmu-month{width:14em}.pickmeup .pmu-instance .pmu-years *,.pickmeup .pmu-instance .pmu-months *{display:inline-block;line-height:3.6em;width:3.5em}.pickmeup .pmu-instance .pmu-day-of-week{color:#999;cursor:default}.pickmeup .pmu-instance .pmu-day-of-week *,.pickmeup .pmu-instance .pmu-days *{display:inline-block;line-height:1.5em;width:2em}.pickmeup .pmu-instance .pmu-day-of-week *{line-height:1.8em}.pickmeup .pmu-instance:first-child .pmu-prev,.pickmeup .pmu-instance:last-child .pmu-next{display:block}.pickmeup .pmu-instance:first-child .pmu-month,.pickmeup .pmu-instance:last-child .pmu-month{width:13em}.pickmeup .pmu-instance:first-child:last-child .pmu-month{width:12em}.pickmeup:not(.pmu-view-days) .pmu-days,.pickmeup:not(.pmu-view-days) .pmu-day-of-week,.pickmeup:not(.pmu-view-months) .pmu-months,.pickmeup:not(.pmu-view-years) .pmu-years{display:none}

/*daterangepicker*/
.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 99;
    display: none;
    font-family: Arial sans-serif;
    font-size: 15px;
    line-height: 1em;
}

.daterangepicker.opensleft:before {
    right: 9px;
}

.daterangepicker.opensleft:after {
    right: 10px;
}

.daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.opensright:before {
    left: 9px;
}

.daterangepicker.opensright:after {
    left: 10px;
}

.daterangepicker.drop-up {
    margin-top: -7px;
}

.daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
    float: none;
}

.daterangepicker.single .drp-selected {
    display: none;
}

.daterangepicker.show-calendar .drp-calendar {
    display: block;
}

.daterangepicker.show-calendar .drp-buttons {
    display: block;
}

.daterangepicker.auto-apply .drp-buttons {
    display: none;
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 228px;
}

.daterangepicker .drp-calendar.single .calendar-table {
    border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 1px 1px 0;
    border-radius: 0;
    display: inline-block;
    padding: 5px;
}

.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 30px;
    width: 30px;
    height: 30px;
    line-height: 22px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    padding: 0;
}
.daterangepicker .calendar-table th {
    color: #224877;
    font-size: 12px;
    font-weight: 400;
}
.daterangepicker .calendar-table th.prev,
.daterangepicker .calendar-table th.next {
    border-radius: 0;
}
.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
}

.daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0;
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
    border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #F4F4F4;
    border-color: transparent;
    color: #404040;
}

.daterangepicker th.month {
    width: auto;
    color: #404040;
    border-radius: 0;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}

.daterangepicker select.yearselect {
    width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle;
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.daterangepicker .ranges li:hover {
    background-color: #eee;
}

.daterangepicker .ranges li.active {
    background-color: #08c;
    color: #fff;
}

.daterangepicker tr:nth-child(odd) {
    background: transparent;
}
.daterangepicker thead tr:nth-child(odd) {
    background: #F4F4F4;
    color: #404040;
}
/*  Larger Screen Styling */
@media (min-width: 564px) {
    .daterangepicker {
        width: auto;
    }

    .daterangepicker .ranges ul {
        width: 140px;
    }

    .daterangepicker.single .ranges ul {
        width: 100%;
    }

    .daterangepicker.single .drp-calendar.left {
        clear: none;
    }

    .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
        float: left;
    }

    .daterangepicker {
        direction: ltr;
        text-align: left;
    }

    .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .daterangepicker .drp-calendar.right {
        margin-left: 0;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .daterangepicker .ranges, .daterangepicker .drp-calendar {
        float: left;
    }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
    }

    .daterangepicker .ranges {
        float: left;
    }

    .daterangepicker.rtl .ranges {
        float: right;
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important;
    }
}

@media (max-width: 600px) {
    .daterangepicker .drp-calendar {
        max-width: 100%;
    }
}
/* End */


/* Start:/local/templates/santeam_base/css/custom.css?174712524523444*/
.catalog-menu.catalog-menu--disabled .catalog-menu-dropdown__submenu{
    display: none !important;
}
.catalog-menu-dropdown__item.catalog-menu-dropdown__hidden {
    display: none;
}
.table-main-menu{
    position: relative;
}
.catalog-menu-dropdown__name {
    flex: 1;
    padding-left: 10px;
}
.catalog-menu--opened .catalog-menu-dropdown__link span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: url(/local/templates/santeam_base/icons/arrow-gray.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}
.catalog-menu-dropdown__img{
    height: 40px;
}
.catalog-menu--opened .catalog-menu-dropdown > .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__link span::after{
    background-image: url(/local/templates/santeam_base/icons/arrow-white.svg);
}
.catalog-menu--opened .catalog-menu__btn{
    background: #d22233;
}
.catalog-menu-dropdown{
    overflow: visible;
    height: auto;
}
.catalog-menu .catalog-menu-dropdown{
    display:none;
}
.catalog-menu--opened .catalog-menu-dropdown{
    top:38px !important;
}
.catalog-menu-dropdown{
    top:25px !important;
}
.catalog-menu-dropdown__submenu.active {
    display: block;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 99;
}
.catalog-menu.catalog-menu--opened .catalog-menu-dropdown {
    display: block;
    background: transparent;
    z-index: 60;
    column-count: 4;
    column-gap: 0;
    width: calc(100% - 115px) !important;
}
.catalog-menu.catalog-menu--disabled .catalog-menu-dropdown{display:block;background:#fff;}
.main-menu .table-emulate{position: relative;}
.catalog-menu-dropdown__link{
    padding-top:5px !important;
    padding-bottom: 5px !important;
    padding-left: 10px;
    padding-right: 25px;
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
}
.catalog-menu.catalog-menu--disabled .catalog-menu-dropdown__link{
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 10px;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item > .catalog-menu-dropdown__link {width:100%;}
.catalog-menu-dropdown > .catalog-menu-dropdown__item {
    width:100%;
    min-height: 65px;
    break-inside: avoid-column;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__link {width:100%;}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__link > .catalog-menu-dropdown__name {
    color: #fff;
    font-weight: 500;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item > .catalog-menu-dropdown__link:hover{
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: white;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:hover {
    width:100%;
}
.inner-top-menu .catalog-menu{width: 100%;position: absolute;}
.catalog-menu-dropdown__submenu {
    position: absolute;
    width: 100%;
    background: #fff;
    z-index: 9;
    left: 100%;
    top: 0;
    display: none;
}
.catalog-menu-dropdown__item {
    margin: 0 !important;
    position: relative;
    display: flex;
    align-items: center;
}
@media (min-width: 1226px) {
    .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-child(8n){
        break-after: column;
    }
}
.catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__submenu{
    display:block;
    column-count: 1;
    column-gap: 0;
}
.catalog-menu-dropdown__item:first-child{border-top:0;}
.inner-top-menu .main-search {
    position: absolute;
    top: 0;
    width: calc(100% - 305px);
    right: 0;
    z-index: 99;
}
.main-menu {
    min-height: 38px;
    /*height: auto;*/
}
.inner-top-menu .catalog-menu__btn {
    width: 305px;
}
@media screen and (max-width: 991px) {
    .catalog-menu-dropdown > .catalog-menu-dropdown__item > .catalog-menu-dropdown__link:hover{
        text-decoration: none;
    }
    .catalog-menu__btn {
        width: 100% !important;
    }
    .catalog-menu {
        width: 100% !important;
        position: relative !important;
        margin: 0 auto !important;
    }
    .catalog-menu-dropdown__item:hover .catalog-menu-dropdown__name {
        width: auto;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item:hover,
    .catalog-menu-dropdown > .catalog-menu-dropdown__item {
        width: 100% !important;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item > .catalog-menu-dropdown__link {
        width: 100% !important;
    }
    .catalog-menu--disabled .catalog-menu-dropdown {
        overflow: auto;
        height: 466px;
        width: 100% !important;
        top: 0 !important;
        margin-top: 0 !important;
    }
    .catalog-menu-dropdown {
        width: 100%;
        position:inherit;
    }
    .catalog-menu--opened .catalog-menu-dropdown {
        top: 50px !important;
    }
}

/*new styles*/
.catalog-menu-dropdown__submenu {
    height: auto;
    background: transparent;
}

.catalog-menu-dropdown__item.hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
    padding-left: 15px;
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
}

.catalog-menu-dropdown__item:hover,
.catalog-menu-dropdown__item.hover  {
    background-color: #2BB9EB;
}

.catalog-menu-dropdown__submenu .catalog-menu-dropdown__item {
    margin-bottom: 0 !important;
}

.catalog-menu-dropdown__submenu > .catalog-menu-dropdown__item {
    font-size: 14px;
    float: none;
    display: flex;
    vertical-align: top;
    width: 100%;
    break-inside: avoid-column;
    background-color: #2BB9EB;
    min-height: 65px;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+6) .catalog-menu-dropdown__submenu{
    width: 200%;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+6):hover > .catalog-menu-dropdown__submenu {
    column-count: 2;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-2:nth-last-child(-n+6):hover > .catalog-menu-dropdown__submenu{
    column-count: 1;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-2:nth-last-child(-n+6) .catalog-menu-dropdown__submenu{
    width: 100%;
}
.inner-top-menu .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+3){
    flex-direction: column;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+3) .catalog-menu-dropdown__submenu{
    left: 0;
    top: 100%;
    position: relative;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+6):hover {
    z-index: 10;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:hover > .catalog-menu-dropdown__submenu {
    column-count: 2;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10 .catalog-menu-dropdown__submenu{
    width: 200%;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-last-child(13):hover > .catalog-menu-dropdown__submenu {
    column-count: 2;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-last-child(13) .catalog-menu-dropdown__submenu{
    width: 200%;
    bottom: -100%;
    top: auto;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-last-child(9):hover > .catalog-menu-dropdown__submenu {
    column-count: 1;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-last-child(9) .catalog-menu-dropdown__submenu{
    width: 100%;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-3:nth-last-child(-n+6):hover > .catalog-menu-dropdown__submenu {
    column-count: 1;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-3:nth-last-child(-n+6) .catalog-menu-dropdown__submenu{
    width: 100%;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-child(1):hover > .catalog-menu-dropdown__submenu {
    column-count: 1;
}
.catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-child(1) .catalog-menu-dropdown__submenu{
    width: 100%;
    top: 0;
}
.catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__link > .catalog-menu-dropdown__name {
    color: #fff;
}
.catalog-menu-dropdown .catalog-menu-dropdown__submenu > .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__link {
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: white;
}

.sided-holder__left .catalog-menu-dropdown{
    display: block;
    margin-bottom: 40px;
    column-count: 1;
    width: 100% !important;
    top: 0 !important;
    position: relative;
}
.sided-holder__left .catalog-menu-dropdown__item{
    box-shadow: none;
}
.sided-holder__left .catalog-menu-dropdown__link span::after{
    transform: rotate(90deg);
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item{
    border: 1px solid #ebebeb;
    border-bottom: 0;
    border-radius: 0;
    min-height: auto;
    flex-direction: column;
    justify-content: center;
    break-after: auto !important;
}
.sided-holder__left .catalog-menu-dropdown__link span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: url(/local/templates/santeam_base/icons/arrow-gray.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__link span::after {
    background-image: url(/local/templates/santeam_base/icons/arrow-white.svg);
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item:last-child{
    border-bottom: 1px solid #ebebeb;
}
.sided-holder__left .catalog-menu-dropdown__link span{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item > .catalog-menu-dropdown__link{
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    padding-right: 30px;
}
.sided-holder__left .catalog-menu-dropdown__submenu{
    position: relative;
    z-index: 1;
    left: 0 !important;
    top: 0 !important;
    column-count: 1 !important;
    width: 100% !important;
}
.sided-holder__left .catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__item{
    min-height: 40px;
}
.sided-holder__left .catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__link{
    margin-left: 35px;
}
.sided-holder__left .catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__link > .catalog-menu-dropdown__name{
    padding-left: 0;
    line-height: 150%;
}
.sided-holder__left .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__submenu {
    display: none;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.open > .catalog-menu-dropdown__link span::after{
    transform: rotate(-90deg);
    background-image: url(/local/templates/santeam_base/icons/arrow-white.svg);
}
.sided-holder__left .catalog-menu-dropdown__submenu{
    padding-bottom: 20px;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.open{
    background-color: #2BB9EB;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.open > .catalog-menu-dropdown__link > .catalog-menu-dropdown__name{
    color: #fff;
    font-weight: 700;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.active > .catalog-menu-dropdown__link > .catalog-menu-dropdown__name{
    color: #fff;
    font-weight: 700;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.active > .catalog-menu-dropdown__submenu{
    display: block;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.active{
    background-color: #2BB9EB;
}
.sided-holder__left .catalog-menu-dropdown > .catalog-menu-dropdown__item.active > .catalog-menu-dropdown__link span::after{
    transform: rotate(-90deg);
    background-image: url(/local/templates/santeam_base/icons/arrow-white.svg);
}
.sided-holder__left .catalog-menu-dropdown__submenu .catalog-menu-dropdown__link.active{
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: white;
}
.detail-product .sided-holder{
    margin-top: 0;
}
.detail-product__custom .sided-holder__right .detail-product .detail-product__left-info{
    width: 35%;
}
.detail-product__custom .sided-holder__right .detail-product__right-info{
    width: 63%;
}
.detail-product__custom .sided-holder__right .detail-product-buy__declaration{
    margin-top: 15px;
}
.catalog-filter{
    background: #fff;
}
.catalog-filter__item{
    border: 1px solid #ebebeb;
    border-bottom: 0 !important;
}
.catalog-filter__item:last-child{
    border-bottom: 1px solid #ebebeb !important;
}
.catalog-filter__heading-btn{
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
}
.catalog-filter__item {
    padding: 18px 0 18px 18px;
}
.catalog-filter__heading-name{
    color: #666666;
    height: 100%;
    line-height: 17px;
    font-weight: normal;
    font-size: 14px;
}
.catalog-filter__heading-btn::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-image: url(/local/templates/santeam_base/icons/arrow-gray.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    transform: rotate(90deg);
}
.catalog-filter-head{
    padding-top: 20px;
    padding-bottom: 20px;
}
.catalog-filter-head .catalog-filter__heading-name{
    color: #404040;
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
}
.catalog-filter__item:hover .catalog-filter__heading-name{
    color: #224877;
    font-weight: 700;
}
.catalog-filter__item:hover .catalog-filter__heading-btn::after{
    background-image: url(/local/templates/santeam_base/icons/arrow-blue.svg);
}
.catalog-filter__item.open .catalog-filter__heading-name{
    color: #224877;
    font-weight: 700;
}
.catalog-filter__item.open .catalog-filter__heading-btn::after{
    background-image: url(/local/templates/santeam_base/icons/arrow-blue.svg);
    transform: rotate(-90deg);
}
.catalog-filter .input-block input[type=checkbox] + label a, .catalog-filter .input-block input[type=checkbox] + label span, .catalog-filter .input-block input[type=radio] + label a, .catalog-filter .input-block input[type=radio] + label span{
    color: #224877;
    line-height: 17px;
    font-size: 14px;
}
.catalog-filter .input-block input[type=checkbox]:checked + label::before, .catalog-filter .input-block input[type=radio]:checked + label::before{
    content: '\2022';
    font-size: 40px;
    color: #224877;
    text-align: center;
    line-height: 19px;
    background: transparent;
    background-image: none;
}
.catalog-filter__swimming-btn::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-right: 17px solid #fff;
    border-bottom: 16px solid transparent;
    left: -11px;
    top: 6px;
    border-radius: 5px;
}
.catalog-filter__swimming-btn {
    position: absolute;
    width: 120px;
    height: 45px;
    right: -70px;
    top: 0;
    background-color: #fff;
    text-align: center;
    box-shadow: -1px 11px 10px 0px rgba(0, 0, 0, .48);
    border-radius: 5px;
    border: 1px solid #ebebeb;
}
.catalog-filter__swimming-btn-link {
    color: #224877;
    line-height: 42px;
    font-size: 12px;
}
.catalog_filter_btns{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 35px;
}
.catalog-filter__search-btn{
    font-size: 14px;
    color: #224877;
    width: 135px !important;
    border: 0;
    box-shadow: none;
    margin-top: 0;
}
.catalog-filter__reset-btn{
    font-size: 14px;
    width: auto;
    display: block;
    height: 43px;
    text-align: center;
    background: #ebebeb;
    border-radius: 4px;
    text-decoration: none;
    padding: 0 15px;
    vertical-align: middle;
    margin: 0 20px 0 0;
    line-height: 43px;
}
.filter_close{
    display: none;
}
.catalog-filter-opener {
    display: none;
    line-height: 22px;
    cursor: pointer;
    border-bottom: 1px dashed;
    width: 90px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.catalog-filter-opener svg{
    margin-left: 5px;
}
.block-form-contacts{
    max-width: 480px;
    width: 100%;
    margin: 30px 0;
    padding: 25px 45px;
    border: 1px solid rgb(209, 209, 209);
    border-radius: 3px;
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.09);
}
.block-form-contacts .input-block {
    margin: 30px 0;
}
.block-form-contacts .input-block > label {
    margin-bottom: 7px;
    display: block;
}
.block-form-contacts .politics {
    padding: 0 0 20px;
}
.page-head-contacts{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.page-head-contacts img{
    width: 35px;
    cursor: pointer;
}
@media print {
	header, .main-menu, footer, .block-form-contacts, .page-head-contacts img{
		display: none;
	}
}
@media (max-width: 1400px) {
    .detail-product__custom .sided-holder__right .detail-product .sided-holder__left, .detail-product__custom .sided-holder__right .detail-product .sided-holder__right {
        margin: 25px 0;
        display: block;
        vertical-align: top;
        width: 100%;
        padding: 0;
    }
    .detail-product__custom .sided-holder__right .detail-product .swiper-sliders-wrapper .swiper-sliders__item1, .detail-product__custom .sided-holder__right .detail-product .swiper-sliders-wrapper .swiper-sliders__item2 {
        width: 100%;
    }
}
@media (max-width: 1225px) {
    .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-child(10n) {
        break-after: column;
    }
    .catalog-menu.catalog-menu--opened .catalog-menu-dropdown{
        column-count: 3;
        overflow: hidden;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10 .catalog-menu-dropdown__submenu {
        width: 200%;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:hover > .catalog-menu-dropdown__submenu {
        column-count: 2;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-3:nth-child(9):hover > .catalog-menu-dropdown__submenu {
        column-count: 1;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-3:nth-child(9) .catalog-menu-dropdown__submenu{
        bottom: 0;
        top: auto;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-2:nth-last-child(10):hover > .catalog-menu-dropdown__submenu {
        column-count: 1;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-2:nth-last-child(10) .catalog-menu-dropdown__submenu{
        bottom: 0;
        top: auto;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-last-child(13):hover > .catalog-menu-dropdown__submenu {
        column-count: 1;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.count-10:nth-last-child(13) .catalog-menu-dropdown__submenu{
        top: -400%;
        width: 100%;
        bottom: auto;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+7) .catalog-menu-dropdown__submenu {
        width: 100%;
        left: 0;
        top: 100%;
        position: relative;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+7):hover > .catalog-menu-dropdown__submenu {
        column-count: 1;
    }
    .inner-top-menu .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-last-child(-n+7){
        flex-direction: column;
    }
}

@media screen and (max-width: 960px) {
    .page-head-contacts img{
        display: none;
    }
    .catalog-menu.catalog-menu--opened .catalog-menu-dropdown {
        column-count: 1;
        width: 100% !important;
        top: 0 !important;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item:nth-child(10n) {
        break-after: auto;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item {
        flex-direction: column;
        justify-content: center;
    }
    .catalog-menu--opened .catalog-menu-dropdown__item, .catalog-menu--disabled .catalog-menu-dropdown__item{
        box-shadow: none;
    }
    .catalog-menu__btn {
        margin-bottom: 15px;
    }
    .catalog-menu.catalog-menu--opened .catalog-menu__btn {
        background: #d22233;
        padding-left: 65px;
    }
    .catalog-menu__btn::before {
        left: auto;
        margin-left: -50px;
    }
    .catalog-menu-dropdown__link span::after{
        transform: rotate(90deg);
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item{
        border: 1px solid #ebebeb;
        border-radius: 5px;
        min-height: auto;
    }
    .catalog-menu-dropdown .catalog-menu-dropdown__name {
        color: #224877;
    }
    .catalog-menu-dropdown__link span{
        width: 40px;
        height: 40px;
        position: absolute;
        right: 0;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item > .catalog-menu-dropdown__link{
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        padding-right: 30px;
    }
    .catalog-menu-dropdown__submenu{
        position: relative;
        z-index: 1;
        left: 0 !important;
        top: 0 !important;
        column-count: 1 !important;
        width: 100% !important;
    }
    .catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__item{
        min-height: 40px;
    }
    .catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__link{
        margin-left: 65px;
        padding-left: 2px;
    }
    .catalog-menu-dropdown .catalog-menu-dropdown__submenu .catalog-menu-dropdown__link > .catalog-menu-dropdown__name{
        padding-left: 0;
    }
    .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__submenu {
        display: none;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.open > .catalog-menu-dropdown__link span::after{
        transform: rotate(-90deg);
        background-image: url(/local/templates/santeam_base/icons/arrow-white.svg);
    }
    .catalog-menu-dropdown__submenu{
        padding-bottom: 20px;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.open{
        background-color: #2BB9EB;
    }
    .catalog-menu-dropdown > .catalog-menu-dropdown__item.open > .catalog-menu-dropdown__link > .catalog-menu-dropdown__name{
        text-decoration: underline dashed #fff 1px;
        text-underline-offset: 5px;
        line-height: 150%;
        color: #fff;
    }
    .catalog-menu-dropdown .catalog-menu-dropdown__submenu > .catalog-menu-dropdown__item:hover > .catalog-menu-dropdown__link,
    .catalog-menu-dropdown .catalog-menu-dropdown__submenu > .catalog-menu-dropdown__item:active > .catalog-menu-dropdown__link{
        text-decoration: underline dashed #fff 1px;
    }
    .sided-holder__left .catalog-menu-dropdown{
        display: none;
    }
    .filter_close{
        position: absolute;
        display: block;
        right: 5px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        color: #404040;
        font-size: 26px;
        text-align: center;
        font-family: inherit;
        -webkit-appearance: none;
        cursor: pointer;
    }
    .catalog-filter__swimming-btn{
        right: 10px;
    }
    .catalog-filter-opener.active {
        display: block;
    }
}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/menu/header_top_menu/style.min.css?1675233875561*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/santeam_base/components/bitrix/menu/header_top_menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}.header-top-links__link.current_page a{color: #fff;background: #224877}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/menu/header_fixed_menu/style.min.css?1675233875490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/santeam_base/components/bitrix/menu/header_fixed_menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/sale.basket.basket.line/.default/style.css?16752338755243*/
.bx-basket {}
.bx-basket-block {
	font-size: 12px;
	padding-bottom: 5px;
	white-space: nowrap;
	position: relative;
	padding-left: 20px;
}
.bx-basket-block>.fa {
	color: #97a1ab;
	width: 12px;
	position: absolute;
	left: 0;
	top: 3px;
}
.bx-basket-block a {
	color: #039BE5;
	border-bottom: 1px dashed;
	margin-right: 10px;
}
.bx-basket-block a:hover {
	text-decoration: none;
	border-bottom-color: transparent;
}


/*FIXED BASKET*/

@media (min-width: 768px) {
	.bx-basket-fixed{
		width: 200px;
		position: fixed;
		z-index: 1100;
		background: #fff;
		padding-top: 10px;
		border: 1px solid #F0F0F0;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
		border-radius: 1px;
		overflow: hidden;
	}
	.bx-basket-fixed.top	  {top:10px}
	.bx-basket-fixed.right  {right:10px}
	.bx-basket-fixed.bottom{bottom:10px}
	.bx-basket-fixed.left	 {left:10px}
	.bx-basket-fixed.bx-max-height{top:10px;bottom:10px;}
}
@media (max-width: 767px) {
	.bx-basket-fixed{
		/*width: 200px;*/
		position: fixed;
		z-index: 1100;
		background: #fff;
		padding-top: 10px;
		border: 1px solid #F0F0F0;
		box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15);
		border-radius: 1px;
		overflow: hidden;
		bottom: 0;
		left: 0;
		right: 0;
	}
	.bx-basket-item-list{
		display: none;
	}
	/*.bx-basket-fixed */
}
.bx-basket-fixed .bx-basket-block{
	margin-left: 10px;
}
.bx-basket-item-list{
	position: relative;
	padding-bottom: 20px;
	border-top: 1px solid #F7F7F7;
	overflow: hidden;
}
.bx-opener .bx-basket-item-list{
	padding-bottom: 75px;
}
.bx-max-height .bx-basket-item-list{
	position: absolute;
	bottom: 0px;
	left: 0;
	right: 0;
}
.bx-closed .bx-basket-item-list{
	height: 20px;
	overflow: hidden;
}
.bx-basket-item-list-action{
	cursor: pointer;
	background: #F7F7F7;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 120;
	height: 20px;
	line-height: 14px;
	vertical-align: middle;
	text-align: center;
	font-size: 12px;
	color: #4f4f4f;
	padding: 3px 0;
}
.bx-basket-item-list-button-container{
	text-align: center;
	position: absolute;
	bottom: 20px;
	border-top: 1px solid #F7F7F7;
	padding: 10px 0;
	background: #fff;
	left: 0;
	right: 0;
}

.bx-basket-item-list-container{
	overflow-y: auto;
	max-height: 100%
}
.bx-basket-item-list-item{
	padding-top: 15px;
	position: relative;
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 15px;
	border-bottom: 1px solid #F7F7F7;
}
.bx-basket-item-list-container .bx-basket-item-list-item:last-child{
	border-bottom: none;
	margin-bottom: 0;
}
.bx-basket-item-list-item-status{
	font-weight: bold;
	padding: 3px;
	background: #EBEBEB;
	margin: 0 10px 20px;
	line-height: 16px;
	font-size: 13px;
	border-radius: 3px;
	text-align: center;
}
.bx-basket-item-list-item-img{
	text-align: center;
	position: relative;
	padding-bottom: 5px;
}
.bx-basket-item-list-item-img img{
	max-width: 90px;
	height: auto;
	border: 1px solid #E6E6E6;
}
.bx-basket-item-list-item-name{padding-bottom: 5px;}
.bx-basket-item-list-item-name a{
	font-size: 13px;
	color: #3F3F3F;
	text-decoration: none;
}
.bx-basket-item-list-item-remove{
	position: absolute;
	right: 10px;
	top: -7px;
	width: 20px;
	height:20px;
	cursor: pointer;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAAJFBMVEX///8yMjI6Ojpvb29wcHCEhISHh4eIiIiqqqqtra2wsLCxsbE3yvJ6AAAAAXRSTlMAQObYZgAAACxJREFUCNcFwYEBgCAMA7BYUMb2/78m9sXdJtfNMHkzcJ4DlS9FpXXKavT6ARdgANGqCJ38AAAAAElFTkSuQmCC) no-repeat center;
	opacity: .5;
}
.bx-basket-item-list-item-remove:hover{
	opacity: .7;
}
.bx-basket-item-list-item-price-block{
	padding-bottom: 5px;
	font-size: 12px;
}
.bx-basket-item-list-item-price{
	display: inline-block;
	margin-right: 5px;
}
.bx-basket-item-list-item-price-old{
	display: inline-block;
	margin-right: 5px;
	text-decoration: line-through;
	color: #B0B0B0
}
.bx-basket-item-list-item-price-summ{}

.bx_cart_login_top .bx-hdr-profile a {
	text-decoration: none;
}
.bx_cart_login_top .bx-hdr-profile{
	line-height: 1.44em;
}

.cart-top {
	position: relative;
}

.header-cart:hover .cart-banner{
	display: block;
}

.cart-top span a {
	text-decoration: none;
}

.cart-banner {
	display: none;
	position: absolute;
	margin-top: 10px;
	min-width: 750px;
	max-height: 600px;
	overflow:auto;
	top: 165%;
	left: -550px;
	z-index: 100;
	background-color: #fff;
	border: 1px solid #e3e3e3;
}

.cart-banner-item {
	display: table;
	width: 100%;
}

.cart-banner-item * {
	color: #404040;
}

.cart-banner-image {
	display: table-cell;
	vertical-align: middle;
	padding: 10px;
	width: 140px;
}

.cart-banner-name {
	display: table-cell;
	vertical-align: middle;
	width: 340px;
}

.cart-banner-name .cart-item__art {
	color: #cacaca;
}

.cart-banner-quantity {
	display: table-cell;
	vertical-align: middle;
	width: 140px;
}

.cart-banner-quantity * {
	display: inline-block;
	vertical-align: middle;
}

.cart-banner-price {
	display: table-cell;
	vertical-align: middle;
	font-size: 18px;
}

.total-price {
	text-align: right;
	margin-right: 30px;
	font-size: 19px;
	color: #404040;
}

.block-button {
	margin: 20px auto;
	text-align: center;
}

.block-button #cart-top-button {
	color: #fff;
	margin-right: 40px;
}

.block-button #quick-buy-button,
.block-button #quick-buy-button:hover {
	background-color: #fff;
	color: #D22233;
}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/menu/header_mobile_menu/style.min.css?1675233875490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/santeam_base/components/bitrix/menu/header_mobile_menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/sale.basket.basket.line/mobile/style.css?1726137549258*/
.header-mobile #bx_basket div {
	position: absolute;
    top: 3px;
    right: 2px;
    text-align: center;
    font-size: 9px;
    color: #fff;
    border-radius: 50%;
    background-color: #224877;
    width: 16px;
    height: 16px;
    line-height: 16px;
}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/breadcrumb/nav/style.min.css?1675233875448*/
.bx-breadcrumb{margin:10px 0}.bx-breadcrumb i{color:#b5bdc2;line-height:13px;font-size:12px;vertical-align:middle;margin-right:5px}.bx-breadcrumb .bx-breadcrumb-item{float:left;margin-bottom:10px;white-space:nowrap;line-height:13px;vertical-align:middle;margin-right:10px}.bx-breadcrumb .bx-breadcrumb-item span{font-family:"Open Sans",Arial,"Helvetica Neue",Helvetica,sans-serif;font-size:13px}.bx-breadcrumb .bx-breadcrumb-item a{border-bottom:0}
/* End */


/* Start:/local/components/studiofact/form.ajax/templates/feedback_price/style.css?1716453805837*/
#citfact_form_ajax_review input.error,
#citfact_form_ajax_review textarea.error
{
    border: 1px solid !important;
    border-color: #F94D41 !important;
}
#citfact_form_ajax_problem .hide{
	display: none;
}
.errors_cont {
    color: #D22233;
}
.success_cont {
    color: #0e9710;
}

.refresh-button {
    width: 180px;
    height: 25px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 14px;
    background-color: #f2f2f2;
    color: #404040;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: .2s;

    &:hover {
        border-color: transparent;
        color: white;
        background: #224877;
    }
}

@media only screen and (max-width: 767px){
    .refresh-button:hover {
        background-color: #f2f2f2;
        color: #404040;
    }
}
/* End */


/* Start:/local/templates/santeam_base/components/bitrix/news.list/brand/style.css?1675233874150*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}

/* End */


/* Start:/local/templates/santeam_base/components/bitrix/menu/footer_bottom_menu/style.min.css?1675233875490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/local/templates/santeam_base/components/bitrix/menu/footer_bottom_menu/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/local/templates/santeam_base/styles.css?173761420316277*/
.catalog-lvl-4__image .lazy-background {
    display: block;
    background-size: contain;
}
.footer-cities1 {
    margin: 47px 0;
        margin-top: 47px;
        margin-right: 0px;
        margin-bottom: 47px;
        margin-left: 0px;
}
.footer-cities1 .footer-cities__block {
    display: block;
    width: 24%;
	float:left;
    vertical-align: top;
    color: #404040;
	height:auto;
	 margin-bottom: 20px;
}
footer .footer-copyrights {
    height: auto;
}
.view_col .catalog-lvl-4__item{
	min-height: 410px;
}
.view_col .catalog-lvl-4__desc {
	min-height: 136px;
}
@media (max-width:900px){
	.footer-cities1 .footer-cities__block {
		display: block;
		width: 48%;
	}
	.view_col .catalog-lvl-4__item {
		display: block;
		width: calc(50% - 20px);
	}
	.goods .owl-stage .owl-item > * {
		width: 100%;
	}
	.modal.in .modal-dialog {
		transform: rotateX(0) translateY(5px);
		opacity: 1;
		margin: 5px auto;
	}
	.modal .input-block {
		margin: 0;
	}
	.modal .login-modal .input-block {
		margin: 30px 0;
	}
	.content.content--catalog4 .sided-holder__left {
		width: 100%;
		max-width: unset;
	}
	.content.content--catalog4 .sided-holder__right {
		margin-top: 0;
	}
	.content.content--catalog4 .sided-holder {
		margin-top: 0;
	}
}
@media (max-width:620px){
	.footer-menu__link a {
		padding: 5px 8px;
		font-size:13px;
	}
}
@media (max-width:495px){
	.footer-menu__link a {
		padding: 5px 5px;
		font-size:12px;
	}
}
@media (max-width:422px){
	.footer-menu__link a {
		padding: 5px 2px;
		font-size:11px;
	}
	.detail-product__custom .detail-product-buy__prices > span {
		font-size: 28px;
	}
}
@media (max-width:376px){
	.footer-menu__link a {
		padding: 5px 1px;
		font-size:10px;
	}
	.detail-product__custom .detail-product-buy__prices > span {
		font-size: 24px;
	}
}
@media (max-width:340px){
	.footer-menu__link a {
		padding: 5px 1px;
		font-size:9px;
	}
	.detail-product__custom .detail-product-buy__prices > span {
		font-size: 22px;
	}
}

@media (max-width:555px){
	.footer-cities1 .footer-cities__block {
		display: block;
		width: 99%;
	}
	.view_col .catalog-lvl-4__item {
		display: block;
		width: calc(100% - 20px);
	}
	.detail-product .sided-holder__left .detail-slider {
		width: 240px;
	}
	.container .detail-product .sided-holder__left {
		width: 99%;
	}
}
@media (max-width:380px){
	.detail-product .sided-holder__left .detail-slider {
		width: 200px;
	}
}
@media (max-width:350px){
		.advantages-blocks {
			margin-left: 0px;
			margin-right: 0px;
		}
}
.owl-carousel .owl-item{
	width: 99%;
}
.owl-carousel .owl-stage{
	display: flex;
}
.tile-product{
	display: flex;
	flex-direction: column;
	height: 100%;
}
.tile-product__bottom{
	margin-top: auto;
}
.catalog-menu {
    margin: 0;
}
.container {
    padding: 20px;
}

.owl-carousel .detail-slider__image img{
    height: auto;
}
.header-mobile-dropdown__list-item .header-mobile-dropdown__icon, .header-mobile-dropdown__list-item .header-mobile-dropdown__link {
    height: 25px;
}
.header-mobile-dropdown__icon {
    height: 35px;
    line-height: 35px;
}
.header-mobile-dropdown__link {
    height: 35px;
}
.container .footer-menu {
    display: block;
}

header .header.fixed {
	height: 110px;
}
.header.fixed .header__top,
.header.fixed .header-mode,
.header .header-fixed__mobile-burger,
.header .header-fixed__search,
.header .header-fixed__search .header-fixed__search-form{
	display: none;
}
.header.fixed .header-logo {
	width: 176px;
	min-width: 176px;
}
.header.fixed .header-fixed__mobile-burger{
	height: 40px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
}
.header-fixed__mobile-burger span {
	width: 40px;
	height: 5px;
	background: #d22233;
	display: block;
	transition: .2s;
	margin: 4px auto;
}
.header-fixed__mobile-burger span:not(:last-child) {
	margin-bottom: 3px;
}
.header-fixed__mobile-burger.header-mobile__burger--open span:not(:last-child){
	margin-bottom: -1px;
}
.header-fixed__mobile-burger.header-mobile__burger--open span:first-child {
	transform: rotate(45deg);
	transform-origin: center;
}
.header-fixed__mobile-burger.header-mobile__burger--open span:nth-child(2) {
	opacity: 0;
}
.header-fixed__mobile-burger.header-mobile__burger--open span:last-child {
	transform: rotate(-45deg);
	transform-origin: center;
	margin-top: -12px;
}
.header.fixed .header-fixed__search{
	display: inline-block;

}
.header-fixed__search-icon{
	width: 40px;
	height: 40px;
	background: url("/local/templates/santeam_base/images/search25.png") no-repeat 6px 6px;
	float: left;
	cursor: pointer;
}
.header-fixed__search.search-on-mode .header-fixed__search-icon{
	background: url("/local/templates/santeam_base/images/close-black25.png") no-repeat 6px 6px;
}
.header-fixed__search-icon.search-on-mode{
	background-position: 6px 6px;
}
.header .header-fixed__left-menu-block .header-mobile-dropdown.header-mobile-dropdown--open{
	display: none;
}
.header.fixed .header-fixed__left-menu-block .header-mobile-dropdown.header-mobile-dropdown--open{
	display: block;
}
.header-fixed__left-menu-block .header-mobile-dropdown {
	width: 360px;
	height: max-content;
	overflow: hidden;
	top: 110px;
	left: auto;
}
.content.content--index.shadow:after,
.main-menu.shadow:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255,255,255,.5);
	z-index: 22;

}
.header-fixed__top-links{
	width: 45%;
    text-align: center;
    margin-right: 8%;
}
.header-fixed__top-links .header-top-links__link{
	display: none;
}
.header_lb_min_price{
	text-align: center;
    color: #e6392a;
    font-size: 13px;
}
.header_links_cont{
	display: flex;
	margin-top: 16px;
}
.header.fixed .header-fixed__search .header-fixed__search-form{
	display: inline-block;
}
.header.fixed .header-fixed__search .header-fixed__search-form.hidden {
	display: none;
}
.header-cities-list.serch-on-mode,
.header-callback.serch-on-mode,
.header-callback-block.search-on-mode .header-fixed__top-links{
	display: none !important;
}
.header.fixed .header-fixed__top-links .header-top-links__link{
	display: inline-block;
}
.header_lb_min_price.note_size { display: none }
@media screen and (max-width: 1350px){
	header .header.fixed {
		height: 140px;
	}
	.header-callback-block .header-fixed__top-links{
		display: none !important;
	}
	.header_links_cont{
		display: none;
	}
	.header_lb_min_price.note_size { display: block }
	.header.fixed .header-callback-block {
		margin-top: -7px;
	}
	.header.fixed .header-callback-block.search-on-mode {
		margin-top: 0;
	}
	.header.fixed .header-fixed__search.search-on-mode {
		width: calc(50% - 100px);
	}
	.header-logo{
		padding-left: 15px;
	}
}
.header-fixed__search.search-on-mode{
	width: calc(100% - 176px - 40px - 489px - 35px - 160px);
}
.header-fixed__search.search-on-mode .header-fixed__search-form{
	width: calc(100% - 50px);
}
.header-callback-block.search-on-mode{
	display: inline-block;
	margin-left: 35px;
}
.header-callback-block.search-on-mode .header-callback-block-btn{
	margin-left: auto;
	margin-top: 0;
}
.header-mobile-dropdown__icon span{
	display: inline-block;
	width: 100%;
	height: 100%;
	background: url("/local/templates/santeam_base/images/shipped20.png") no-repeat 13px 8px;
}
.header-mobile.fixed {
	top: 0;
	z-index: 100;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	box-shadow: 0 5px 14px 0 rgba(0,0,0,.09);
	padding-bottom: 10px;
	height: 110px;
	position: fixed;
	left: 0;
	right: 0;
}
.mobmenu-dops-inner .header-callback-block-btn a {
	padding: 8px 9px;
	width: 180px;
	height: 35px;
	font-size: 11px;
}
.header-mobile-dropdown .header-callback-block-btn .i-icon {
	fill: #d22233;
}
.header-fixed__left-menu .i-icon--small {
	width: 30px;
}
a.header-mobile__btn.mobile_autorization {
	position: absolute;
	top: 0px;
	right: 60px;
	height: 40px;
}
.header-mobile>:not(:last-child) {
	margin-right: 0px;
}
.header-mobile .header-mobile__search {
	margin-right: 5px;
}
.header-mobile__btn {margin-top: 10px}
.phone-incitylist a,
.header-cities-list__item a{
	text-decoration: none;
	color: #404040;
}
.header.fixed .header-callback-block .header-cart__note{
	display: none;
}
.header-fixed__search-form .main-search {
	position: relative;
	width: 100%;
}
#banners-block-home-atg{display: flex;flex-wrap: wrap;justify-content: center;align-items: center}
#banners-block-home-atg .banners-block-atg__item{padding: 90px 0 0 0;background-position: 50% 0;max-width: 210px;text-align: center;height: 180px;margin: 0px auto}
#banners-block-home-atg .banners-block-atg__item:before{display: none;content: none}
#banners-block-home-atg .banners-block-atg__item .banners-block-atg__header{font-size: 18px;font-weight: 600}
#banners-block-home-atg .banners-block-atg__item .banners-block-atg__text{font-size: 13px}
@media(max-width: 1350px) {
	.header-fixed__left-menu-block .header-mobile-dropdown {
		top: 125px;
	}
}
@media screen and (max-width:460px){
	#banners-block-home-atg .banners-block-atg__item{max-width: 270px;padding: 5px 0 0 80px;background-position: 0 10%;height: 110px;}
	#banners-block-home-atg .banners-block-atg__item:nth-child(2){background-position: 13px 10%;}
	#banners-block-home-atg .banners-block-atg__item:nth-child(3){background-position: 9px 10%;}
}
.full-scheme-of-cooperation-block{background-color: #f2f2f2}
#scheme-of-cooperation_title{text-align: center;font-size: 27px}
#scheme-of-cooperation {display: flex;align-items: center;justify-content: center;margin-top: 50px;flex-wrap: wrap}
#scheme-of-cooperation .s-o-cooperation_block{display:flex;flex-direction: row;text-align: center;height: 200px;}
#scheme-of-cooperation .s-o-cooperation_block .s-o-cooperation_step{display: block;width: 160px;background-repeat: no-repeat;background-position: 50% 0px;align-items: center;}
#scheme-of-cooperation .s-o-cooperation_block > .s-o-cooperation_step.soc-step-1{background-image: url('/local/templates/santeam_base/images/scheme-of-cooperation/shopping-list.png');}
#scheme-of-cooperation .s-o-cooperation_block > .s-o-cooperation_step.soc-step-2{background-image: url('/local/templates/santeam_base/images/scheme-of-cooperation/employee.png');}
#scheme-of-cooperation .s-o-cooperation_block > .s-o-cooperation_step.soc-step-3{background-image: url('/local/templates/santeam_base/images/scheme-of-cooperation/agreement.png');}
#scheme-of-cooperation .s-o-cooperation_block > .s-o-cooperation_step.soc-step-4{background-image: url('/local/templates/santeam_base/images/scheme-of-cooperation/documents.png');}
#scheme-of-cooperation .s-o-cooperation_block > .s-o-cooperation_step.soc-step-5{background-image: url('/local/templates/santeam_base/images/scheme-of-cooperation/wallet_64.png');}
#scheme-of-cooperation .s-o-cooperation_block > .s-o-cooperation_step.soc-step-6{background-image: url('/local/templates/santeam_base/images/scheme-of-cooperation/shipped.png');}
#scheme-of-cooperation .s-o-cooperation_block .s-o-cooperation_arrow{background: url('/local/templates/santeam_base/images/scheme-of-cooperation/next_40.png') no-repeat 0 0;display: block;width: 50px;height: 50px;margin-top: 10px;}
#scheme-of-cooperation .s-o-cooperation_block p{margin: 0;font-size: 13px;}
#scheme-of-cooperation .s-o-cooperation_block ul{margin-top: 0;text-align: initial;font-size: 13px;}
#scheme-of-cooperation .s-o-cooperation_block .s-o-cooperation_step b{display: inline-block;margin-top: 70px;font-size: 18px;}
@media screen and (max-width: 770px) {
	#scheme-of-cooperation .s-o-cooperation_block .s-o-cooperation_arrow.soc-arrow-2,
	#scheme-of-cooperation .s-o-cooperation_block .s-o-cooperation_arrow.soc-arrow-4{display: none;	}
}
@media screen and (max-width: 400px){
	#scheme-of-cooperation .s-o-cooperation_block .s-o-cooperation_step{width: 130px}
}
.in-stock-block{display: inline-block}
.in-stock-block span{vertical-align: middle;display: inline-flex;color: #404040}
.in-stock-block span svg{margin-right: 8px;margin-top: 1px;height: 15px}
.in-stock-block span.status-in-stock svg{color:#69c147}
.in-stock-block span.status-out-of-stock{color:#b8b3b3}
.in-stock-block span.status-out-of-stock svg{color:#ebebeb}
#delivery .modal-delivery-box{text-align:left}
.product-discount-text{display: block;text-align: right;font-size: 12px;color: #d22233;}
.detail-product-heading-container{padding-bottom: 0}
.detail-product-heading-container,
.detail-product-heading-container .page-heading{margin-top: 0px;margin-bottom: 0px}
.fast-view-buy-block{display: flex;justify-content: space-around;vertical-align: middle; height: 40px;margin-top: 15px;}
.fast-view-buy-block .buyoneclick{color: #d22233;margin-top: 10px;}
.fast-view-buy-block .detail-product-count{height: 30px}
.fast-view-buy-block .btn.incart,
.fast-view-buy-block .btn.btn--buy{height: 31px;padding: 5px 15px;}
.fast-view-buy-block .detail-product-count .detail-product-count__btn,
.fast-view-buy-block .detail-product-count .detail-product-count__input {width: 31px; height: 31px}
.fast-view-buy-block .detail-product-count .detail-product-count__input {font-size: 14px;}
.fast-view-buy-block .detail-product-count .detail-product-count__btn{}
.fast-view-buy-block .detail-product-count__btn--minus:before, .detail-product-count__btn--plus:after, .detail-product-count__btn--plus:before{width: 11px}
@media screen and (max-width: 413px) {
	.fast-view-buy-block .detail-product-count .detail-product-count__btn,
	.fast-view-buy-block .detail-product-count .detail-product-count__input {width: 20px; height: 20px}
	.fast-view-buy-block .detail-product-count .detail-product-count__input {font-size: 12px;}
	.fast-view-buy-block .btn.incart,
	.fast-view-buy-block .btn.btn--buy{height: 25px;padding: 2px 5px;font-size:12px}
	.fast-view-buy-block .buyoneclick{margin-top: 5px;font-size: 12px}
}

@media (max-width:390px){
	.catalog-lvl-4 .catalog-lvl-4__prices span.smes{
		font-size: 18px;
	}

	.catalog-lvl-4 .catalog-lvl-4__item div.smes_parent{
		font-size: 18px;
	}
}

@media (max-width:350px) {
	.catalog-lvl-4__prices{
		display: flex;
		flex-wrap: wrap;
	}
}

.often-search__block {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.tags-subtitle {
	margin-top: 15px;
}

.often-search__title {
	margin-bottom: 20px;
	font-size: 20px;
}

.often-search__show {
	display: none;
}

.show-svg {
	width: 12px;
	height: 12px;
}

.list-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.often-search__block.wrapper {
	margin: 0;
}

	.long.often-search__block {
		max-height: 140px;
		overflow: hidden;
		transition: max-height 0.3s linear;
	}

	.long.often-search__block + .often-search__show {
		margin-top: 15px;
		width: fit-content;
		padding: 5px 0;
		border-bottom: 1px dashed #224877;
		gap: 10px;
		align-items: center;
		display: flex;
	}

	.often-search__show {
		cursor: pointer;
	}

.often-search__tag {
	font-size: 13px;
	margin-bottom: 10px;
	border-radius: 4px;
	border: 1px solid #dfdfdf;
	position: relative;
	transition: .3s;
	padding: 8px 18px;
}

.often-search__tag a{
	text-decoration: none;
	color:#404040;
}

.often-search__tag:hover {
	cursor: pointer;
}

.often-search__block .tags-subtitle{
	font-size: 16px;
	font-weight: 550;
	padding-bottom: 1rem;
}

.header-mobile_cart{
	position: relative;
}
#catalog_main_menu:hover > .catalog-menu-dropdown{
	display: block;
}

.block_inner_products{
	padding-left: 20px;
	margin: 40px 0;
}
.block_inner_products .news-list-products{
	margin: 20px 0;
}
.block_inner_products .news-list-products .slider-nav--left,
.news_content_prod .slider-nav--left{
	left: -20px;
}
.block_inner_products .news-list-products .slider-nav--right,
.news_content_prod .slider-nav--right{
	right: -20px;
}
.news_content_prod{
	margin: 20px 20px;
}
.news_content_prod ul li:before{
	content: none;
}
.news_content_prod ul li {
    padding-left: 0;
    margin: 0 0 10px 0;
}
.news_content_prod ul {
    margin: 12px 0;
}
.news_content_prod .tile-product__bottom.table-emulate > .tile-product__buttons .btn {
    line-height: 17px;
}
.news_content_prod .tile-product__bottom.table-emulate{
	margin-bottom: 3px;
}
@media (max-width: 960px) {
    .block_inner_products{
		padding-left: 0;
	}
	.block_inner_products .news-list-products .owl-item>*,
	.news_content_prod .owl-item>* {
        width: auto;
    }
}
.main-slider{
	margin-bottom: 2rem;
}
/* End */
/* /local/templates/santeam_base/template_styles.css?1745217068252952 */
/* /local/templates/santeam_base/css/custom.css?174712524523444 */
/* /local/templates/santeam_base/components/bitrix/menu/header_top_menu/style.min.css?1675233875561 */
/* /local/templates/santeam_base/components/bitrix/menu/header_fixed_menu/style.min.css?1675233875490 */
/* /local/templates/santeam_base/components/bitrix/sale.basket.basket.line/.default/style.css?16752338755243 */
/* /local/templates/santeam_base/components/bitrix/menu/header_mobile_menu/style.min.css?1675233875490 */
/* /local/templates/santeam_base/components/bitrix/sale.basket.basket.line/mobile/style.css?1726137549258 */
/* /local/templates/santeam_base/components/bitrix/breadcrumb/nav/style.min.css?1675233875448 */
/* /local/components/studiofact/form.ajax/templates/feedback_price/style.css?1716453805837 */
/* /local/templates/santeam_base/components/bitrix/news.list/brand/style.css?1675233874150 */
/* /local/templates/santeam_base/components/bitrix/menu/footer_bottom_menu/style.min.css?1675233875490 */
/* /local/templates/santeam_base/styles.css?173761420316277 */
