

/* Start:/local/templates/uyutnosti/css/animate.css?173916879257095*/
@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

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

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

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

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

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

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

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

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

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

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

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

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

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

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

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

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

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

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

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

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

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

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

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

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

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

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

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

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

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

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

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

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

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

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

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

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

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* End */


/* Start:/local/templates/uyutnosti/css/owl.carousel.min.css?17391687923351*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(/local/templates/uyutnosti/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/* End */


/* Start:/local/templates/uyutnosti/css/owl.theme.default.min.css?17391687921013*/
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
/* End */


/* Start:/local/templates/uyutnosti/css/jquery.fancybox.min.css?173916879212795*/
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}
/* End */


/* Start:/local/templates/uyutnosti/css/nouislider.min.css?17391687924220*/
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}
/* End */


/* Start:/local/templates/uyutnosti/css/nice-select.min.css?17391687923117*/
.nice-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:1px solid #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.nice-select:hover{border-color:#dbdbdb}.nice-select.open,.nice-select:active,.nice-select:focus{border-color:#999}.nice-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.nice-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.nice-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.nice-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.nice-select.disabled:after{border-color:#ccc}.nice-select.wide{width:100%}.nice-select.wide .list{left:0!important;right:0!important}.nice-select.right{float:right}.nice-select.right .list{left:auto;right:0}.nice-select.small{font-size:12px;height:36px;line-height:34px}.nice-select.small:after{height:4px;width:4px}.nice-select.small .option{line-height:34px;min-height:34px}.nice-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.nice-select .list:hover .option:not(:hover){background-color:transparent!important}.nice-select .option{cursor:pointer;font-weight:400;line-height:40px;list-style:none;min-height:40px;outline:0;padding-left:18px;padding-right:29px;text-align:left;-webkit-transition:all .2s;transition:all .2s}.nice-select .option.focus,.nice-select .option.selected.focus,.nice-select .option:hover{background-color:#f6f6f6}.nice-select .option.selected{font-weight:700}.nice-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .nice-select .list{display:none}.no-csspointerevents .nice-select.open .list{display:block}/*# sourceMappingURL=nice-select.min.css.map */
/* End */


/* Start:/local/templates/uyutnosti/css/uyutnosti.ru_styles.css?1744813680466083*/
@font-face{font-family:'Vela Sans';src:local('Vela Sans Regular'),local('Vela-Sans-Regular'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Regular.woff2') format('woff2'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Regular.woff') format('woff'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Regular.ttf') format('truetype');font-weight:400;font-style:normal}@font-face{font-family:'Vela Sans';src:local('Vela Sans Medium'),local('Vela-Sans-Medium'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Medium.woff2') format('woff2'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Medium.woff') format('woff'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Medium.ttf') format('truetype');font-weight:500;font-style:normal}@font-face{font-family:'Vela Sans';src:local('Vela Sans Bold'),local('Vela-Sans-Bold'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Bold.woff2') format('woff2'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Bold.woff') format('woff'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-Bold.ttf') format('truetype');font-weight:600;font-style:normal}@font-face{font-family:'Vela Sans';src:local('Vela Sans SemiBold'),local('Vela-Sans-SemiBold'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-SemiBold.woff2') format('woff2'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-SemiBold.woff') format('woff'),url('/local/templates/uyutnosti/css/../fonts/Vela Sans/VelaSans-SemiBold.ttf') format('truetype');font-weight:700;font-style:normal}.color_1{color:#c6a663}@-webkit-keyframes shake{25%{-webkit-transform:translate(4px);transform:translate(4px)}50%{-webkit-transform:translate(-4px);transform:translate(-4px)}75%{-webkit-transform:translate(4px);transform:translate(4px)}}@keyframes shake{25%{-webkit-transform:translate(4px);transform:translate(4px)}50%{-webkit-transform:translate(-4px);transform:translate(-4px)}75%{-webkit-transform:translate(4px);transform:translate(4px)}}.switcher_el{width:38px;height:21px;border-radius:22px !important;background:#e3edf3;position:relative;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.switcher_el.active{background:#a4493d}.switcher_el.active span{left:19px}.switcher_el span{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;width:17px;height:17px;top:2px;left:2px;background:#fff;border-radius:50%;position:absolute;display:block}body{margin:0;font-family:Vela Sans;font-size:14px;font-style:normal;font-weight:400;line-height:normal;color:#33333d;background:#fff}a{color:#33333d}.bold{font-weight:600}input{outline:none;color:#33333d;font-family:Vela Sans;font-size:14px;font-style:normal;font-weight:400;line-height:normal}input::-webkit-input-placeholder{color:#7e8b91}p{margin-top:0}*{-webkit-box-sizing:border-box;box-sizing:border-box}.h2{color:#33333d;font-size:40px;line-height:120%;display:block;font-weight:400;margin:0 0 30px 0}@media (max-width:1180px){.h2{font-size:36px;margin:0 0 17px 0}}@media (max-width:767px){.h2{font-size:24px;margin:0 0 12px 0}}input{color:#33333d;font-family:Vela Sans;font-size:14px;font-style:normal;font-weight:400;line-height:normal}.to_wish_list{background-image:url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.008 4.333c3.434 0 5.742 3.229 5.742 6.24 0 6.1-9.577 11.094-9.75 11.094-.173 0-9.75-4.995-9.75-11.094 0-3.011 2.308-6.24 5.742-6.24 1.971 0 3.26.986 4.008 1.853.748-.867 2.037-1.853 4.008-1.853Z' stroke='%2333333D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}.old_price{position:relative}.old_price::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='8' fill='none'%3E%3Cpath d='M.049 1h37.15c1.087 0 1.26 1.561.2 1.8l-10.7 2.4c-1.061.239-.888 1.8.199 1.8h37.15' stroke='%23A4493D' stroke-width='1.301'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;display:block;position:absolute;width:100%;height:100%;top:0;left:0}section,header,footer{width:100%;display:table;margin:0 0 65px 0}@media (max-width:1600px){section,header,footer{margin:0 0 65px 0}}@media (max-width:1080px){section,header,footer{margin:0 0 32px 0}}@media (max-width:680px){section,header,footer{margin:0 0 16px 0}}section>.content,header>.content,footer>.content{display:table;margin:0 auto;width:100%;max-width:1384px;position:relative}@media (max-width:1480px){section>.content,header>.content,footer>.content{margin:0 48px;max-width:calc(100% - 96px)}}@media (max-width:1220px){section>.content,header>.content,footer>.content{margin:0 20px;max-width:calc(100% - 40px)}}@media (max-width:680px){section>.content,header>.content,footer>.content{margin:0 16px;max-width:calc(100% - 32px)}}section>.content section>.content{width:100%;max-width:100%;margin:0}.owl-wrapper{table-layout:fixed;display:table;width:100%;position:relative}body>.top_banner{width:100%;line-height:31px;text-align:center;color:#fff;font-size:14px;background:#444545;font-weight:500}body>.top_banner a{color:#fff;text-decoration:underline}body>.top_banner a:hover{text-decoration:none}body>.top_banner .link{text-decoration:underline;cursor:pointer}body>.top_banner .link:hover{text-decoration:none}header{margin:0 0 32px 0}@media (max-width:1180px){header{margin:0 0 15px 0}}@media (max-width:767px){header{margin:0 0 8px 0}}header>.content .line{display:table;width:100%}header>.content .line.n1{padding:16px 0}@media (max-width:1180px){header>.content .line.n1{padding:0}}header>.content .line.n1 .column_1{width:237px;float:left}header>.content .line.n1 .column_2{float:right;width:222px}@media (max-width:1180px){header>.content .line.n1 .column_2{display:none}}header>.content .line.n1 .choose_city{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1180px){header>.content .line.n1 .choose_city{position:absolute;top:44px}}@media (max-width:767px){header>.content .line.n1 .choose_city{left:calc(50% + 16px);top:16px}}header>.content .line.n1 .choose_city i.location{background-image:url(/local/templates/uyutnosti/images/ico/location.svg);background-position:50%;background-repeat:no-repeat;width:16px;height:16px;margin:0 8px 0 0;display:block}@media (max-width:1180px){header>.content .line.n1 .choose_city i.location{margin:0 3px 0 0}}header>.content .line.n1 .choose_city .name{color:#7e8b91;font-size:12px;cursor:pointer;display:block}header>.content .line.n1 .choose_city i.arrow{background-image:url(/local/templates/uyutnosti/images/ico/arrow.svg);background-position:50%;background-repeat:no-repeat;width:16px;height:16px;display:block}header>.content .line.n1 nav{float:left}@media (max-width:1180px){header>.content .line.n1 nav{display:none}}header>.content .line.n1 nav ul{margin:0;padding:0;list-style:none}header>.content .line.n1 nav ul li{float:left}header>.content .line.n1 nav ul li a{color:#7e8b91;font-size:12px;display:block;float:left;text-decoration:none;margin:0 28px 0 0}header>.content .line.n1 nav ul li a:hover{text-decoration:underline}header>.content .line.n1 .time{float:left;color:#7e8b91;font-size:12px;margin:0 18px 0 0}header>.content .line.n1 .phone{float:left;color:#7e8b91;font-size:12px;text-decoration:none}header>.content .line.n1 .phone:hover{text-decoration:underline}header>.content .line.n1 .call_callback_form{cursor:pointer;text-decoration:underline;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header>.content .line.n1 .call_callback_form:hover{text-decoration:none}header>.content .line.n2{padding:14px 0 0 0}@media (max-width:1180px){header>.content .line.n2{padding:23px 0 0 0}}@media (min-width:768px) and (max-width:1180px){header>.content .line.n2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}@media (max-width:767px){header>.content .line.n2{padding:16px 0 0 0}}header>.content .line.n2 .logo{float:left;display:table;margin:0 33px 0 0}@media (max-width:1180px){header>.content .line.n2 .logo{margin:0 20px 0 0}}header>.content .line.n2 .logo img{float:left;margin:10.5px 0}@media (max-width:1180px){header>.content .line.n2 .logo img{width:153px;display:block;margin:0 0 0 0}}header>.content .line.n2 .contacts_block{display:none}@media (max-width:767px){header>.content .line.n2 .contacts_block{display:block}}header>.content .line.n2 .contacts_block.active .contacts_block_call svg{opacity:0}header>.content .line.n2 .contacts_block.active .contacts_block_call span{opacity:1}header>.content .line.n2 .contacts_block.active .contacts_block_call span:nth-child(1){-webkit-transform:rotate(45deg);transform:rotate(45deg);margin-top:-1px;top:50%}header>.content .line.n2 .contacts_block.active .contacts_block_call span:nth-child(2){opacity:0}header>.content .line.n2 .contacts_block.active .contacts_block_call span:nth-child(3){-webkit-transform:rotate(-45deg);transform:rotate(-45deg);margin-top:-1px;top:50%}header>.content .line.n2 .contacts_block.active .contacts_block_list{display:block;position:absolute;z-index:6;background:#fff;right:0;top:48px;padding:15px 0;-webkit-box-shadow:0 0 2px 1px rgba(0,0,0,0.1);box-shadow:0 0 2px 1px rgba(0,0,0,0.1)}header>.content .line.n2 .contacts_block.active .contacts_block_list .el a,header>.content .line.n2 .contacts_block.active .contacts_block_list .el span{line-height:30px;padding:0 25px;display:block}header>.content .line.n2 .contacts_block .contacts_block_call{float:right;position:absolute;right:0;top:9px;cursor:pointer;width:30px;height:30px;background:#a4493d;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}header>.content .line.n2 .contacts_block .contacts_block_call svg{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header>.content .line.n2 .contacts_block .contacts_block_call span{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;opacity:0;display:block;position:absolute;width:27px;height:3px;background:#fff;width:21px;height:2px;border-radius:1px;left:5px}header>.content .line.n2 .contacts_block .contacts_block_call span:nth-child(1){top:8px}header>.content .line.n2 .contacts_block .contacts_block_call span:nth-child(2){top:18px}header>.content .line.n2 .contacts_block .contacts_block_call span:nth-child(3){top:28px}header>.content .line.n2 .contacts_block .contacts_block_list{display:none}header>.content .line.n2 .show_catalog_menu{display:-webkit-box;display:-ms-flexbox;display:flex;width:126px;height:44px;padding:10px 16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:22px;background:#a4493d;color:#fff;font-size:16px;font-weight:500;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;cursor:pointer;margin:0 6px 0 0;float:left}@media (max-width:1180px){header>.content .line.n2 .show_catalog_menu{width:109px;height:35px;font-size:14px;margin:0 8px 0 0}}@media (max-width:767px){header>.content .line.n2 .show_catalog_menu{display:none}}header>.content .line.n2 .show_catalog_menu:hover{color:#33333d;background:#f2f2f2}header>.content .line.n2 .show_catalog_menu:hover svg.close path{stroke:#33333d}header>.content .line.n2 .show_catalog_menu:hover svg path{fill:#33333d;stroke:#33333d}header>.content .line.n2 .show_catalog_menu.active .ico svg.base{display:none}header>.content .line.n2 .show_catalog_menu.active .ico svg.close{display:block}header>.content .line.n2 .show_catalog_menu .ico{height:24px;width:24px}@media (max-width:1180px){header>.content .line.n2 .show_catalog_menu .ico{width:18px;height:18px}}header>.content .line.n2 .show_catalog_menu svg{width:100%;height:100%}header>.content .line.n2 .show_catalog_menu svg.close{display:none;-webkit-transform:scale(1.5);transform:scale(1.5)}header>.content .line.n2 .show_catalog_menu svg.close path{stroke:#fff}header>.content .line.n2 .show_catalog_menu svg path{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;fill:#33333d}header>.content .line.n2 .show_catalog_menu .text{margin:0 0 0 8px}header>.content .line.n2 .show_rooms_menu{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;width:131px;height:44px;padding:10px 0;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:22px;background:#f2f2f2;font-size:16px;font-weight:500;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;cursor:pointer;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;display:none}@media (max-width:1180px){header>.content .line.n2 .show_rooms_menu{width:113px;height:35px;font-size:14px}}@media (max-width:767px){header>.content .line.n2 .show_rooms_menu{display:none}}header>.content .line.n2 .show_rooms_menu:hover{color:#fff;background:#a4493d}header>.content .line.n2 .show_rooms_menu:hover svg.close path{stroke:#fff}header>.content .line.n2 .show_rooms_menu:hover svg path{fill:#fff}header>.content .line.n2 .show_rooms_menu.active .ico svg.base{display:none}header>.content .line.n2 .show_rooms_menu.active .ico svg.close{display:block}header>.content .line.n2 .show_rooms_menu .ico{height:24px;width:24px}@media (max-width:1180px){header>.content .line.n2 .show_rooms_menu .ico{width:18px;height:18px}}header>.content .line.n2 .show_rooms_menu svg{width:100%;height:100%}header>.content .line.n2 .show_rooms_menu svg.close{display:none;-webkit-transform:scale(1.5);transform:scale(1.5)}header>.content .line.n2 .show_rooms_menu svg.close path{stroke:#33333d}header>.content .line.n2 .show_rooms_menu svg path{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;fill:#33333d}header>.content .line.n2 .show_rooms_menu .text{margin:0 0 0 8px}header>.content .line.n2 .search_block{float:left;display:table;position:relative;margin:0 35px 0 46px;width:calc(100% - 237px - 222px - 257px - 46px - 36px - 5px);width:calc(100% - 237px - 222px - 257px - 46px - 36px - 5px + 131px)}@media (max-width:1180px){header>.content .line.n2 .search_block{margin:0 25px 0 8px;width:calc(100% - 632px);width:calc(100% - 632px + 113px)}}@media (max-width:767px){header>.content .line.n2 .search_block{width:100%;margin:15px 0 8px 0}}header>.content .line.n2 .search_block.active form{z-index:4}header>.content .line.n2 .search_block form{position:relative}header>.content .line.n2 .search_block form input{border-radius:22px;border:1px solid #f2f2f2;height:44px;padding:0 24px 0 45px;width:100%}@media (max-width:1180px){header>.content .line.n2 .search_block form input{height:30px;font-size:12px;padding:0 12px 0 29px}}header>.content .line.n2 .search_block form .search_close{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='m8 8 8 8M16 8l-8 8' stroke='%23C2D4DD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");cursor:pointer;position:absolute;width:24px;height:24px;right:12px;top:50%;margin:-12px 0 0 0;opacity:0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header>.content .line.n2 .search_block form .search_close.active{opacity:1}header>.content .line.n2 .search_block form button{cursor:pointer;border:none;padding:0;background:none;width:24px;height:24px;position:absolute;left:12px;top:10px}@media (max-width:1180px){header>.content .line.n2 .search_block form button{width:18px;height:18px;left:7px;top:5px}}@media (max-width:1180px){header>.content .line.n2 .search_block form button svg{width:18px;height:18px}}header>.content .line.n2 .search_block .search_results_wrapper{display:none}header>.content .line.n2 .search_block .search_results_wrapper.active{display:block;position:absolute;top:0;left:0;background:#fff;border-radius:22px;width:calc(100% + 40px);margin:-20px -20px 0 -20px;z-index:3;padding:82px 20px 20px 20px}header>.content .line.n2 .search_block .search_results_wrapper .content .text{color:#7e8b91;font-size:12px;display:block}header>.content .line.n2 .search_block .search_results_wrapper .content .others_result{display:none}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;margin:0 0 8px 0;text-decoration:none;cursor:pointer}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .image{width:58px;height:58px;float:left;margin:0 12px 0 0;background-position:50%;background-repeat:no-repeat;background-size:contain;position:relative}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .image.empty{background:rgba(201,201,201,0.19);border-radius:8px}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .image .label{position:absolute;left:0;bottom:0;display:block;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%2333333D'/%3E%3C/svg%3E");background-size:100% 100%;padding:2px 9px 2px 5px;color:#fff;font-size:8px}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .text{color:#7e8b91;font-size:12px;display:block;width:calc(100% - 70px - 160px);float:left}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .title{color:#33333d;display:block;margin:0 0 4px 0}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr{margin:4px 0 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr{margin:3px 0 0 0}}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .raiting{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .raiting .star{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' fill='none'%3E%3Cpath d='m6.5 0 1.834 3.67 4.348.476L9.467 6.89l.854 3.964L6.5 8.88l-3.82 1.974.853-3.964L.318 4.146l4.348-.476L6.5 0Z' fill='%23A4493D'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;display:block;width:13px;height:12px}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .raiting .count{color:#33333d;font-size:12px;font-weight:500;margin:0 0 0 6px}@media (max-width:767px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .raiting .count{font-size:10px}}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .reviews{color:#7e8b91;text-decoration:none;font-size:12px;font-weight:500;float:left;display:block}@media (max-width:767px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .reviews{font-size:10px}}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .rr .reviews a{color:#7e8b91;text-decoration:none}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:right;-webkit-box-pack:right;-ms-flex-pack:right;justify-content:right;width:160px}@media (max-width:767px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block{margin:0 5px}}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block .price{float:left;font-size:20px}@media (max-width:1180px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block .price{font-size:16px}}@media (max-width:767px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block .price{font-size:12px}}header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block .old_price{float:left;color:#929292;font-size:14px;margin:0 0 0 7.5px}@media (max-width:1180px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block .old_price{font-size:12px}}@media (max-width:767px){header>.content .line.n2 .search_block .search_results_wrapper .content .goods .el .price_block .old_price{margin:0 0 0 1.75px;font-size:10px}}header>.content .line.n2 .search_block .search_results_wrapper .content .show_all{display:table;margin:0 auto;border-radius:18px;border:1.5px solid #a4493d;padding:8px 16px;color:#a4493d;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;text-decoration:none}header>.content .line.n2 .search_block .search_results_wrapper .content .show_all:hover{background:#a4493d;color:#fff}header>.content .line.n2 .buttons{float:left}@media (max-width:767px){header>.content .line.n2 .buttons{position:fixed;bottom:0;left:0;width:100%;z-index:10;border-radius:12px 12px 0 0;background:#fff;-webkit-box-shadow:0 -4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 -4px 11px 0 rgba(51,51,61,0.1);height:62px;padding:8px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}header>.content .line.n2 .buttons>div{position:relative}header>.content .line.n2 .buttons>*{float:left;text-decoration:none;width:64px;margin:0 5px}@media (max-width:1180px){header>.content .line.n2 .buttons>*{width:55px;width:65px;margin:0}}header>.content .line.n2 .buttons>*>a{text-decoration:none}header>.content .line.n2 .buttons>*.basket .ico .count{color:#33333d;background:#daeaf2}@media (min-width:768px){header>.content .line.n2 .buttons>*.mob{display:none}}@media (max-width:767px){header>.content .line.n2 .buttons>*.unmob{display:none}}header>.content .line.n2 .buttons>* .ico{position:relative;margin:0 0 2px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:32px}@media (max-width:1180px){header>.content .line.n2 .buttons>* .ico{height:28px;width:100%}}header>.content .line.n2 .buttons>* .ico svg{float:left}header>.content .line.n2 .buttons>* .ico .count{position:absolute;width:18px;height:18px;border-radius:50%;font-size:10px;font-weight:700;text-align:center;top:0;right:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;background:#a4493d}header>.content .line.n2 .buttons>* .text{color:#33333d;font-size:12px;text-decoration:none;text-align:center;width:100%;display:block}@media (max-width:1180px){header>.content .line.n2 .buttons>* .text{font-size:10px}}header>.content .line.n2 .buttons .lk_block{display:none;border-radius:22px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);padding:20px;position:absolute;margin:0 0 0 0;width:206px;z-index:3}header>.content .line.n2 .buttons .lk_block.active{display:table;left:50%;margin:15px 0 0 -103px}@media (max-width:767px){header>.content .line.n2 .buttons .lk_block.active{margin:0 0 0 -103px;bottom:62px}}header>.content .line.n2 .buttons .lk_block .name{font-size:14px;font-weight:700;display:block;float:left}header>.content .line.n2 .buttons .lk_block .exit{color:#7e8b91;font-family:"Vela Sans";font-size:12px;-webkit-text-decoration-line:underline;text-decoration-line:underline;display:block;float:right;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header>.content .line.n2 .buttons .lk_block .exit:hover{text-decoration:none}header>.content .line.n2 .buttons .lk_block .phone{display:table;float:left;width:100%;color:#33333d;font-size:12px;margin:9px 0 0 0}header>.content .line.n2 .buttons .lk_block .email{display:table;float:left;width:100%;color:#33333d;font-size:12px}header>.content .line.n2 .buttons .lk_block .personal_menu{margin:0;padding:0;list-style:none;display:table;width:100%;margin:16px 0 0 0;float:left}header>.content .line.n2 .buttons .lk_block .personal_menu li{margin:0 0 6px 0;display:table;width:100%}header>.content .line.n2 .buttons .lk_block .personal_menu li:last-child{margin:0}header>.content .line.n2 .buttons .lk_block .personal_menu li a{margin:0;font-size:12px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;text-decoration:none;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header>.content .line.n2 .buttons .lk_block .personal_menu li a:hover{text-decoration:underline;color:#33333d}header>.content .line.n2 .buttons .lk_block .personal_menu li a[href="/personal/"] i,header>.content .line.n2 .buttons .lk_block .personal_menu li a[href="/personal/private/"] i{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cpath d='M2.25 9a6.75 6.75 0 1 1 13.5 0M15.75 9A6.75 6.75 0 0 1 9 15.75 6.75 6.75 0 0 1 2.25 9M6.375 6.75v.75M11.625 6.75v.75' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.625 11.016S10.64 12 9 12c-1.641 0-2.625-.984-2.625-.984' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}header>.content .line.n2 .buttons .lk_block .personal_menu li a[href="/personal/loyalty/"] i{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cpath d='M6.605 14.783H4.853a1.636 1.636 0 0 1-1.635-1.636v-1.074c0-.434-.173-.85-.48-1.157l-.76-.76a1.635 1.635 0 0 1 0-2.313l.76-.76c.307-.306.48-.721.48-1.156V4.853c0-.903.732-1.635 1.635-1.635h1.074c.434 0 .85-.173 1.157-.48l.76-.76a1.635 1.635 0 0 1 2.312 0l.76.76c.307.307.723.48 1.157.48h1.074c.903 0 1.636.732 1.636 1.635v1.074c0 .434.172.85.479 1.157l.76.76a1.635 1.635 0 0 1 0 2.312l-.76.76c-.307.307-.48.723-.48 1.157v1.074c0 .903-.732 1.636-1.635 1.636h-1.074c-.434 0-.85.172-1.157.479l-.76.76a1.635 1.635 0 0 1-2.312 0l-1.24-1.24ZM6.75 11.25l4.5-4.5' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M6.937 6.75a.188.188 0 1 0 .002.375.188.188 0 0 0-.002-.375ZM11.062 10.875a.188.188 0 1 0 .002.375.188.188 0 0 0-.002-.375Z' fill='%23323232' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}header>.content .line.n2 .buttons .lk_block .personal_menu li a[href="/personal/2/"] i{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' fill='none'%3E%3Cpath d='M2.25 3.25H1.5M3 1H1.5M12.75 13H2.25M12.956 1l-.74 2.465a.751.751 0 0 1-.718.535H9.164a.75.75 0 0 1-.718-.965L9.056 1M6 7.75h1.598' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.079 10H5.136a1.8 1.8 0 0 1-1.724-2.317l1.62-5.4A1.8 1.8 0 0 1 6.757 1H14.7a1.8 1.8 0 0 1 1.725 2.317l-1.62 5.4A1.801 1.801 0 0 1 13.078 10Z' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}header>.content .line.n2 .buttons .lk_block .personal_menu li a[href="/personal/orders/"] i{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='17' fill='none'%3E%3Cpath d='m12.546 6.75-.103-1.55a.749.749 0 0 0-.748-.7H2.6a.75.75 0 0 0-.749.7l-.596 8.95a1.5 1.5 0 0 0 1.496 1.6h3' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath clip-rule='evenodd' d='M14 15.75H8.937a.75.75 0 0 1-.75-.75v-2.719a.75.75 0 0 1 .75-.75H14a.75.75 0 0 1 .75.75V15a.75.75 0 0 1-.75.75Z' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.519 11.535c.415 0 1.273-.135 1.818-.704a1.107 1.107 0 0 0 0-1.518.997.997 0 0 0-1.454 0c-.614.642-.364 2.222-.364 2.222Z' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.418 11.535c-.415 0-1.272-.135-1.817-.704a1.107 1.107 0 0 1 0-1.518.997.997 0 0 1 1.453 0c.614.642.364 2.222.364 2.222ZM4.896 6V3.75a2.25 2.25 0 1 1 4.5 0V6' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}header>.content .line.n2 .buttons .lk_block .personal_menu li a i{width:18px;height:18px;margin:0 9px 0 0;display:inline-block;background-position:50%;background-repeat:no-repeat}header>.content .line.n3{height:54px}@media (max-width:1180px){header>.content .line.n3{display:none}}header>.content .line.n3 nav{margin:25px 0 0 0;position:relative}header>.content .line.n3 nav ul{margin:0;padding:0;list-style:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:calc(100% - 192px - 35px);width:100%}@media (max-width:1380px){header>.content .line.n3 nav ul{width:calc(100% - 122px - 35px);width:100%}}@media (max-width:1180px){header>.content .line.n3 nav ul{width:100%}}header>.content .line.n3 nav ul li{float:left;display:block}header>.content .line.n3 nav ul li a{display:table;float:left;text-decoration:none;color:#33333d;padding-bottom:10px;position:relative}header>.content .line.n3 nav ul li a[href="/catalog/sale/"]{color:#a4493d}header>.content .line.n3 nav ul li a.active::after{content:" ";width:100%;bottom:0;height:3px;left:0;background:#a4493d;position:absolute;display:block}header>.content .line.n3 nav ul li a .ico{float:left;margin:0 8px 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:18px;height:18px;position:relative}header>.content .line.n3 nav ul li a .ico img{position:absolute}header>.content .menu{display:none}header>.content .menu.active{display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);position:absolute;width:100%;z-index:3;padding:44px 40px 40px 40px}@media (max-width:1180px){header>.content .menu.active{padding:24px 25px 31px 25px}}@media (max-width:767px){header>.content .menu.active{padding:16px;position:fixed;width:100%;left:0;border-radius:0;height:calc(100% - 84px - 52px);top:84px;overflow-y:scroll}}header>.content .menu .to_back{display:none}header>.content .menu .column.n1{width:250px}@media (max-width:767px){header>.content .menu .column.n1{width:calc(50% - 2.5px);margin:0 5px 0 0}}header>.content .menu .column.n1 .switchers a,header>.content .menu .column.n1 .switchers span{cursor:pointer;text-decoration:none;display:table;border-radius:18px;border:1.5px solid #7e8b91;color:#7e8b91;margin:0 0 9px 0;padding:8px 16px;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){header>.content .menu .column.n1 .switchers a,header>.content .menu .column.n1 .switchers span{margin:0 0 12px 0;border-radius:18px;padding:4px 8px;font-size:11px}}header>.content .menu .column.n1 .switchers a.active,header>.content .menu .column.n1 .switchers span.active{border:1.5px solid #a4493d;color:#a4493d}header>.content .menu .column.n1 .switchers a:hover,header>.content .menu .column.n1 .switchers span:hover{border:1.5px solid #a4493d;color:#a4493d}header>.content .menu .column.n1 .switchers a:last-child,header>.content .menu .column.n1 .switchers span:last-child{margin:0}header>.content .menu .column.n1 .switchers a .image,header>.content .menu .column.n1 .switchers span .image{display:none}header>.content .menu .column.n2{width:calc(100% - 250px)}@media (min-width:992px){header>.content .menu .column.n2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}}@media (min-width:768px) and (max-width:991px){header>.content .menu .column.n2{padding-left:40px}}@media (max-width:767px){header>.content .menu .column.n2{width:calc(50% - 2.5px);display:table}}header>.content .menu .column.n2 .categories{width:calc(100% - 240px)}@media (max-width:1180px){header>.content .menu .column.n2 .categories{width:calc(100% - 188px)}}@media (min-width:768px) and (max-width:991px){header>.content .menu .column.n2 .categories{width:calc(100% + 40px);margin-left:-40px;position:relative}}@media (max-width:767px){header>.content .menu .column.n2 .categories{width:100%}}header>.content .menu .column.n2 .categories>div{display:none}header>.content .menu .column.n2 .categories>div.active{display:table;width:100%}header>.content .menu .column.n2 .categories>div ul{list-style:none;margin:0;padding:0;margin:0 40px}@media (max-width:767px){header>.content .menu .column.n2 .categories>div ul{margin:0}}header>.content .menu .column.n2 .categories>div ul li{display:table}header>.content .menu .column.n2 .categories>div ul li.to_all{display:none}@media (max-width:767px){header>.content .menu .column.n2 .categories>div ul li.to_all{display:table}}header>.content .menu .column.n2 .categories>div ul li.to_all a{padding:0 !important;font-weight:500 !important;font-size:16px !important;line-height:40px !important}header>.content .menu .column.n2 .categories>div ul li a{color:#33333d;display:table;text-decoration:none;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header>.content .menu .column.n2 .categories>div ul li a:hover{text-decoration:underline}header>.content .menu .column.n2 .categories>div ul li a .image{display:none}@media (min-width:768px){header>.content .menu .column.n2 .categories>div>ul{-webkit-column-count:2;column-count:2;-webkit-column-gap:30px;column-gap:30px}}header>.content .menu .column.n2 .categories>div>ul>li{margin:0 0 10px 0;-webkit-column-break-inside:avoid;break-inside:avoid}@media (max-width:767px){header>.content .menu .column.n2 .categories>div>ul>li{margin:0 0 8px 0}}header>.content .menu .column.n2 .categories>div>ul>li>a{font-size:18px;font-weight:500;margin:0 0 10px 0}@media (max-width:767px){header>.content .menu .column.n2 .categories>div>ul>li>a{font-size:14px}}header>.content .menu .column.n2 .categories>div>ul>li>ul{margin:0}header>.content .menu .column.n2 .categories>div>ul>li>ul>li>a{font-size:14px;font-weight:400;margin:0 0 6px 0}header>.content .menu .column.n2 .banner{text-decoration:none;position:relative;margin:-22px -18px -18px 0;width:260px;height:359px;border-radius:15px;overflow:hidden}@media (max-width:1180px){header>.content .menu .column.n2 .banner{width:186.485px;height:257.493px;margin:0}}@media (max-width:767px){header>.content .menu .column.n2 .banner{width:167px;height:230.589px}}@media (max-width:767px) and (max-width:767px){header>.content .menu .column.n2 .banner{margin-bottom:30px}}header>.content .menu .column.n2 .banner img{float:left;max-width:100%;max-height:100%}@media (max-width:767px){header>.content .menu.new{-webkit-box-align:start;-ms-flex-align:start;align-items:start;-ms-flex-line-pack:start;align-content:start;-ms-flex-wrap:wrap;flex-wrap:wrap}header>.content .menu.new .to_back{display:block;font-size:16px;font-weight:600;letter-spacing:normal;color:#33333d;line-height:22px;height:22px;padding:0 0 0 30px;position:relative;cursor:pointer;margin:0 0 16px 0;background-image:url("data:image/svg+xml,%3Csvg width='6' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10.5 1 6l4-4.5' stroke='%23323232' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:12px 50%}header>.content .menu.new .column{width:100%;margin:0}header>.content .menu.new .column li{margin:0 !important;width:100%}header>.content .menu.new .column a{margin:0 0 4px 0 !important;padding:0 0 0 69px !important;border:none !important;line-height:50px !important;font-size:14px !important;letter-spacing:normal !important;color:#33333d !important;display:block !important;text-decoration:none !important;font-weight:normal !important;text-transform:none !important;position:relative;width:100%}header>.content .menu.new .column a.empty_image{padding:0 !important;line-height:30px !important}header>.content .menu.new .column a.hide_mob{display:none !important}header>.content .menu.new .column a .image{width:50px;height:50px;border-radius:16px;background-position:50%;background-size:cover;display:block !important;position:absolute;top:0;left:0}header>.content .menu.new .banner{display:none}}.title-search-result{position:relative !important;top:auto !important;left:auto !important;margin:0 !important;-webkit-box-shadow:none !important;box-shadow:none !important}.title-search-result .bx_item_block_href{background:none !important}.title-search-result .bx_item_block_href .bx_item_block_item_image{width:58px !important;height:58px !important;float:left !important;margin:0 12px 0 0 !important;background-position:50% !important;background-repeat:no-repeat !important;background-size:contain !important;position:relative !important}@media (max-width:767px){.title-search-result .bx_item_block_href .bx_item_block_item_image{width:38px !important;height:38px !important}}.title-search-result .bx_item_block_href .bx_item_block_item_image img{max-height:100% !important;max-width:100% !important}.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap{height:58px;display:-webkit-box;display:-ms-flexbox;display:flex;padding:0 !important;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap{height:38px}}.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap b{color:#a4493d !important}.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap .bx_item_block_item_name{color:#33333d !important;display:block !important;margin:0 0 4px 0 !important;font-size:14px !important;margin:0 !important;height:auto !important;display:-webkit-box !important;display:-ms-flexbox !important;display:flex !important;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap .bx_item_block_item_name{font-size:12px !important}}.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap .bx_item_block_item_price{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap .bx_item_block_item_price .bx_price_new{float:left !important;font-size:20px !important;font-family:Vela Sans !important;font-weight:400 !important;line-height:normal !important}@media (max-width:1180px){.title-search-result .bx_item_block_href .bx_item_block_item_info_wrap .bx_item_block_item_price .bx_price_new{font-size:18px !important}}.title-search-result .all_result_button{display:table !important;margin:0 auto !important;border-radius:18px !important;border:1.5px solid #a4493d !important;padding:8px 16px !important;color:#a4493d !important;font-size:12px !important;font-weight:600 !important;letter-spacing:.48px !important;text-transform:uppercase !important;cursor:pointer !important;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;text-decoration:none !important;background:none !important;line-height:1.35 !important}.title-search-result .all_result_button:hover{background:#a4493d !important;color:#fff !important}@media (max-width:767px){.hide_mob{display:none}}@media (max-width:767px){body.show_mob_menu{padding-top:94px}}@media (max-width:767px){body.show_mob_menu header{position:fixed;left:0;top:0;width:100%;z-index:1000;background:#fff}}@media (max-width:767px){body.show_mob_menu .show_catalog_menu{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;z-index:5;top:48px;left:16px;width:calc(50% - 16px - 2.5px)}}@media (max-width:767px){body.show_mob_menu .show_rooms_menu{display:-webkit-box;display:-ms-flexbox;display:flex;position:fixed;z-index:5;top:48px;right:16px;width:calc(50% - 16px - 2.5px)}}@media (max-width:767px){body.show_mob_menu .menu.active{z-index:4}}@media (max-width:767px){body.show_mob_menu header>.content .line.n2 .search_block form{z-index:4}}@media (max-width:767px){body.show_mob_menu header>.content .line.n2 .search_block{z-index:5}}.goods_wrapper.owl-carousel .slider_product{display:none !important}.goods_wrapper>.row{width:100%}.goods_wrapper>.row>.col>div[data-entity]{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.goods_wrapper .good{border-radius:12px;background:#fff;display:table;text-decoration:none;position:relative;border-radius:0 !important}.goods_wrapper .good:hover .to_wish_list{display:block}.goods_wrapper .good.gift{height:429px !important}.goods_wrapper .good.gift .title{height:19px}.goods_wrapper .good.gift .buttons{display:block !important}.goods_wrapper .good.gift .buttons a{text-decoration:none;width:100%;text-align:center}.goods_wrapper .good .to_wish_list{z-index:3;width:42px;height:42px;position:absolute;right:6px;top:6px;border-radius:18px;background-color:#fff;cursor:pointer;display:none}.goods_wrapper .good .to_wish_list.active{display:block;background-image:url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.008 4.333c3.434 0 5.742 3.229 5.742 6.24 0 6.1-9.577 11.094-9.75 11.094-.173 0-9.75-4.995-9.75-11.094 0-3.011 2.308-6.24 5.742-6.24 1.971 0 3.26.986 4.008 1.853.748-.867 2.037-1.853 4.008-1.853Z' stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' fill='%23A4493D' stroke-linejoin='round'/%3E%3C/svg%3E")}.goods_wrapper .good .image{margin:6px;border-radius:8px;width:170px;height:130px;position:relative;display:block;overflow:hidden;border-radius:0 !important}.goods_wrapper .good .image.empty{background:rgba(195,195,195,0.2)}.goods_wrapper .good .image .label{position:absolute;left:0;bottom:6px;display:block;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%23A4493D'/%3E%3C/svg%3E");background-size:100% 100%;padding:3px 9px 2px 5px;color:#fff;font-size:10px}@media (max-width:767px){.goods_wrapper .good .image .label{bottom:0}}.goods_wrapper .good .image .image{margin:0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;position:absolute}.goods_wrapper .good .image .image.ll{background-color:#edede9}.goods_wrapper .good .image .image.hidden{display:none}.goods_wrapper .good .image .images_switcher{position:absolute;width:100%;height:100%;top:0;left:0;z-index:2}@media (max-width:767px){.goods_wrapper .good .image .images_switcher{display:none}}.goods_wrapper .good .image .images_switcher>div{height:100%;position:relative;float:left}.goods_wrapper .good .image .images_switcher_2{position:absolute;bottom:10px;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;z-index:2}@media (max-width:767px){.goods_wrapper .good .image .images_switcher_2{display:none}}.goods_wrapper .good .image .images_switcher_2>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:calc(100% - 80px)}.goods_wrapper .good .image .images_switcher_2>div>div{height:2px;border-radius:2px;margin:0 2px;float:left;background:#d9ebf2;max-width:22px}.goods_wrapper .good .image .images_switcher_2>div>div.active{background:#a4493d}@media (min-width:768px){.goods_wrapper .good .image .slider_product{display:none}}@media (max-width:767px){.goods_wrapper .good .image .slider_product{position:absolute;width:100%;height:100%;top:0;left:0;background:#fff}}.goods_wrapper .good .image .slider_product .owl-stage-outer{height:100%;overflow:hidden;position:relative}.goods_wrapper .good .image .slider_product .owl-stage-outer .owl-stage{height:100%}.goods_wrapper .good .image .slider_product .owl-item{height:100%;float:left}.goods_wrapper .good .image .slider_product .owl-item .item{height:100%;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-size:cover;background-position:50%;background-repeat:no-repeat}.goods_wrapper .good .image .slider_product .owl-item .item img{max-height:100%;max-width:100%;width:auto;height:auto;-o-object-fit:cover;object-fit:cover;left:0;top:0;position:relative}.goods_wrapper .good .image .slider_product .owl-nav{display:none}.goods_wrapper .good .image .slider_product .owl-dots{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:calc(100% - 80px);left:40px;position:absolute;bottom:10px}.goods_wrapper .good .image .slider_product .owl-dots>.owl-dot{height:1.6px;border-radius:1.6px;margin:0 1.7px;float:left;background:#d9ebf2;max-width:18px;border:none}.goods_wrapper .good .image .slider_product .owl-dots>.owl-dot.active{background:#a4493d}.goods_wrapper .good .image .eko{position:absolute;top:8px;left:8px}@media (max-width:1080px){.goods_wrapper .good .image .eko{top:6px;left:6px}}@media (max-width:767px){.goods_wrapper .good .image .eko{top:5px;left:5px}}.goods_wrapper .good .image .eko svg{float:left}@media (max-width:767px){.goods_wrapper .good .image .eko svg{width:34px;height:34px}}.goods_wrapper .good .price_block{margin:0 12px}.goods_wrapper .good .price_block .price{font-size:20px}.goods_wrapper .good .price_block .price_old{color:#929292;font-size:14px}.goods_wrapper .good .title{padding:0 12px;margin:0 0 9px 0;display:table;width:100%;text-decoration:none;color:#33333d;height:57px;height:38px;overflow:hidden;max-height:38px;display:block}.goods_wrapper .good .text{font-size:10px;color:#33333d;margin:7px 0 4px 0;height:41px;overflow:hidden}.goods_wrapper .good yandex-pay-badge{margin:5px 0 10px 0;display:table;width:100%;max-width:200px}.goods_wrapper .good yandex-pay-badge img{width:auto;max-width:100%}.goods_wrapper.s2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 -16px;width:calc(100% + 32px)}@media (max-width:1180px){.goods_wrapper.s2{margin:0 -10px;width:calc(100% + 20px)}}@media (max-width:767px){.goods_wrapper.s2{margin:0 -4px;width:calc(100% + 8px)}}.goods_wrapper.s2.big .good:nth-child(3),.goods_wrapper.s2.big .good:nth-child(10){width:calc((100% / 3) - 32px)}@media (max-width:1180px){.goods_wrapper.s2.big .good:nth-child(3),.goods_wrapper.s2.big .good:nth-child(10){width:calc((100% / 2) - 20px)}}@media (max-width:767px){.goods_wrapper.s2.big .good:nth-child(3),.goods_wrapper.s2.big .good:nth-child(10){width:calc(100% - 8px)}}.goods_wrapper.s2.big .good:nth-child(3) .image.wide,.goods_wrapper.s2.big .good:nth-child(10) .image.wide{display:block}.goods_wrapper.s2.big .good:nth-child(3) .image.wide+.image,.goods_wrapper.s2.big .good:nth-child(10) .image.wide+.image{display:none}.goods_wrapper.s2.short .good{width:calc((100% / 4) - 32px)}@media (max-width:1180px){.goods_wrapper.s2.short .good{width:calc((100% / 2) - 20px)}}@media (max-width:767px){.goods_wrapper.s2.short .good{width:calc((100% / 2) - 8px)}}.goods_wrapper.s2.short .good .image.wide{display:block}.goods_wrapper.s2.short .good .image.wide+.image{display:none}.goods_wrapper.s2.owl-carousel{margin:0;width:100%}.goods_wrapper.s2.owl-carousel .good{width:100%;margin:0}.goods_wrapper.s2.owl-carousel .good .buttons{top:-61px;right:10px;background:none;z-index:2}.goods_wrapper.s2 .good{height:342px;height:360px;height:393px;float:left;width:calc((100% / 6) - 32px);margin:0 16px;position:relative}@media (max-width:1180px){.goods_wrapper.s2 .good{width:calc((100% / 4) - 20px);margin:0 10px;height:288px;height:calc(288px + 33px);height:calc(288px + 33px + 66px)}}@media (max-width:767px){.goods_wrapper.s2 .good{width:calc((100% / 2) - 8px);margin:0 4px 12px 4px;height:235px;height:calc(235px + 33px);height:calc(235px + 33px + 66px)}}.goods_wrapper.s2 .good:hover .buttons{display:table}.goods_wrapper.s2 .good>a.image{height:auto;padding:50% 0;position:relative}.goods_wrapper.s2 .good>a.image div.image{height:100% !important;position:absolute;top:0;left:0}.goods_wrapper.s2 .good .image{height:100%;width:100%;border-radius:22px;margin:0 0 12px 0;background-position:50%;background-repeat:no-repeat;background-size:cover;text-decoration:none}@media (max-width:767px){.goods_wrapper.s2 .good .image{border-radius:16px;margin:0 0 10px 0}}.goods_wrapper.s2 .good .image.wide{display:none}.goods_wrapper.s2 .good .image .label{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%2333333D'/%3E%3C/svg%3E")}.goods_wrapper.s2 .good .image .label.red{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%23ff4b52'/%3E%3C/svg%3E")}.goods_wrapper.s2 .good .image .big_sale{background:#ff4b52;color:#fff;text-decoration:none;font-weight:500;padding:0 10px;border-radius:5px;position:absolute;top:8px;left:8px;line-height:30px}@media (max-width:767px){.goods_wrapper.s2 .good .image .big_sale{font-size:12px;line-height:26px}}.goods_wrapper.s2 .good .image .big_sale+.eko{top:46px}@media (max-width:767px){.goods_wrapper.s2 .good .image .big_sale+.eko{top:42px}}.goods_wrapper.s2 .good .text_block{position:relative}.goods_wrapper.s2 .good .price_block{margin:0}.goods_wrapper.s2 .good .price_block .price{margin:0 7.5px 0 0}@media (max-width:767px){.goods_wrapper.s2 .good .price_block .price{font-size:16px;margin:0 6px 0 0}}@media (max-width:767px){.goods_wrapper.s2 .good .price_block .old_price{font-size:11px}}.goods_wrapper.s2 .good .title{margin:0;padding:0}@media (max-width:767px){.goods_wrapper.s2 .good .title{font-size:12px}}.goods_wrapper.s2 .good .rr{margin:4px 0 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.goods_wrapper.s2 .good .rr{margin:3px 0 0 0}}.goods_wrapper.s2 .good .rr .raiting{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.goods_wrapper.s2 .good .rr .raiting .star{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' fill='none'%3E%3Cpath d='m6.5 0 1.834 3.67 4.348.476L9.467 6.89l.854 3.964L6.5 8.88l-3.82 1.974.853-3.964L.318 4.146l4.348-.476L6.5 0Z' fill='%23A4493D'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;display:block;width:13px;height:12px}.goods_wrapper.s2 .good .rr .raiting .count{color:#33333d;font-size:12px;font-weight:500;margin:0 0 0 6px}@media (max-width:767px){.goods_wrapper.s2 .good .rr .raiting .count{font-size:10px}}.goods_wrapper.s2 .good .rr .reviews{color:#7e8b91;text-decoration:none;font-size:12px;font-weight:500;float:left;display:block}@media (max-width:767px){.goods_wrapper.s2 .good .rr .reviews{font-size:10px}}.goods_wrapper.s2 .good .rr .reviews a{color:#7e8b91;text-decoration:none}.goods_wrapper.s2 .good .buttons{position:absolute;background:#fff;margin:12px 0 0 0;width:100%;width:auto;margin:0;top:7px;right:0}@media (max-width:1180px){.goods_wrapper.s2 .good .buttons{display:table !important}}.goods_wrapper.s2 .good .buttons .to_basket,.goods_wrapper.s2 .good .buttons .to_basket_link{margin:0 auto;display:table;border-radius:22px;background:#a4493d;padding:10px 16px;font-weight:600;color:#fff;cursor:pointer}.goods_wrapper.s2 .good .buttons .to_basket i,.goods_wrapper.s2 .good .buttons .to_basket_link i{float:right;margin:0 0 0 6px;display:block;width:21px;height:21px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='21' fill='none'%3E%3Cpath d='M16.306 6.125H5.694a.875.875 0 0 0-.873.816l-.697 10.443a1.75 1.75 0 0 0 1.747 1.866h10.258a1.75 1.75 0 0 0 1.747-1.866L17.179 6.94a.875.875 0 0 0-.873-.816Z' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.626 7.875v-3.5A2.625 2.625 0 0 0 11 1.75H11a2.625 2.625 0 0 0-2.625 2.625v3.5M9.25 10.5v.875M12.75 10.5v.875M14.063 14.602S12.912 15.75 11 15.75c-1.915 0-3.063-1.148-3.063-1.148' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fff' d='M0 24C0 10.7 10.7 0 24 0h45.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5l-51.6-271c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zm128 440a48 48 0 1 1 96 0 48 48 0 1 1-96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}.goods_wrapper.s2 .good .buttons .to_basket{position:relative}.goods_wrapper.s2 .good .buttons .to_basket.error{-webkit-animation:shake .3s;animation:shake .3s}.goods_wrapper.s2 .good .buttons .to_basket .plus{width:21px;display:block;text-align:center;line-height:21px;font-size:24px}.goods_wrapper.s2 .good .buttons .to_basket .count{position:absolute;display:block;width:20px;height:20px;border-radius:50%;text-align:center;line-height:20px;top:-7px;right:-7px;background:#33333d;font-size:12px}.goods_wrapper.s2 .good .buttons .to_basket i{margin:0}.wishlist.goods_block .goods_wrapper.s2 .good .buttons{top:-61px;right:10px;background:none;z-index:2}section.slider>.content .owl-wrapper{table-layout:fixed;display:table;width:100%;position:relative}section.slider>.content .owl-wrapper .owl-carousel .item{height:500px;padding:22px;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:22px;overflow:hidden;background-size:cover}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item{height:336px;padding:15px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item{border-radius:16px;height:262px;padding:4px}}section.slider>.content .owl-wrapper .owl-carousel .item.only_image{padding:0}section.slider>.content .owl-wrapper .owl-carousel .item.only_image .text_wrapper{width:100%;margin:0;border:none}section.slider>.content .owl-wrapper .owl-carousel .item.style_1{padding:22px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1{padding:15px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1{padding:4px}}section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper{border-radius:12px;border:solid 1px #fff}section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper{position:absolute;left:50px;bottom:50px;max-width:560px;width:calc(100% - 100px)}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper{left:20px;bottom:20px;width:calc(100% - 40px)}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper{left:16px;bottom:20px;width:calc(100% - 32px)}}section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .title{font-size:40px;line-height:1.2;color:#fff;display:block;margin:0 0 15px 0}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .title{font-size:36px;margin:0 0 10px 0}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .title{font-size:24px}}section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .text_1{font-size:24px;line-height:1.2;color:#fff;display:block;margin:0 0 15px 0}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .text_1{font-size:22px;margin:0 0 10px 0}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .text_1{font-size:18px}}section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .text_2{font-size:16px;line-height:1.4;color:#fff;display:block}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item.style_1 .text_wrapper .wrapper .text_2{font-size:14px}}section.slider>.content .owl-wrapper .owl-carousel .item.dark_text .text_wrapper .wrapper .title,section.slider>.content .owl-wrapper .owl-carousel .item.dark_text .text_wrapper .wrapper .text_1,section.slider>.content .owl-wrapper .owl-carousel .item.dark_text .text_wrapper .wrapper .text_2{color:#33333d}section.slider>.content .owl-wrapper .owl-carousel .item.without_border .text_wrapper{border:none}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.auto_height_mob{height:auto;padding:25px 20px 267px 20px;background-position:50% 100% !important}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.auto_height_mob .text_wrapper{padding:0}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item.auto_height_mob .text_wrapper .wrapper{position:relative;left:auto;top:auto;bottom:auto;right:auto}}section.slider>.content .owl-wrapper .owl-carousel .item .buttons{margin:25px 0 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:10px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .buttons{margin:15px 0 0 0;gap:7px}}section.slider>.content .owl-wrapper .owl-carousel .item .buttons .button{height:42px;line-height:42px;display:block;text-decoration:none;color:#fff;font-size:16px;font-weight:500;padding:0 24px;border-radius:22px;background-color:#a4493d;float:left;cursor:pointer}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .buttons .button{height:36px;line-height:36px;padding:0 14px;font-size:14px;font-weight:600}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .buttons .button{height:32px;line-height:32px;padding:0 14px}}section.slider>.content .owl-wrapper .owl-carousel .item .buttons .button.n2{color:#a4493d;background-color:#fff}section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper{width:calc(100% - 182px - 22px);border-radius:12px;border:1.5px solid #fff;padding:49px 44px;margin:0 22px 0 0;position:relative}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper{margin:0 11px 0 0;width:calc(100% - 126px - 11px)}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper{border-radius:12px;margin:0 4px 0 0;width:calc(100% - 109px - 4px)}}section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper{position:absolute;bottom:44px;left:49px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper{bottom:20px;left:23px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper{bottom:13px;left:14px}}section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .label{border-radius:18px;border:1.5px solid #fff;color:#fff;font-size:12px;font-weight:700;letter-spacing:.48px;text-transform:uppercase;padding:8px 16px;margin:0 0 7px 0;display:table}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .label{margin:0 0 9px 0}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .label{margin:0 0 4px 0;font-size:10px;padding:4px 8px}}section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .text{color:#fff;font-size:40px;line-height:120%;display:table}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .text{font-size:36px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .text{font-size:24px}}section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .markirovka_reklamy_text{display:block;position:absolute;bottom:-33px;left:-13px;color:rgba(255,255,255,0.65);font-size:13.35px;white-space:nowrap}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .markirovka_reklamy_text{bottom:-15px;left:0;font-size:11px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .text_wrapper .wrapper .markirovka_reklamy_text{bottom:-11px;font-size:9px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper{width:182px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper{width:126px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper{width:109px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good{border-radius:12px;background:#fff;display:table;height:217px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good{height:150px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good{height:125px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good.n1{margin:0 0 22px 0}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good.n1{margin:0 0 6px 0}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good.n1{margin:0 0 4px 0}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .image{margin:6px;border-radius:8px;width:170px;height:130px;position:relative;background-position:50%;background-repeat:no-repeat;background-size:contain}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .image{width:116px;height:74px;margin:4px 5px 0 5px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .image{width:99px;height:65px;margin:5px 5px 3px 5px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .image .label{position:absolute;left:0;bottom:0;display:block;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%23A4493D'/%3E%3C/svg%3E");background-size:100% 100%;padding:3px 9px 2px 5px;color:#fff;font-size:10px}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .image .label.red{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%23ff4b52'/%3E%3C/svg%3E")}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .image .big_sale{background:#ff4b52;color:#fff;text-decoration:none;font-weight:500;padding:0 10px;border-radius:5px;position:absolute;top:2px;left:2px;line-height:20px;font-size:12px}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block{margin:0 12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block{margin:0 5px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block .price{float:left;font-size:20px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block .price{font-size:16px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block .price{font-size:12px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block .old_price{float:left;color:#929292;font-size:14px;margin:0 0 0 7.5px}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block .old_price{font-size:12px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .price_block .old_price{margin:0 0 0 1.75px;font-size:10px}}section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .title{padding:0 12px;margin:0 0 9px 0;width:100%;height:38px;overflow:hidden;display:block}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .title{font-size:12px;height:28px;line-height:1.2}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .item .goods_wrapper .good .title{padding:0 5px;margin:0 0 7px 0}}section.slider>.content .owl-wrapper .owl-carousel .owl-nav{margin:0}section.slider>.content .owl-wrapper .owl-carousel .owl-nav button{position:absolute;top:50%;margin:0;margin-top:-48.5px;width:46px;height:46px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button{margin-top:-37px;width:38px;height:38px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button{margin-top:-26.5px;width:30px;height:30px}}section.slider>.content .owl-wrapper .owl-carousel .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-62px}@media (max-width:1520px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-23px}}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-19px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-15px}}section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-62px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media (max-width:1520px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-23px}}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-19px}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-15px}}section.slider>.content .owl-wrapper .owl-carousel .owl-nav button span{display:none}section.slider>.content .owl-wrapper .owl-carousel .owl-dots{margin:22px 0 0 0}@media (max-width:1180px){section.slider>.content .owl-wrapper .owl-carousel .owl-dots{margin:6px 0 0 0}}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .owl-dots{margin:0 0 0 0}}section.slider>.content .owl-wrapper .owl-carousel .owl-dots button{padding:10px 4px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.slider>.content .owl-wrapper .owl-carousel .owl-dots button.active span{background:#a4493d;width:88px}section.slider>.content .owl-wrapper .owl-carousel .owl-dots button span{border-radius:3px;background:#d9ebf2;width:44px;height:3px;margin:10px 4px}@media (max-width:767px){section.slider>.content .owl-wrapper .owl-carousel .owl-dots button span{margin:8px 4px}}@media (max-width:767px){section.advantages.n2{display:none}}section.advantages.n2>.content{background:#ebe0df}@media (max-width:767px){section.advantages.mob_1_line>.content .els .el{padding:0 10px;width:100%;min-width:100%}}section.advantages>.content{border-radius:22px;background:#f2f2f2;background:rgba(218,234,242,0.3)}section.advantages>.content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin:43px 0 46px 0;width:100%;position:relative;padding:0 10px}@media (max-width:1180px){section.advantages>.content .els{margin:18px 3px;padding:0 10px}}@media (max-width:767px){section.advantages>.content .els{-ms-flex-wrap:wrap;flex-wrap:wrap;margin:11px 3px;padding:0}}section.advantages>.content .els .el{margin:0 15px;width:calc(25% - 30px);max-width:288px;float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1180px){section.advantages>.content .els .el{margin:0 8px;width:calc(25% - 16px);-webkit-box-align:start;-ms-flex-align:start;align-items:start}}@media (max-width:767px){section.advantages>.content .els .el{margin:4px 5px;width:calc(50% - 10px);-webkit-box-align:center;-ms-flex-align:center;align-items:center}}section.advantages>.content .els .el .ico{width:60px;height:60px;background:#fff;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;float:left}@media (max-width:1180px){section.advantages>.content .els .el .ico{width:36px;height:36px;padding:9px}}@media (max-width:1180px){section.advantages>.content .els .el .ico svg{max-width:100%;max-height:100%}}section.advantages>.content .els .el .text{margin:0 0 0 16px;display:block;float:left;width:calc(100% - 76px)}@media (max-width:1180px){section.advantages>.content .els .el .text{margin:0 0 0 8px;font-size:12px;width:calc(100% - 44px)}}@media (max-width:767px){section.advantages>.content .els .el .text.pc{display:none}}@media (min-width:768px){section.advantages>.content .els .el .text.mob{display:none}}.contacts_list .name i{background-image:url('/local/templates/uyutnosti/images/ico/name.svg')}.contacts_list .address i{background-image:url('/local/templates/uyutnosti/images/ico/location.svg')}.contacts_list .phone i{background-image:url('/local/templates/uyutnosti/images/ico/phone.svg')}.contacts_list .mail i{background-image:url('/local/templates/uyutnosti/images/ico/mail.svg')}.contacts_list .time i{background-image:url('/local/templates/uyutnosti/images/ico/time.svg')}.contacts_list>a{text-decoration:none}.contacts_list>span,.contacts_list>a{display:block;color:#33333d;font-size:16px;margin:0 0 10px 0}@media (max-width:1180px){.contacts_list>span,.contacts_list>a{font-size:14px;margin:0 0 8px 0}}.contacts_list>span:last-child,.contacts_list>a:last-child{margin:0}.contacts_list>span i,.contacts_list>a i{display:block;float:left;width:20px;height:20px;margin:0 8px 0 0;background-position:50% !important;background-repeat:no-repeat !important}.metro_list{margin:32px 0 0 0}.metro_list a.metro{color:#33333d;text-decoration:underline}.metro_list a.metro:hover{text-decoration:none}.metro_list .metro{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 14px 0}.metro_list .metro:last-child{margin:0}.metro_list .metro>i{display:block;float:left;width:20px;height:20px;margin:0 8px 0 0;background-position:50% !important;background-repeat:no-repeat !important;background-image:url('/local/templates/uyutnosti/images/ico/metro.svg');border-radius:2px}.metro_list .metro>i.green{background-color:#5aa449}.metro_list .metro>i.pink{background-color:#7e4aac}.metro_list .metro>i.orange{background-color:#f28b24}.metro_list .metro>i.blue{background-color:#0072e6}.metro_list .metro>i.taxi{background-image:url('/local/templates/uyutnosti/images/ico/taxi.svg')}.metro_list .metro .name{font-size:16px;display:block;float:left}@media (max-width:1180px){.metro_list .metro .name{font-size:14px}}.metro_list .metro .go{color:#7e8b91;font-weight:500}.metro_list .metro .go i{margin:0 8px;float:left;width:8px;height:16px;background-position:50% !important;background-repeat:no-repeat !important;background-image:url('/local/templates/uyutnosti/images/ico/go.svg')}section.contacts_block.mini>.content .text_wrapper{height:452.5px;height:auto}@media (max-width:1180px){section.contacts_block.mini>.content .text_wrapper{height:418px;height:auto}}@media (max-width:767px){section.contacts_block.mini>.content .text_wrapper{height:auto}}section.contacts_block.mini>.content .text_wrapper .wrapper{height:calc(452.5px - 44px);height:auto}@media (max-width:1180px){section.contacts_block.mini>.content .text_wrapper .wrapper{height:calc(418px - 44px);height:auto}}@media (max-width:767px){section.contacts_block.mini>.content .text_wrapper .wrapper{height:auto}}@media (max-width:1180px){section.contacts_block.mini>.content .text_wrapper .wrapper .label{margin:0 0 10px 0}}section.contacts_block.mini>.content .map{height:452.5px;height:auto}@media (max-width:767px){section.contacts_block.mini>.content .map{height:418px}}section.contacts_block>.content .text_wrapper{float:left;height:516.5px;width:440px !important;margin:0 32px 0 0;display:table;border-radius:22px;background:#ebe0df}@media (max-width:1180px){section.contacts_block>.content .text_wrapper{height:472.7px;width:375px !important;margin:0 20px 0 0}}@media (max-width:767px){section.contacts_block>.content .text_wrapper{width:100% !important;height:auto;border-radius:16px;margin:0 0 8px 0}}section.contacts_block>.content .text_wrapper .wrapper{border-radius:12px;background:#fff;padding:29px 26px;margin:22px;float:left;width:calc(100% - 44px);height:472.5px}@media (max-width:1180px){section.contacts_block>.content .text_wrapper .wrapper{height:428.7px}}@media (max-width:767px){section.contacts_block>.content .text_wrapper .wrapper{height:auto;border-radius:14px;margin:4px;width:calc(100% - 8px);padding:15px 17px 29px 17px}}section.contacts_block>.content .text_wrapper .wrapper .label{color:#a4493d;font-size:12px;font-weight:700;display:block;padding:6.5px 14.5px;border-radius:18px;border:1.5px solid #a4493d;letter-spacing:.48px;text-transform:uppercase;display:table;margin:0 0 16px 0}@media (max-width:1180px){section.contacts_block>.content .text_wrapper .wrapper .label{margin:0 0 6px 0}}@media (max-width:767px){section.contacts_block>.content .text_wrapper .wrapper .label{padding:2.5px 6.5px}}section.contacts_block>.content .text_wrapper .wrapper .h2{margin:0 0 16px 0}@media (max-width:1180px){section.contacts_block>.content .text_wrapper .wrapper .h2{margin:0 0 16px 0}}@media (max-width:767px){section.contacts_block>.content .text_wrapper .wrapper .h2{margin:0 0 9px 0}}section.contacts_block>.content .map{background:#c3c3c3;height:516.5px;width:calc(100% - 440px - 32px) !important;border-radius:22px;overflow:hidden}@media (max-width:1180px){section.contacts_block>.content .map{height:472.7px;width:calc(100% - 375px - 20px) !important}}@media (max-width:767px){section.contacts_block>.content .map{width:100% !important;height:272px;border-radius:22px}}section.contacts_block>.content .map yamap{width:100%;height:100%}section.contacts_block_2 .contacts_block.mini{margin-top:35px}@media (max-width:767px){section.contacts_block_2 .contacts_block.mini{margin-top:25px}}section.contacts_block_2.mini>.content .blocks{gap:40px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:1180px){section.contacts_block_2.mini>.content .blocks{gap:20px}}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks{gap:25px}}section.contacts_block_2.mini>.content .blocks .block{width:calc(50% - 40px/2*1)}@media (max-width:1180px){section.contacts_block_2.mini>.content .blocks .block{width:calc(50% - 20px/2*1)}}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block{width:100%}}section.contacts_block_2.mini>.content .blocks .block.s2{width:100%}section.contacts_block_2.mini>.content .blocks .block.s2>.title{font-size:22px;line-height:1.2;letter-spacing:normal;color:#33333d;display:block;margin:0 0 15px 0;float:left;width:100%}@media (max-width:1180px){section.contacts_block_2.mini>.content .blocks .block.s2>.title{font-size:20px;margin:0 0 10px 0}}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.s2>.title{font-size:18px}}section.contacts_block_2.mini>.content .blocks .block.hot_line{font-size:18px;text-decoration:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:15px;font-weight:bold;margin:20px 0 0 0}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.hot_line{font-size:15px;gap:10px}}section.contacts_block_2.mini>.content .blocks .block.hot_line .image svg{width:40px;height:40px;float:left}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.hot_line .image svg{width:30px;height:30px}}section.contacts_block_2.mini>.content .blocks .block.hot_line a{text-decoration:none}section.contacts_block_2.mini>.content .blocks .block.hot_line a:hover{text-decoration:underline}section.contacts_block_2.mini>.content .blocks .block.working_hours{padding:30px 60px;border-radius:22px;background-color:#f2f2f2}@media (max-width:1180px){section.contacts_block_2.mini>.content .blocks .block.working_hours{border-radius:14.8px;padding:30px 40px}}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.working_hours{padding:20px}}section.contacts_block_2.mini>.content .blocks .block.working_hours .els{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;float:left;width:100%}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.working_hours .els{gap:20px;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:10px 0 0 0;float:left}}section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el{padding:0 0 0 45px;position:relative;width:33.33%}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el{padding:0 0 0 30px;width:100%}}section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .image{width:30px;height:30px;background-repeat:no-repeat;background-position:50% 4px;background-size:20px;position:absolute;left:0;top:0}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .image{width:20px;height:20px;background-size:18px}}section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .text_block .title{display:block;font-size:16px;font-weight:500;margin:0 0 10px 0;color:#33333d}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .text_block .title{font-size:15px;margin:0 0 7px 0}}section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .text_block .text{font-size:14px;line-height:1.4;letter-spacing:normal;color:#33333d;display:block}section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .text_block .text a{text-decoration:none}section.contacts_block_2.mini>.content .blocks .block.working_hours .els .el .text_block .text a:hover{text-decoration:underline}section.contacts_block_2.mini>.content .blocks .block.company_data .text{float:left;font-size:15px;line-height:1.6}@media (max-width:767px){section.contacts_block_2.mini>.content .blocks .block.company_data .text{font-size:14px;line-height:1.4}}section.contacts_block_2.mini>.content .text_wrapper{width:100%;height:auto}@media (max-width:1180px){section.contacts_block_2.mini>.content .text_wrapper{height:418px;height:auto}}@media (max-width:767px){section.contacts_block_2.mini>.content .text_wrapper{height:auto}}section.contacts_block_2.mini>.content .text_wrapper .title_big{margin:50px 0 10px 0;font-size:20px;font-weight:600;line-height:1.2;color:#33333d}section.contacts_block_2.mini>.content .text_wrapper .wrapper{height:calc(452.5px - 44px);height:auto}@media (max-width:1180px){section.contacts_block_2.mini>.content .text_wrapper .wrapper{height:calc(418px - 44px);height:auto}}@media (max-width:767px){section.contacts_block_2.mini>.content .text_wrapper .wrapper{height:auto}}@media (max-width:1180px){section.contacts_block_2.mini>.content .text_wrapper .wrapper .label{margin:0 0 10px 0}}section.contacts_block_2.mini>.content .text_wrapper .wrapper .metro_list{margin:10px 0 0 0}section.contacts_block_2.mini>.content .map{height:100%;width:100%}@media (max-width:767px){section.contacts_block_2.mini>.content .map{height:418px}}section.contacts_block_2>.content .text_wrapper{float:left;height:516.5px;width:440px;margin:0 32px 0 0;display:table;border-radius:22px;background:#ebe0df}@media (max-width:1180px){section.contacts_block_2>.content .text_wrapper{height:472.7px;width:375px;margin:0 20px 0 0}}@media (max-width:767px){section.contacts_block_2>.content .text_wrapper{width:100%;height:auto;border-radius:16px;margin:0 0 8px 0}}section.contacts_block_2>.content .text_wrapper .wrapper{border-radius:12px;background:#fff;padding:29px 26px;margin:22px;float:left;width:calc(100% - 44px);height:472.5px}@media (max-width:1180px){section.contacts_block_2>.content .text_wrapper .wrapper{height:428.7px}}@media (max-width:767px){section.contacts_block_2>.content .text_wrapper .wrapper{height:auto;border-radius:14px;margin:4px;width:calc(100% - 8px);padding:15px 17px 29px 17px}}section.contacts_block_2>.content .text_wrapper .wrapper .label{color:#a4493d;font-size:12px;font-weight:700;display:block;padding:6.5px 14.5px;border-radius:18px;border:1.5px solid #a4493d;letter-spacing:.48px;text-transform:uppercase;display:table;margin:0 0 16px 0}@media (max-width:1180px){section.contacts_block_2>.content .text_wrapper .wrapper .label{margin:0 0 6px 0}}@media (max-width:767px){section.contacts_block_2>.content .text_wrapper .wrapper .label{padding:2.5px 6.5px}}section.contacts_block_2>.content .text_wrapper .wrapper .h2{margin:0 0 16px 0}@media (max-width:1180px){section.contacts_block_2>.content .text_wrapper .wrapper .h2{margin:0 0 16px 0}}@media (max-width:767px){section.contacts_block_2>.content .text_wrapper .wrapper .h2{margin:0 0 9px 0}}section.contacts_block_2>.content .map{background:#c3c3c3;height:516.5px;width:calc(100% - 440px - 32px);border-radius:22px;overflow:hidden}@media (max-width:1180px){section.contacts_block_2>.content .map{height:472.7px;width:calc(100% - 375px - 20px)}}@media (max-width:767px){section.contacts_block_2>.content .map{width:100%;height:272px;border-radius:22px}}section.contacts_block_2>.content .map yamap{width:100%;height:100%}section.catalog_block>.content .h2{float:left}section.catalog_block>.content .show_all{display:block;border-radius:18px;border:1.5px solid #a4493d;color:#a4493d;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;padding:8px 16px;text-decoration:none;margin:11px 0 0 30px;float:left;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.catalog_block>.content .show_all:hover{background:#a4493d;color:#fff}@media (max-width:1180px){section.catalog_block>.content .show_all{margin:11px 0 0 12px;padding:6px 14px}}@media (max-width:767px){section.catalog_block>.content .show_all{padding:4px 8px;font-size:10px;letter-spacing:.4px;margin:4px 0 0 7px}}section.catalog_block>.content .categories_block{margin:0 0 0 0;display:table;width:100%}@media (max-width:767px){section.catalog_block>.content .categories_block.w100{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}section.catalog_block>.content .categories_block.w100 a{margin:0 16px 30px 16px;width:calc(16.66% - 32px)}@media (max-width:1180px){section.catalog_block>.content .categories_block.w100 a{margin:0 10px 20px 10px;width:calc(16.66% - 20px)}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a{margin:0 4px 8px 4px;width:calc(33.33% - 8px)}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(1){-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(2){-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(3){-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(4){-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(5){-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(6){-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(7){-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(8){-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(9){-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a:nth-child(10){-webkit-box-ordinal-group:11;-ms-flex-order:10;order:10}}section.catalog_block>.content .categories_block.w100 a.big{width:calc(33.33% - 32px)}@media (max-width:1180px){section.catalog_block>.content .categories_block.w100 a.big{width:calc(33.33% - 20px)}}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a.big{width:calc(66.66% - 8px)}}section.catalog_block>.content .categories_block.w100 a.big .image{height:100%;background-size:cover}@media (max-width:767px){section.catalog_block>.content .categories_block.w100 a .text{font-size:12px}}section.catalog_block>.content .categories_block .column{width:calc(50% + 16px);position:relative;margin:0 -16px -30px -16px;float:left}@media (max-width:1180px){section.catalog_block>.content .categories_block .column{width:calc(50% + 10px);margin:0 -10px -20px -10px}}@media (max-width:767px){section.catalog_block>.content .categories_block .column{width:calc(100% + 8px);margin:0 -4px -8px -4px}}section.catalog_block>.content .categories_block .column.n1{margin-right:16px}@media (max-width:1180px){section.catalog_block>.content .categories_block .column.n1{margin-right:10px}}@media (max-width:767px){section.catalog_block>.content .categories_block .column.n1{margin:0 0 0 0}}section.catalog_block>.content .categories_block .column a{margin:0 16px 30px 16px;width:calc(33.33% - 32px)}@media (max-width:1180px){section.catalog_block>.content .categories_block .column a{margin:0 10px 20px 10px;width:calc(33.33% - 20px)}}@media (max-width:767px){section.catalog_block>.content .categories_block .column a{margin:0 4px 8px 4px;width:calc(33.33% - 8px)}}section.catalog_block>.content .categories_block .column a.big{width:calc(100% - 32px)}@media (max-width:1180px){section.catalog_block>.content .categories_block .column a.big{width:calc(100% - 20px)}}@media (max-width:767px){section.catalog_block>.content .categories_block .column a.big{width:calc(100% - 8px)}}section.catalog_block>.content .categories_block .column a.big .image{height:100%;background-size:cover}section.catalog_block>.content .categories_block a{float:left;margin:0 16px 30px 16px;border-radius:22px;background-color:#ebe0df;text-decoration:none;display:block;height:260px;width:calc(33.33% - 32px);position:relative;overflow:hidden}@media (max-width:1180px){section.catalog_block>.content .categories_block a{margin:0 10px 20px 10px;width:calc(33.33% - 20px);height:178px}}@media (max-width:767px){section.catalog_block>.content .categories_block a{border-radius:16px;height:120px;margin:0 4px 8px 4px;width:calc(33.33% - 8px)}}section.catalog_block>.content .categories_block a:hover .image{-webkit-transform:scale(1.15);transform:scale(1.15)}section.catalog_block>.content .categories_block a.white{background-color:#fff}section.catalog_block>.content .categories_block a.big{width:calc(100% - 32px)}@media (max-width:1180px){section.catalog_block>.content .categories_block a.big{width:calc(100% - 20px)}}@media (max-width:767px){section.catalog_block>.content .categories_block a.big{width:calc(100% - 8px)}}section.catalog_block>.content .categories_block a.big .image{height:100%;background-size:cover}section.catalog_block>.content .categories_block a.white_text .image{background-size:cover;height:100%}section.catalog_block>.content .categories_block a.white_text .text{color:#fff}section.catalog_block>.content .categories_block a.white_text .text i{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cpath d='M2.613 6.988h8.745M7.865 3.493 11.387 7l-3.522 3.507' stroke='%23fff' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}section.catalog_block>.content .categories_block a .image{background-position:50%;background-repeat:no-repeat;width:100%;height:calc(100% - 50px);background-size:contain;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.catalog_block>.content .categories_block a .text{color:#33333d;font-size:16px;position:absolute;left:20px;bottom:18px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:80%;padding:0 20px 0 0}@media (max-width:1180px){section.catalog_block>.content .categories_block a .text{left:14px;bottom:11px;font-size:14px}}@media (max-width:767px){section.catalog_block>.content .categories_block a .text{left:11px;bottom:10px;font-size:14px}}section.catalog_block>.content .categories_block a .text i{margin:0 0 0 6px;width:14px;height:14px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cpath d='M2.613 6.988h8.745M7.865 3.493 11.387 7l-3.522 3.507' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;bottom:4px;position:absolute;right:0}section.category_block{margin:0 0 30px 0}section.category_block .owl-carousel.cats_wrapper a{float:left;margin:0;border-radius:22px;background-color:#f2f2f2;text-decoration:none;display:block;height:160px;width:100%;position:relative;overflow:hidden}@media (max-width:1180px){section.category_block .owl-carousel.cats_wrapper a{height:108px;width:97px}}section.category_block .owl-carousel.cats_wrapper a:hover .image{-webkit-transform:scale(1.15);transform:scale(1.15)}section.category_block .owl-carousel.cats_wrapper a.white{background-color:#fff}section.category_block .owl-carousel.cats_wrapper a.big{width:calc(100% - 32px)}@media (max-width:1180px){section.category_block .owl-carousel.cats_wrapper a.big{width:calc(100% - 20px)}}section.category_block .owl-carousel.cats_wrapper a.big .image{height:100%;background-size:cover}section.category_block .owl-carousel.cats_wrapper a .image{background-position:50%;background-repeat:no-repeat;width:100%;height:90px;background-size:contain;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;margin:10px 0}@media (max-width:1180px){section.category_block .owl-carousel.cats_wrapper a .image{height:60px;margin:7px 0 4px 0}}section.category_block .owl-carousel.cats_wrapper a .text{color:#33333d;font-size:14px;position:absolute;left:20px;bottom:12px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;max-width:80%;padding:0 20px 0 0}@media (max-width:1180px){section.category_block .owl-carousel.cats_wrapper a .text{left:13px;bottom:8px;font-size:10px}}section.category_block .owl-carousel.cats_wrapper a .text i{margin:0 0 0 6px;width:14px;height:14px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cpath d='M2.613 6.988h8.745M7.865 3.493 11.387 7l-3.522 3.507' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;bottom:4px;position:absolute;right:0}section.category_page>.content .title_block{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 25px 0;position:relative}@media (max-width:767px){section.category_page>.content .title_block{margin:0 0 12px 0}}section.category_page>.content .title_block h1{color:#33333d;font-size:40px;line-height:120%;display:block;float:left;margin:0}@media (max-width:1180px){section.category_page>.content .title_block h1{font-size:36px}}@media (max-width:767px){section.category_page>.content .title_block h1{font-size:24px}}section.category_page>.content .title_block .count{border-radius:18px;background:#a4493d;margin:0 0 0 12px;color:#fff;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;display:block;padding:2px 8px;white-space:nowrap}@media (max-width:1180px){section.category_page>.content .title_block .count{margin:0 0 0 11px}}@media (max-width:767px){section.category_page>.content .title_block .count{margin:0 0 0 9px;font-size:10px;letter-spacing:.4px}}section.category_page>.content .title_block .logo{margin-left:auto}section.category_page>.content .title_block .logo img{float:left;max-height:48px;margin:0 0 0 20px}@media (max-width:767px){section.category_page>.content .title_block .logo img{max-height:28px}}section.category_page>.content .left_block{width:262px;float:left}@media (max-width:1180px){section.category_page>.content .left_block{width:178px}}@media (max-width:767px){section.category_page>.content .left_block{width:100%}}section.category_page>.content .left_block .cats_menu{margin:0 0 20px 0;display:table;width:100%;float:left}@media (max-width:767px){section.category_page>.content .left_block .cats_menu{display:none}}@media (max-width:767px){section.category_page>.content .left_block .cats_menu.active{display:block;position:fixed;z-index:3;width:100%;height:100%;left:0;top:0;background:#fff;padding:16px}}section.category_page>.content .left_block .cats_menu+div{float:left;width:100%}section.category_page>.content .left_block .cats_menu .title{color:#33333d;font-size:24px;font-weight:500;line-height:120%;display:block;margin:0 0 14px 0}@media (max-width:767px){section.category_page>.content .left_block .cats_menu .title{font-size:18px;margin:0 0 21px 0;padding:0 0 0 17px;position:relative}section.category_page>.content .left_block .cats_menu .title::after{content:"";position:absolute;left:0;top:50%;width:5px;height:10px;margin:-5px 0 0 0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none'%3E%3Cpath d='M5 1 1 5l4 4' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:center;background-repeat:no-repeat}}section.category_page>.content .left_block .cats_menu nav>a{text-decoration:none;display:block;font-size:16px;font-weight:700;margin:0 0 12px 0;padding:0 0 0 16px;position:relative;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.category_page>.content .left_block .cats_menu nav>a.active,section.category_page>.content .left_block .cats_menu nav>a:hover{color:#a4493d}section.category_page>.content .left_block .cats_menu nav>a::after{content:" ";position:absolute;left:0;width:4px;height:100%;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none'%3E%3Cpath d='M5 1 1 5l4 4' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:50%}section.category_page>.content .left_block .cats_menu nav ul{margin:0;padding:0;list-style:none}section.category_page>.content .left_block .cats_menu nav ul li a{text-decoration:none;display:block;float:left;width:100%;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.category_page>.content .left_block .cats_menu nav ul li a.active,section.category_page>.content .left_block .cats_menu nav ul li a:hover{color:#a4493d}section.category_page>.content .left_block .cats_menu nav ul li a.active .count,section.category_page>.content .left_block .cats_menu nav ul li a:hover .count{color:#a4493d}section.category_page>.content .left_block .cats_menu nav>ul>li>a{font-size:16px;margin:0 0 12px 0;padding:0 0 0 16px}@media (max-width:1180px){section.category_page>.content .left_block .cats_menu nav>ul>li>a{font-size:14px}}@media (max-width:767px){section.category_page>.content .left_block .cats_menu nav>ul>li>a{margin:0 0 16px 0}}section.category_page>.content .left_block .cats_menu nav>ul>li>ul{padding:0 0 0 36px;line-height:normal;margin:0 0 12px 0}section.category_page>.content .left_block .cats_menu nav>ul>li>ul>li>a{padding:0 0 9px 0}@media (max-width:1180px){section.category_page>.content .left_block .cats_menu nav>ul>li>ul>li>a{font-size:12px}}section.category_page>.content .left_block .cats_menu nav>ul>li>ul>li>a .count{color:#7e8b91;padding:0 0 0 5px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){section.category_page>.content .left_block>.col-lg-3.col-md-4.col-sm-5{display:none}}@media (max-width:767px){section.category_page>.content .left_block>.col-lg-3.col-md-4.col-sm-5.active{display:block;position:fixed;z-index:3;width:100%;height:100%;left:0;top:0;background:#fff;padding:16px}}section.category_page>.content .right_block{width:calc(100% - 262px - 60px);float:right}@media (max-width:1180px){section.category_page>.content .right_block{width:calc(100% - 178px - 60px)}}@media (max-width:767px){section.category_page>.content .right_block{width:100%}}@media (max-width:767px){section.category_page>.content .right_block .catalog_page_tools{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 17px 0}}section.category_page>.content .right_block .filter-tags{display:none}section.category_page>.content .right_block .filter-tags.active{display:table;float:left;width:100%;margin:0 0 16px 0}@media (max-width:767px){section.category_page>.content .right_block .filter-tags.active{-webkit-box-flex:100%;-ms-flex:100%;flex:100%;margin:0 0 12px 0}}section.category_page>.content .right_block .filter-tags .tags .tag{float:left;display:block;margin:0 12px 0 0;border-radius:18px;border:1px solid #f2f2f2;padding:0 6px 0 10px;color:#7e8b91;font-size:14px;font-weight:500;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:27px}section.category_page>.content .right_block .filter-tags .tags .tag .name{display:table}section.category_page>.content .right_block .filter-tags .tags .tag .value{color:#33333d}section.category_page>.content .right_block .filter-tags .tags .tag i{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='11' fill='none'%3E%3Cpath d='m1 1.5 8 8M9 1.5l-8 8' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");width:16px;height:16px;display:block;float:right;background-position:50%;background-repeat:no-repeat;cursor:pointer}section.category_page>.content .right_block .filter-tags .close{color:#7e8b91;font-weight:500;text-decoration:underline;cursor:pointer;display:block;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;line-height:27px}section.category_page>.content .right_block .filter-tags .close:hover{text-decoration:none}section.category_page>.content .right_block .filter-sort{display:table;float:left;margin:0 0 20px 0}@media (max-width:767px){section.category_page>.content .right_block .filter-sort{display:none}}section.category_page>.content .right_block .filter-sort .filter-sort__list a{color:#7e8b91;font-weight:500;display:block;float:left;margin:0 16px 0 0;text-decoration:none;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.category_page>.content .right_block .filter-sort .filter-sort__list a:hover{color:#33333d}section.category_page>.content .right_block .filter-sort .filter-sort__list a.active{color:#33333d}section.category_page>.content .right_block .filter-sort-mob{display:none}@media (max-width:767px){section.category_page>.content .right_block .filter-sort-mob{display:block}}section.category_page>.content .right_block .filter-sort-mob div.nice-select{padding:0;height:auto;margin:0;border:none;line-height:normal}section.category_page>.content .right_block .filter-sort-mob div.nice-select::after{display:none}section.category_page>.content .right_block .filter-sort-mob div.nice-select .current{display:block;font-weight:500;padding:0 11px 0 0;position:relative}section.category_page>.content .right_block .filter-sort-mob div.nice-select .current::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='5' fill='none'%3E%3Cpath d='m1 1 2.667 2.667L6.333 1' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;position:absolute;right:0;top:50%;margin:-1.5px 0 0 0;width:6px;height:3px}section.category_page>.content .right_block .cats_menu_call{display:none}@media (max-width:767px){section.category_page>.content .right_block .cats_menu_call{display:block;font-weight:500;padding:0 11px 0 0;position:relative}}section.category_page>.content .right_block .cats_menu_call::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='5' fill='none'%3E%3Cpath d='m1 1 2.667 2.667L6.333 1' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;position:absolute;right:0;top:50%;margin:-1.5px 0 0 0;width:6px;height:3px}section.category_page>.content .right_block .cats_menu_call i{display:none}section.category_page>.content .right_block .filter_call{display:none}@media (max-width:767px){section.category_page>.content .right_block .filter_call{display:block;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cg clip-path='url(%23a)' fill='%2333333D'%3E%3Cpath d='M.667 3.167H2.49a2.485 2.485 0 0 0 4.796 0h8.046a.667.667 0 1 0 0-1.333H7.287a2.485 2.485 0 0 0-4.796 0H.667a.667.667 0 1 0 0 1.333Zm4.222-1.833a1.167 1.167 0 1 1 0 2.333 1.167 1.167 0 0 1 0-2.333ZM15.333 7.333H13.51a2.484 2.484 0 0 0-4.796 0H.667a.667.667 0 0 0 0 1.333h8.046a2.485 2.485 0 0 0 4.796 0h1.824a.667.667 0 1 0 0-1.333Zm-4.222 1.833a1.166 1.166 0 1 1 0-2.333 1.166 1.166 0 0 1 0 2.333ZM15.333 12.834H7.287a2.485 2.485 0 0 0-4.796 0H.667a.666.666 0 1 0 0 1.333H2.49a2.485 2.485 0 0 0 4.796 0h8.046a.667.667 0 1 0 0-1.333ZM4.89 14.667a1.167 1.167 0 1 1 0-2.333 1.167 1.167 0 0 1 0 2.333Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");width:16px;height:16px;cursor:pointer;display:table;background-position:50%;background-repeat:no-repeat}}section.category_page>.content .right_block .show_count{float:right;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){section.category_page>.content .right_block .show_count{display:none}}section.category_page>.content .right_block .show_count>span{color:#7e8b91;font-weight:500;display:block;float:left}section.category_page>.content .right_block .show_count>.nice-select{height:19px;line-height:19px;border:none;float:right;padding-left:8px}section.category_page>.content .right_block .count_els_in_line{float:right;display:-webkit-box;display:-ms-flexbox;display:flex;position:relative;margin:-6.5px 0 0 20px}@media (max-width:767px){section.category_page>.content .right_block .count_els_in_line{margin:3.5px 0 0 20px}}@media (max-width:480px){section.category_page>.content .right_block .count_els_in_line{margin:-44px 0 0 0;position:absolute;right:0}}section.category_page>.content .right_block .count_els_in_line a{text-decoration:none;float:left;padding:10px;border-radius:3px}section.category_page>.content .right_block .count_els_in_line a.active{background:#a4493d}section.category_page>.content .right_block .count_els_in_line a.active svg{fill:#fff}section.category_page>.content .right_block .count_els_in_line a svg{float:left;fill:#33333d}section.category_page>.content .right_block .filter_block{display:table;float:left;height:46px;position:relative;margin:-13.5px 20px 0 20px}@media (max-width:767px){section.category_page>.content .right_block .filter_block{margin:4.5px 20px 0 20px}}@media (max-width:480px){section.category_page>.content .right_block .filter_block{clear:both;width:100%;margin:0}}@media (max-width:480px){section.category_page>.content .right_block .filter_block>div{display:table}}section.category_page>.content .right_block .filter_block .bx_filter_section .bx_filter_title{display:none}section.category_page>.content .right_block .filter_block .bx_filter_section form .bx_filter_parameters_box:not(.id_210){display:none}section.category_page>.content .right_block .filter_block .bx_filter_section form .bx_filter_parameters_box .bx_filter_parameters_box_container span{color:#33333d;font-size:14px;margin:0 15px 0 0}section.category_page>.content .right_block .filter_block .bx_filter_section form .bx_filter_button_box{display:none}.owl-wrapper.categories{margin:0 0 20px 0}.owl-wrapper.categories .owl-item .item{background-color:#ebe0df;padding:7px 12px;border-radius:15px;display:block;text-decoration:none;font-size:14px}.owl-wrapper.categories .owl-nav{margin:0}.owl-wrapper.categories .owl-nav button{position:absolute;top:50%;margin:0;margin-top:calc(-18px);width:36px;height:36px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){.owl-wrapper.categories .owl-nav button{margin-top:-15px;width:30px;height:30px}}.owl-wrapper.categories .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}.owl-wrapper.categories .owl-nav button.owl-prev{left:0}@media (max-width:1180px){.owl-wrapper.categories .owl-nav button.owl-prev{left:-5px}}@media (max-width:767px){.owl-wrapper.categories .owl-nav button.owl-prev{left:-15px}}.owl-wrapper.categories .owl-nav button.owl-next{right:0;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media (max-width:1180px){.owl-wrapper.categories .owl-nav button.owl-next{right:-5px}}@media (max-width:767px){.owl-wrapper.categories .owl-nav button.owl-next{right:-15px}}.owl-wrapper.categories .owl-nav button.disabled{display:none}.owl-wrapper.categories .owl-nav button span{display:none}.catalog__list.count_3 .goods_wrapper .good{width:calc((100% / 3) - 32px);height:540px;height:500px}@media (max-width:1180px){.catalog__list.count_3 .goods_wrapper .good{width:calc((100% / 3) - 20px);height:510px;height:470px}}@media (max-width:991px){.catalog__list.count_3 .goods_wrapper .good{height:460px;height:420px}}@media (max-width:767px){.catalog__list.count_3 .goods_wrapper .good{width:calc((100% / 2) - 8px);height:415px;height:375px}}@media (max-width:420px){.catalog__list.count_3 .goods_wrapper .good{width:100%;height:450px;height:410px}}.catalog__list.count_3 .goods_wrapper .good .image{height:345px}@media (max-width:1180px){.catalog__list.count_3 .goods_wrapper .good .image{height:315px}}@media (max-width:991px){.catalog__list.count_3 .goods_wrapper .good .image{height:265px}}@media (max-width:767px){.catalog__list.count_3 .goods_wrapper .good .image{height:245px}}@media (max-width:420px){.catalog__list.count_3 .goods_wrapper .good .image{height:280px}}@media (min-width:1181px){.catalog__list.count_4 .goods_wrapper .good{height:450px;height:410px}}@media (min-width:768px) and (max-width:1180px){.catalog__list.count_4 .goods_wrapper .good{width:calc((100% / 3) - 20px)}}@media (min-width:1181px){.catalog__list.count_4 .goods_wrapper .good .image{height:265px;height:225px}}.catalog__list.count_4 .goods_wrapper .good .text_block{margin:0 0 15px 0}@media (max-width:520px){.catalog__list.count_4 .goods_wrapper .good .buttons{top:-61px;right:10px;background:none}}.no_products{display:table;margin:40px auto 0 auto}.no_products .image{width:188px;height:135px;margin:0 auto 15px auto;display:table}.no_products .image img{float:left}.no_products .text{text-align:center;display:block}.no_products .text.n1{color:#33333d;font-size:24px}.no_products .text.n2{color:#7e8b91;font-size:14px;margin:4px 0 0 0}.navigation .show_more{border-radius:22px;background:#f2f2f2;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px 30px;width:100%;color:#7e8b91;font-weight:600;cursor:pointer}@media (max-width:767px){.navigation .show_more{padding:8px 30px;font-size:12px}}.navigation .show_more .ico{margin:0 0 0 6px}@media (max-width:1180px){.navigation .show_more .ico{width:18px;height:18px}}@media (max-width:767px){.navigation .show_more .ico{width:13px;height:13px}}.navigation .show_more .ico svg{float:left}@media (max-width:1180px){.navigation .show_more .ico svg{width:100%;height:100%}}.navigation nav{margin:16px auto 0;display:table}@media (max-width:1180px){.navigation nav{margin:13px auto 0}}.navigation nav ul{margin:0;padding:0;list-style:none}.navigation nav ul li{float:left;display:block}.navigation nav ul li a,.navigation nav ul li span{width:44px;height:44px;border-radius:50%;float:left;display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 3px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-weight:700}@media (max-width:1180px){.navigation nav ul li a,.navigation nav ul li span{width:36px;height:36px;font-weight:600}}.navigation nav ul li a{text-decoration:none;background:#f2f2f2;color:#33333d}.navigation nav ul li span{background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);color:#a4493d}section.goods_slider>.content>.title{color:#33333d;font-size:40px;font-weight:400;line-height:120%;margin:10px 0 30px 0;display:block}@media (max-width:1180px){section.goods_slider>.content>.title{font-size:30px;margin:0 0 23px 0}}@media (max-width:767px){section.goods_slider>.content>.title{font-size:24px;margin:0 0 13px 0}}section.goods_slider>.content .owl-nav{position:absolute;right:0;top:0;margin-top:-77px}@media (max-width:1180px){section.goods_slider>.content .owl-nav{margin-top:-60px}}@media (max-width:767px){section.goods_slider>.content .owl-nav{margin-top:-42px}}section.goods_slider>.content .owl-nav button{top:50%;margin:0;width:46px;height:46px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") !important;background-position:50% !important;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;-webkit-transform:none !important;transform:none !important}@media (max-width:1180px){section.goods_slider>.content .owl-nav button{margin-top:-37px;width:38px;height:38px}}@media (max-width:767px){section.goods_slider>.content .owl-nav button{margin-top:-26.5px;width:30px;height:30px}}section.goods_slider>.content .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}section.goods_slider>.content .owl-nav button.owl-next{margin:0 0 0 9px;-webkit-transform:rotate(180deg) !important;transform:rotate(180deg) !important}@media (max-width:1180px){section.goods_slider>.content .owl-nav button.owl-next{margin:0 0 0 8px}}section.goods_slider>.content .owl-nav button span{display:none}section.download>.content .download{background-color:#a4493d;background-image:url(/local/templates/uyutnosti/images/subscribe/bg_pc.png);border-radius:22px;display:table;width:100%;position:relative}@media (max-width:1180px){section.download>.content .download{background-image:url(/local/templates/uyutnosti/images/subscribe/bg_tab.png)}}@media (max-width:767px){section.download>.content .download{background-image:none}}section.download>.content .download .wrapper{padding:29px 86px 34px 83px;display:table;width:100%;float:left}@media (max-width:1180px){section.download>.content .download .wrapper{padding:28px 37px}}@media (max-width:767px){section.download>.content .download .wrapper{padding:24px 24px}}section.download>.content .download .text{color:#fff;font-size:36px;font-weight:500;line-height:120%;display:block;float:left}@media (max-width:1180px){section.download>.content .download .text{font-size:32px;width:360px}}@media (max-width:767px){section.download>.content .download .text{font-size:18px;width:120px}}@media (max-width:1180px){section.download>.content .download .text.pc{display:none}}@media (min-width:1181px){section.download>.content .download .text.mob{display:none}}section.download>.content .download .apps{margin:10px 0 0 0;display:table;width:100%;float:left}@media (max-width:1180px){section.download>.content .download .apps{margin:11px 0 0 0}}@media (max-width:767px){section.download>.content .download .apps{margin:10px 0 0 0}}section.download>.content .download .apps a{display:block;height:40px;float:left;margin:0 8px 0 0}@media (max-width:1180px){section.download>.content .download .apps a{display:none;height:32px}}@media (max-width:767px){section.download>.content .download .apps a{height:30px}}@media (max-width:1180px){section.download>.content .download .apps a:nth-child(1){display:block}}section.download>.content .download .apps a img{max-height:100%}section.download>.content .download .image{background-image:url(/local/templates/uyutnosti/images/subscribe/image_pc.png);background-repeat:no-repeat;background-size:100% auto;width:477px;height:100%;position:absolute;top:0;left:715px}@media (max-width:1180px){section.download>.content .download .image{left:509px;width:315px;background-image:url(/local/templates/uyutnosti/images/subscribe/image_tab.png)}}@media (max-width:767px){section.download>.content .download .image{left:auto;right:0;width:216px;background-image:url(/local/templates/uyutnosti/images/subscribe/image_mob.png)}}section.download>.content .download .qr{background-image:url(/local/templates/uyutnosti/images/subscribe/qr.jpg);background-size:100px;background-position:50%;float:right;border-radius:12px;background-color:#fff;width:106px;height:106px;position:absolute;top:47px;right:86px}@media (max-width:1180px){section.download>.content .download .qr{display:none}}section.download>.content .subscribe{border-radius:22px;background:#ebe0df;display:table;width:100%}section.download>.content .subscribe .wrapper{padding:22px 86px 22px 83px;display:table;width:100%;float:left}@media (max-width:1180px){section.download>.content .subscribe .wrapper{padding:22px 37px}}@media (max-width:767px){section.download>.content .subscribe .wrapper{padding:20px 25px 23px 20px}}section.download>.content .subscribe .wrapper .text{display:block;color:#a4493d;font-size:21px;font-weight:500;line-height:120%;float:left;margin:-1px 0;position:relative}@media (max-width:1180px){section.download>.content .subscribe .wrapper .text{font-size:16px}}@media (max-width:767px){section.download>.content .subscribe .wrapper .text{font-size:14px;margin:0 0 11px 0}}section.download>.content .subscribe .wrapper form{float:right;width:767px;max-width:calc(100% - 360px)}@media (max-width:1180px){section.download>.content .subscribe .wrapper form{max-width:calc(100% - 300px)}}@media (max-width:767px){section.download>.content .subscribe .wrapper form{width:100%;max-width:100%}}section.download>.content .subscribe .wrapper form input[type="text"]{color:#7e8b91;font-family:Vela Sans;font-size:16px;font-style:normal;font-weight:400;line-height:normal;padding:10px 24px;border-radius:22px;background:#fff;margin:0 12px 0 0;width:calc(100% - 12px - 160px);border:none;float:left;height:46px}@media (max-width:1180px){section.download>.content .subscribe .wrapper form input[type="text"]{width:calc(100% - 10px - 157px);margin:0 10px 0 0;height:36px;font-size:14px}}@media (max-width:767px){section.download>.content .subscribe .wrapper form input[type="text"]{padding:10px 12px;height:34px;width:100%;margin:0 0 6px 0}}section.download>.content .subscribe .wrapper form button{height:46px;width:160px;line-height:46px;text-align:center;border-radius:22px;background:#a4493d;color:#fff;font-family:Vela Sans;font-size:16px;font-style:normal;font-weight:500;line-height:normal;border:none;cursor:pointer}@media (max-width:1180px){section.download>.content .subscribe .wrapper form button{width:157px;font-size:14px;height:36px}}@media (max-width:767px){section.download>.content .subscribe .wrapper form button{width:100%;font-size:14px;height:34px}}section.text_block>.content .text_wrapper{max-height:408px;overflow:hidden}section.text_block>.content .text_wrapper.active{max-height:none}section.text_block>.content .text_wrapper h2{color:#33333d;font-size:40px;font-weight:400;line-height:120%;margin:10px 0 20px 0;display:block}@media (max-width:1180px){section.text_block>.content .text_wrapper h2{font-size:30px;margin:0 0 16px 0}}@media (max-width:767px){section.text_block>.content .text_wrapper h2{font-size:24px;margin:0 0 12px 0}}section.text_block>.content .text_wrapper h3{font-size:24px;line-height:120%;margin:0 0 16px 0;font-weight:400}@media (max-width:767px){section.text_block>.content .text_wrapper h3{font-size:16px;margin:0 0 12px 0}}section.text_block>.content .text_wrapper p{font-size:16px;line-height:140%;margin:0 0 21px 0}@media (max-width:1180px){section.text_block>.content .text_wrapper p{font-size:14px;margin:0 0 16px 0}}section.text_block>.content .show_more_text{display:-webkit-box;display:-ms-flexbox;display:flex;color:#7e8b91;font-weight:600;cursor:pointer;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-webkit-box-align:center;-ms-flex-align:center;align-items:center}section.text_block>.content .show_more_text.active i{-webkit-transform:rotate(180deg);transform:rotate(180deg)}section.text_block>.content .show_more_text i{width:14px;height:14px;margin:0 0 0 6px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none'%3E%3Cpath d='M7.012 2.613v8.745M10.507 7.865 7 11.387 3.493 7.865' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;display:block}footer{margin:0}@media (max-width:1180px){footer>.content{padding-bottom:37px}}@media (max-width:767px){footer>.content{padding-bottom:99px}}footer>.content .data_info{display:table;width:34%}@media (max-width:1180px){footer>.content .data_info{width:43%}}@media (max-width:767px){footer>.content .data_info{width:100%}}footer>.content .data_info .logo{display:table;margin:12px 0 0 0}@media (max-width:767px){footer>.content .data_info .logo{width:156px;margin:16px 0 15px 0}}footer>.content .data_info .logo img{float:left}footer>.content .data_info .contacts_list{display:table;margin:28px 0 32px 0}@media (max-width:1180px){footer>.content .data_info .contacts_list span,footer>.content .data_info .contacts_list a{margin:0 0 12px 0}}@media (max-width:767px){footer>.content .data_info .contacts_list span,footer>.content .data_info .contacts_list a{margin:0 0 8px 0}}footer>.content .data_info .contacts_list span:last-child,footer>.content .data_info .contacts_list a:last-child{margin:0}footer>.content .social{display:table}@media (max-width:767px){footer>.content .social{margin:0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}}footer>.content .social ul.social{list-style:none;margin:0;padding:0}@media (max-width:767px){footer>.content .social ul.social{width:100%}}footer>.content .social ul.social li{float:left;display:block}footer>.content .social ul.social li:last-chid a{margin:0}footer>.content .social ul.social li a{width:30px;height:30px;margin:0 9px 0 0;background:#c3c3c3;border-radius:50%;display:block;float:left;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}footer>.content .social ul.social li a img{position:absolute}footer>.content .social ul.can_pay{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;list-style:none;margin:18px 0 0 0;padding:0}footer>.content .social ul.can_pay li{float:left;display:block;margin:0 16px 0 0}footer>.content .social ul.can_pay li:last-chid{margin:0}footer>.content .social ul.can_pay li img{float:left}footer>.content .menu{position:absolute;width:32%;top:62px}@media (max-width:1180px){footer>.content .menu{width:25%}}@media (max-width:767px){footer>.content .menu{position:relative !important;left:0 !important;width:50% !important;top:auto !important;float:left;margin:0 0 22px}}footer>.content .menu.n1{left:36%}@media (max-width:1180px){footer>.content .menu.n1{left:472px}}@media (max-width:991px){footer>.content .menu.n1{left:50%}}footer>.content .menu.n2{left:calc(34% + 34%)}@media (max-width:1180px){footer>.content .menu.n2{left:calc(472px + 25%)}}@media (max-width:991px){footer>.content .menu.n2{left:75%}}footer>.content .menu nav{width:50%;float:left;display:table}@media (max-width:1180px){footer>.content .menu nav{width:100%}}@media (max-width:1180px){footer>.content .menu nav:nth-child(1){margin:0 0 32px 0}}footer>.content .menu nav>span,footer>.content .menu nav>a{text-transform:uppercase;display:block;margin:0 0 12px 0;color:#7e8b91;font-size:12px;font-weight:600;letter-spacing:.6px;text-decoration:none}footer>.content .menu nav ul{margin:0;padding:0;list-style:none}footer>.content .menu nav ul li:last-child a{margin:0}footer>.content .menu nav ul li a{margin:0 0 16px 0;text-decoration:none;color:#33333d;font-size:14px;display:block}footer>.content .menu nav ul li a:hover{text-decoration:underline}footer>.content .menu nav ul li a[href="/catalog/sale/"]{color:#a4493d}footer>.content .menu nav ul li a .ico{float:left;margin:0 8px 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:18px;height:18px;position:relative}footer>.content .menu nav ul li a .ico img{position:absolute}footer>.content .bottom_line{margin:27.5px 0 68px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:end}@media (max-width:1180px){footer>.content .bottom_line{width:375px;margin:27px 0 0 0;display:table}}@media (max-width:767px){footer>.content .bottom_line{width:100%;text-align:center;margin:16px 0 0 0}}footer>.content .bottom_line>*{color:#7e8b91;font-size:12px;display:block;line-height:140%}@media (max-width:1180px){footer>.content .bottom_line>*{margin:0 0 12px 0}}footer>.content .bottom_line>*:last-child{margin:0}@media (max-width:1180px){footer>.content .bottom_line .text br{display:none}}footer>.content .bottom_line a{text-decoration:underline}footer>.content .bottom_line a:hover{text-decoration:none}.product_page>.content .column.n1{width:48.8%;float:left}@media (max-width:767px){.product_page>.content .column.n1{width:100%}}.product_page>.content .column.n1 .big_sale{background:#ff4b52;color:#fff;text-decoration:none;font-weight:500;padding:0 10px;border-radius:5px;position:absolute;top:8px;left:8px;line-height:30px;z-index:2}.product_page>.content .column.n1 .owl-wrapper.big{table-layout:fixed;display:table;width:100%;position:relative}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .item{text-decoration:none;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:22px;overflow:hidden;background-size:cover;background-position:50%;background-size:contain;background-repeat:no-repeat;height:auto;padding:50% 0}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav{margin:0}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button{position:absolute;top:50%;margin:0;margin-top:calc(-23px - 15.5px);width:46px;height:46px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button{margin-top:calc(-19px - 15.5px);width:38px;height:38px}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button{margin-top:calc(-15px - 12.5px);width:30px;height:30px}}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button.owl-prev{left:10px}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button.owl-prev{left:-5px}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button.owl-prev{left:-15px}}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button.owl-next{right:10px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button.owl-next{right:-5px}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button.owl-next{right:-15px}}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-nav button span{display:none}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots{margin:4px 0 0 0}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots{margin:4px 0 0 0}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots{margin:2px 0 0 0}}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots button{padding:10px 4px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots button.active span{background:#a4493d;width:88px}.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots button span{border-radius:3px;background:#d9ebf2;width:44px;height:3px;margin:10px 4px}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots button span{margin:8px 4px}}.product_page>.content .column.n1 .owl-wrapper.small{table-layout:fixed;display:table;width:100%;position:relative;margin:20px 0 0 0}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.small{margin:20px 0 20px 0}}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .item{text-decoration:none;display:-webkit-box;display:-ms-flexbox;display:flex;border-radius:22px;overflow:hidden;background-size:cover;background-position:50%;background-repeat:no-repeat;height:auto;padding:50% 0;cursor:pointer}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .item.actual{position:relative}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .item.actual::before{content:"";border:solid 2px #a4493d;position:absolute;border-radius:22px;width:calc(100% - 4px);height:calc(100% - 4px);top:0;left:0}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav{margin:0}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button{position:absolute;top:50%;margin:0;margin-top:calc(-18px);width:36px;height:36px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button{margin-top:-15px;width:30px;height:30px}}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button.owl-prev{left:10px}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button.owl-prev{left:-5px}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button.owl-prev{left:-15px}}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button.owl-next{right:10px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button.owl-next{right:-5px}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button.owl-next{right:-15px}}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-nav button span{display:none}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots{margin:4px 0 0 0}@media (max-width:1180px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots{margin:4px 0 0 0}}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots{margin:2px 0 0 0}}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots button{padding:10px 4px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots button.active span{background:#a4493d;width:88px}.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots button span{border-radius:3px;background:#d9ebf2;width:44px;height:3px;margin:10px 4px}@media (max-width:767px){.product_page>.content .column.n1 .owl-wrapper.small .owl-carousel .owl-dots button span{margin:8px 4px}}@media (max-width:1080px){.product_page>.content .column.n1>.images{display:none}}.product_page>.content .column.n1>.images a{border-radius:22px;float:left;padding:25% 0;height:auto;background-size:cover;background-position:50%;background-size:contain;background-repeat:no-repeat}.product_page>.content .column.n1>.images a:nth-child(3n-2){width:calc(50% - 5px)}.product_page>.content .column.n1>.images a:nth-child(3n-1){width:calc(50% - 5px);float:right}.product_page>.content .column.n1>.images a:nth-child(3n){width:100%;margin:10px 0 10px 0;padding:50% 0}.product_page>.content .column.n1>.images a:last-child{margin-bottom:0}.product_page>.content .column.n2{width:46.3%;float:right}@media (min-width:1081px){.product_page>.content .column.n2{position:-webkit-sticky;position:sticky;top:20px}}@media (max-width:767px){.product_page>.content .column.n2{width:100%}}.product_page>.content .column.n2 .top_line{font-size:12px;line-height:22px}.product_page>.content .column.n2 .top_line .vendor_code{color:#7e8b91;float:left;display:block}.product_page>.content .column.n2 .top_line .in_stock{color:#7e8b91;float:right;display:block}.product_page>.content .column.n2 .top_line .in_stock.y{color:#53845e}.product_page>.content .column.n2 .top_line .in_stock.n{color:#d70000}.product_page>.content .column.n2 .top_line .label{line-height:1.3336;float:right;display:block;color:#fff;font-size:12px;font-weight:700;padding:3px 6px 3px 10px;margin:0 0 0 15px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' fill='none'%3E%3Cpath d='M48 12c0-6.627-5.373-12-12-12H0l4.073 6.959a8 8 0 0 1 0 8.082L0 22h48V12Z' fill='%2333333D'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.product_page>.content .column.n2 .top_line .label.red{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' fill='none'%3E%3Cpath d='M48 12c0-6.627-5.373-12-12-12H0l4.073 6.959a8 8 0 0 1 0 8.082L0 22h48V12Z' fill='%23ff4b52'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .eko{float:left;margin:8px 0 26px 0}@media (max-width:1080px){.product_page>.content .column.n2 .eko{margin:12px 0 16px 0}}@media (max-width:767px){.product_page>.content .column.n2 .eko{margin:6px 0 16px 0}}.product_page>.content .column.n2 .eko svg{height:19px;width:68px;float:left}@media (max-width:767px){.product_page>.content .column.n2 .eko svg{height:16px;width:57.2px}}.product_page>.content .column.n2 h1{margin:16px 0 8px 0;font-size:36px;display:table;float:left;line-height:1.2;width:100%}@media (max-width:1080px){.product_page>.content .column.n2 h1{margin:8px 0 12px 0;font-size:32px}}@media (max-width:767px){.product_page>.content .column.n2 h1{margin:4px 0 6px 0;font-size:21px}}.product_page>.content .column.n2 .rr{width:100%;float:left;margin:4px 0 0 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.product_page>.content .column.n2 .rr{margin:3px 0 0 0}}.product_page>.content .column.n2 .rr .raiting{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.product_page>.content .column.n2 .rr .raiting .star{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='11' fill='none'%3E%3Cpath d='m6.5 0 1.834 3.67 4.348.476L9.467 6.89l.854 3.964L6.5 8.88l-3.82 1.974.853-3.964L.318 4.146l4.348-.476L6.5 0Z' fill='%23A4493D'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;display:block;width:16px;height:16px}.product_page>.content .column.n2 .rr .raiting .count{color:#33333d;font-size:14px;font-weight:500;margin:0 0 0 6px}@media (max-width:767px){.product_page>.content .column.n2 .rr .raiting .count{font-size:12px}}.product_page>.content .column.n2 .rr .reviews{color:#7e8b91;text-decoration:none;font-size:14px;font-weight:500;float:left;display:block}@media (max-width:767px){.product_page>.content .column.n2 .rr .reviews{font-size:12px}}.product_page>.content .column.n2 .rr .reviews a{color:#7e8b91;text-decoration:none}.product_page>.content .column.n2 .goods_values{display:table;float:left;width:100%;clear:both;margin:25px 0 30px 0}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values{margin:16px 0 16px 0}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values{margin:16px 0 20px 0}}.product_page>.content .column.n2 .goods_values .table{display:table;width:100%;margin:0 0 16px 0}.product_page>.content .column.n2 .goods_values .table:last-child{margin:0}.product_page>.content .column.n2 .goods_values .table .line{display:table;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:left;-ms-flex-pack:left;justify-content:left;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.product_page>.content .column.n2 .goods_values .table .line .column.name{width:185px}@media (max-width:1280px){.product_page>.content .column.n2 .goods_values .table .line .column.name{width:135px}}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values .table .line .column.name{width:118px}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .line .column.name{width:116px}}.product_page>.content .column.n2 .goods_values .table .line .column.count{width:117px;text-align:center}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values .table .line .column.count{width:117px}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .line .column.count{width:109px}}.product_page>.content .column.n2 .goods_values .table .line .column.price{margin:0 0 0 80px}@media (max-width:1280px){.product_page>.content .column.n2 .goods_values .table .line .column.price{margin:0 0 0 40px}}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values .table .line .column.price{margin:0 0 0 14px}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .line .column.price{margin:0 0 0 9px}}.product_page>.content .column.n2 .goods_values .table .thead{display:table;width:100%;margin:0 0 8px 0}.product_page>.content .column.n2 .goods_values .table .thead .line .column{color:#7e8b91;font-size:12px;display:table;float:left}.product_page>.content .column.n2 .goods_values .table .tbody{display:table;width:100%}.product_page>.content .column.n2 .goods_values .table .tbody .line{width:100%;margin:0 0 8px 0}.product_page>.content .column.n2 .goods_values .table .tbody .line:last-child{margin:0}.product_page>.content .column.n2 .goods_values .table .tbody .line .column{display:table;float:left}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.name{font-size:18px}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.name{font-size:16px}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.name{font-size:14px}}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count{border-radius:22px;border:1px solid #f2f2f2;display:-webkit-box;display:-ms-flexbox;display:flex;width:117px;padding:6px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count{width:109px;padding:6px 8px}}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count .minus,.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count .plus{width:24px;height:24px;cursor:pointer;background-position:50%;background-repeat:no-repeat}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count .minus,.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count .plus{width:20px;height:20px;background-size:contain}}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count .minus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='M16 12H8M12 21a9 9 0 0 1-9-9 9 9 0 0 1 9-9 9 9 0 0 1 9 9 9 9 0 0 1-9 9Z' stroke='%23C2D4DD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count .plus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none'%3E%3Cpath d='M12 8v8M16 12H8M12 21a9 9 0 0 1-9-9 9 9 0 0 1 9-9 9 9 0 0 1 9 9 9 9 0 0 1-9 9Z' stroke='%23C2D4DD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count input{width:calc(100% - 24px - 24px);border:none;text-align:center}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.count .count input{width:calc(100% - 20px - 20px)}}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block{margin:0}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block .price{margin:0 7.5px 0 0;font-size:18px}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block .price{font-size:16px}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block .price{font-size:14px}}.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block .old_price{font-size:14px;color:#929292}@media (max-width:1080px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block .old_price{font-size:14px}}@media (max-width:767px){.product_page>.content .column.n2 .goods_values .table .tbody .line .column.price .price_block .old_price{font-size:12px}}.product_page>.content .column.n2 .total{display:table;float:left;width:100%;clear:both;margin:0 0 16px 0}@media (max-width:767px){.product_page>.content .column.n2 .total{margin:0 0 7px 0}}.product_page>.content .column.n2 .total .price_block{line-height:29px}@media (max-width:1080px){.product_page>.content .column.n2 .total .price_block{line-height:25px}}.product_page>.content .column.n2 .total .price_block .price{font-size:24px;font-weight:500;display:block;float:left;margin:0 15px 0 0}@media (max-width:1080px){.product_page>.content .column.n2 .total .price_block .price{font-size:21px}}@media (max-width:767px){.product_page>.content .column.n2 .total .price_block .price{font-size:18px;margin:0 9px 0 0}}.product_page>.content .column.n2 .total .price_block .old_price{display:block;float:left;font-size:18px;color:#929292}@media (max-width:1080px){.product_page>.content .column.n2 .total .price_block .old_price{font-size:14px}}@media (max-width:767px){.product_page>.content .column.n2 .total .price_block .old_price{font-size:12px}}.product_page>.content .column.n2 .total .price_block .label{line-height:1.3336;float:left;display:block;color:#fff;font-size:12px;font-weight:700;padding:3px 6px 3px 10px;margin:0 0 0 15px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' fill='none'%3E%3Cpath d='M48 12c0-6.627-5.373-12-12-12H0l4.073 6.959a8 8 0 0 1 0 8.082L0 22h48V12Z' fill='%2333333D'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.product_page>.content .column.n2 .total .price_block .label.red{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='22' fill='none'%3E%3Cpath d='M48 12c0-6.627-5.373-12-12-12H0l4.073 6.959a8 8 0 0 1 0 8.082L0 22h48V12Z' fill='%23ff4b52'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .buttons{display:table;float:left;width:100%;clear:both;margin:0 0 30px 0}@media (max-width:1080px){.product_page>.content .column.n2 .buttons{margin:0 0 21px 0}}@media (max-width:767px){.product_page>.content .column.n2 .buttons{margin:0 0 18px 0;z-index:10;border-radius:12px 12px 0 0;background:#fff;position:fixed;left:0;bottom:57px;margin:0;padding:10px 18px 15px 18px}.product_page>.content .column.n2 .buttons::before{content:"";display:block;width:100%;height:10px;position:absolute;top:0;left:0;-webkit-box-shadow:0 -4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 -4px 11px 0 rgba(51,51,61,0.1);border-radius:12px 12px 0 0}}.product_page>.content .column.n2 .buttons .change_quantity{width:156px;margin:0 14px 0 0;height:50px;padding:0;border-radius:24.429px;border:1px solid #f2f2f2;background:#fff;display:-webkit-box;display:-ms-flexbox;display:flex;float:left}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .change_quantity{height:46px;width:135px}}@media (max-width:767px){.product_page>.content .column.n2 .buttons .change_quantity{margin:0 9px 0 0;height:40px;width:115px}}.product_page>.content .column.n2 .buttons .change_quantity .control{position:relative;width:42px;height:42px;cursor:pointer;-webkit-transition:300ms all ease;transition:300ms all ease;-webkit-user-select:none;margin:3px;border-radius:50%;display:block;float:left;border:none !important;background-position:50% !important;background-repeat:no-repeat !important}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .change_quantity .control{width:38px;height:38px}}@media (max-width:767px){.product_page>.content .column.n2 .buttons .change_quantity .control{width:32px;height:32px}}.product_page>.content .column.n2 .buttons .change_quantity .control.minus{background:#f2f2f2;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='29' fill='none'%3E%3Ccircle cx='14.1' cy='14.5' r='13.843' fill='%23f2f2f2'/%3E%3Cpath d='M6.771 14.5H21.43' stroke='%239EA7B6' stroke-width='1.221'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .buttons .change_quantity .control.plus{background:#a4493d;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='29' fill='none'%3E%3Ccircle cx='13.9' cy='14.5' r='13.843' fill='%23A4493D'/%3E%3Cpath d='M6.571 14.5H21.23M13.9 7.171V21.83' stroke='%23fff' stroke-width='1.221'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .buttons .change_quantity .quantity{text-align:center;font-size:22px;font-weight:500;border:none;height:48px;width:calc(100% - 48px - 48px)}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .change_quantity .quantity{font-size:20px;height:44px;width:calc(100% - 42px - 42px)}}@media (max-width:767px){.product_page>.content .column.n2 .buttons .change_quantity .quantity{font-size:18px;height:38px;width:calc(100% - 38px - 38px)}}.product_page>.content .column.n2 .buttons .to_basket,.product_page>.content .column.n2 .buttons .to_basket_page{display:table;background:#a4493d;color:#fff;cursor:pointer;margin:0 14px 0 0;width:calc(100% - 64px - 170px);font-size:16px;font-weight:600;line-height:50px;padding:0 16px;border-radius:25px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;float:left}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .to_basket,.product_page>.content .column.n2 .buttons .to_basket_page{width:calc(100% - 46px - 165px);line-height:46px;border-radius:23px;font-size:14px;margin:0 16px 0 0}}@media (max-width:767px){.product_page>.content .column.n2 .buttons .to_basket,.product_page>.content .column.n2 .buttons .to_basket_page{width:calc(100% - 173px);line-height:40px;border-radius:20px;margin:0 9px 0 0}}@media (max-width:420px){.product_page>.content .column.n2 .buttons .to_basket .text.n1,.product_page>.content .column.n2 .buttons .to_basket_page .text.n1{display:none}}@media (min-width:421px){.product_page>.content .column.n2 .buttons .to_basket .text.n2,.product_page>.content .column.n2 .buttons .to_basket_page .text.n2{display:none}}.product_page>.content .column.n2 .buttons .to_basket i,.product_page>.content .column.n2 .buttons .to_basket_page i{float:right;margin:0 0 0 6px;display:block;width:26px;height:26px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='21' fill='none'%3E%3Cpath d='M16.306 6.125H5.694a.875.875 0 0 0-.873.816l-.697 10.443a1.75 1.75 0 0 0 1.747 1.866h10.258a1.75 1.75 0 0 0 1.747-1.866L17.179 6.94a.875.875 0 0 0-.873-.816Z' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13.626 7.875v-3.5A2.625 2.625 0 0 0 11 1.75H11a2.625 2.625 0 0 0-2.625 2.625v3.5M9.25 10.5v.875M12.75 10.5v.875M14.063 14.602S12.912 15.75 11 15.75c-1.915 0-3.063-1.148-3.063-1.148' stroke='%23fff' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23fff' d='M0 24C0 10.7 10.7 0 24 0h45.5c22 0 41.5 12.8 50.6 32h411c26.3 0 45.5 25 38.6 50.4l-41 152.3c-8.5 31.4-37 53.3-69.5 53.3H170.7l5.4 28.5c2.2 11.3 12.1 19.5 23.6 19.5H488c13.3 0 24 10.7 24 24s-10.7 24-24 24H199.7c-34.6 0-64.3-24.6-70.7-58.5l-51.6-271c-.7-3.8-4-6.5-7.9-6.5H24C10.7 48 0 37.3 0 24zm128 440a48 48 0 1 1 96 0 48 48 0 1 1-96 0zm336-48a48 48 0 1 1 0 96 48 48 0 1 1 0-96z'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:cover}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .to_basket i,.product_page>.content .column.n2 .buttons .to_basket_page i{width:22px;height:22px}}.product_page>.content .column.n2 .buttons .to_basket_page{display:none}.product_page>.content .column.n2 .buttons .ask_have{display:table;background:#a4493d;color:#fff;cursor:pointer;margin:0 14px 0 0;width:calc(100% - 64px);font-size:16px;font-weight:600;line-height:50px;padding:0 16px;border-radius:25px;text-align:center;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;float:left}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .ask_have{width:calc(100% - 46px - 16px);line-height:46px;border-radius:23px;font-size:14px;margin:0 16px 0 0}}@media (max-width:767px){.product_page>.content .column.n2 .buttons .ask_have{width:calc(100% - 49px);line-height:40px;border-radius:20px;margin:0 9px 0 0}}.product_page>.content .column.n2 .buttons .to_wish_list{border-radius:50%;background-color:#f2f2f2;width:50px;height:50px;cursor:pointer;display:block;float:left}@media (max-width:1080px){.product_page>.content .column.n2 .buttons .to_wish_list{width:46px;height:46px}}@media (max-width:767px){.product_page>.content .column.n2 .buttons .to_wish_list{width:40px;height:40px}}.product_page>.content .column.n2 .buttons .to_wish_list.active{background-image:url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.008 4.333c3.434 0 5.742 3.229 5.742 6.24 0 6.1-9.577 11.094-9.75 11.094-.173 0-9.75-4.995-9.75-11.094 0-3.011 2.308-6.24 5.742-6.24 1.971 0 3.26.986 4.008 1.853.748-.867 2.037-1.853 4.008-1.853Z' stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' fill='%23A4493D' stroke-linejoin='round'/%3E%3C/svg%3E")}.product_page>.content .column.n2 .base_params_block{border-radius:22px;background:#f2f2f2;display:table;width:100%;overflow:hidden;padding:24px 30px;margin:0 0 22px 0}@media (max-width:1180px){.product_page>.content .column.n2 .base_params_block{padding:18px 20px}}@media (max-width:767px){.product_page>.content .column.n2 .base_params_block{padding:21px 15px}}.product_page>.content .column.n2 .base_params_block .els{width:100%;display:table;padding:0 0 14px 0;border-bottom:solid 1px rgba(194,212,221,0.6)}@media (max-width:1180px){.product_page>.content .column.n2 .base_params_block .els{padding:0 0 6px 0}}.product_page>.content .column.n2 .base_params_block .els .el{display:table;width:100%;margin:0 0 8px 0}@media (max-width:1180px){.product_page>.content .column.n2 .base_params_block .els .el{font-size:12px}}.product_page>.content .column.n2 .base_params_block .els .el .name{color:#7e8b91;display:block;width:52%;padding-right:4%;float:left}.product_page>.content .column.n2 .base_params_block .els_2{margin:22px 0 -12px 0;padding:0 0 8px 0;display:table;width:100%}@media (max-width:1180px){.product_page>.content .column.n2 .base_params_block .els_2{margin:14px 0 -14px 0;padding:0 0 2px 0}}@media (max-width:767px){.product_page>.content .column.n2 .base_params_block .els_2{margin:16px 0 -16px 0;padding:0 0 3px 0}}.product_page>.content .column.n2 .base_params_block .els_2 .el{width:52%;float:left;font-weight:600;font-size:12px;letter-spacing:.44px;text-transform:uppercase;margin:0 0 12px 0;padding-right:4%;text-decoration:underline;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.product_page>.content .column.n2 .base_params_block .els_2 .el:hover{text-decoration:none}@media (max-width:1180px){.product_page>.content .column.n2 .base_params_block .els_2 .el{font-size:11px;margin:0 0 14px 0}}@media (max-width:767px){.product_page>.content .column.n2 .base_params_block .els_2 .el{font-size:10px;margin:0 0 16px 0}}.product_page>.content .column.n2 .base_params_block .els_2 .el:nth-child(2n){width:48%}.product_page>.content .column.n2 .base_params_block .els_2 .el .ico{position:relative;width:20px;height:20px;margin:0 7px 0 0;float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){.product_page>.content .column.n2 .base_params_block .els_2 .el .ico{width:14px;height:14px}}.product_page>.content .column.n2 .base_params_block .els_2 .el .ico img{max-width:100%;max-height:100%}.accordion{width:100%;float:left;display:table}.accordion.s2 .el.active>.name{color:#a4493d}.accordion .el{width:100%;display:table;border-radius:22px;position:relative}.accordion .el.active{z-index:2;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07)}.accordion .el.active>.name{padding:22px 50px 13px 30px}@media (max-width:1180px){.accordion .el.active>.name{padding:22px 40px 13px 20px}}.accordion .el.active>.name::after{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.accordion .el.active>.value{display:table;width:100%}.accordion .el>.name{background:#fff;min-height:52px;font-size:18px;padding:13px 50px 13px 30px;position:relative;cursor:pointer;width:100%;display:block}@media (max-width:1180px){.accordion .el>.name{padding:16px 40px 13px 20px;font-size:16px}}@media (max-width:767px){.accordion .el>.name{padding:13px 40px 13px 17px;font-size:14px}}.accordion .el>.name::after{content:"";display:block;background-image:url("data:image/svg+xml,%3Csvg width='14' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1.083 6 5.834 6-5.834' stroke='%2333333D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;width:40px;height:40px;position:absolute;top:50%;margin:-20px 0 0 0;right:22px}@media (max-width:767px){.accordion .el>.name::after{background-size:8px auto;right:2px}}.accordion .el>.value{display:none;padding:0 30px 19px 30px}@media (max-width:1180px){.accordion .el>.value{padding:0 20px 9px 20px}}@media (max-width:767px){.accordion .el>.value{padding:0 17px 16px 17px}}.accordion .el>.value .params .line{padding:8px 0;border-bottom:solid 1px rgba(194,212,221,0.5)}@media (max-width:767px){.accordion .el>.value .params .line{padding:8px 0 11px 0;font-size:12px}}.accordion .el>.value .params .line:last-child{border-bottom:none}.accordion .el>.value .params .line .name{color:#7e8b91;display:block;width:52%;padding-right:4%;float:left}.accordion .el>.value .text a{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.accordion .el>.value .text a:hover{text-decoration:none}section.breadcrumbs{margin:0 0 20px 0}@media (max-width:1180px){section.breadcrumbs{margin:0 0 14px 0}}@media (max-width:767px){section.breadcrumbs{margin:0 0 8px 0}}section.breadcrumbs>.content .breadcrumbs{display:table;table-layout:fixed;width:100%;position:relative}section.breadcrumbs>.content .breadcrumbs ul{margin:0;padding:0;list-style:none}@media (max-width:767px){section.breadcrumbs>.content .breadcrumbs ul{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto}}section.breadcrumbs>.content .breadcrumbs ul li{float:left;display:block;display:-webkit-box;display:-ms-flexbox;display:flex}section.breadcrumbs>.content .breadcrumbs ul li a{color:#7e8b91;display:block;float:left;text-decoration:none;font-size:12px;margin:0 34px 0 0;position:relative}@media (max-width:767px){section.breadcrumbs>.content .breadcrumbs ul li a{white-space:nowrap}}section.breadcrumbs>.content .breadcrumbs ul li a:hover{text-decoration:underline}section.breadcrumbs>.content .breadcrumbs ul li a::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='8' fill='none'%3E%3Cpath d='M1.333 6.667 4 4 1.333 1.333' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;width:34px;height:100%;position:absolute;left:100%;top:0}section.breadcrumbs>.content .breadcrumbs ul li span{font-size:12px;float:left}@media (max-width:767px){section.breadcrumbs>.content .breadcrumbs ul li span{white-space:nowrap}}.auth_call_block{display:none}.popup_bg{display:none}.popup_bg.active{display:table;background:rgba(51,51,61,0.4);position:fixed;width:100%;height:100%;top:0;left:0;z-index:2}.popup-window-overlay{display:table;background:rgba(51,51,61,0.4) !important;opacity:1 !important;position:fixed;width:100%;height:100%;top:0;left:0;z-index:2}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup){position:fixed !important;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:46px 40px 46px 40px;width:363px;height:620px;max-height:90%;margin:-310px 0 0 -181.5px;left:50% !important;top:50%;z-index:3;height:auto;margin-top:40px;top:0 !important;max-height:none !important}@media (max-width:767px){.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup){padding:19px 20px;top:34px !important;left:16px !important;width:calc(100% - 32px) !important;margin:0;height:auto;max-height:calc(100vh - 34px - 62px - 20px)}}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-close-icon{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none'%3E%3Cpath d='m12 12 12 12M24 12 12 24' stroke='%23969FA8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");position:absolute;width:36px;height:36px;top:10px;right:10px;cursor:pointer}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-close-icon::before,.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-close-icon::after{display:none}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content .alert{margin:0 0 20px;float:left;width:100%;display:table}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content .button.n1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:54px;padding:12px 16px;border-radius:22px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;font-family:Vela Sans;font-size:16px;font-style:normal;font-weight:600;cursor:pointer;margin:20px 0 0 0;border:none;background:#a4493d;color:#fff;text-decoration:none;float:left}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content .button.n1[value="Войти"]{margin:30px 0 0 0}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content .button.n1:hover{color:#33333d;background:#f2f2f2}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content .button.n2{border:none;background:#f2f2f2;color:#33333d;float:left}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content .button.n2:hover{color:#fff;background:#a4493d}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content>.title{display:block;font-size:24px;font-style:normal;font-weight:400;margin:0 0 16px 0;font-family:Vela Sans}@media (max-width:767px){.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el{margin:0 0 10px 0;float:left;width:100%;display:table}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el.hide{display:none}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label{display:block;margin:0 0 4px 0;color:#7e8b91;font-size:12px}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label[data-bx-user-consent]{margin:19px 0 23px 0;display:table;width:100%;float:left}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label[data-bx-user-consent] input[type="checkbox"]{display:none}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label[data-bx-user-consent] input[type="checkbox"]:checked+span::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='m9 1.25-5.5 5.5L1 4.25' stroke='%23A4493D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label[data-bx-user-consent] input[type="checkbox"]+span{color:#7e8b91;font-size:12px;padding:0 0 0 29px;position:relative;display:block}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label[data-bx-user-consent] input[type="checkbox"]+span::before{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:0;border-radius:4px;background:#ebe0df}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el label[data-bx-user-consent] input[type="checkbox"]+span::after{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:0}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el input{height:44px;padding:6px 16px;width:100%;border-radius:6px;border:1px solid #f2f2f2;background:rgba(255,255,255,0.3)}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .el input[name="USER_PHONE_NUMBER"]+.bx-authform-note-container{color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:400;line-height:normal;margin:16px 0 0 0;display:table;width:100%;float:left}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .dont_remember{display:table;margin:0 auto;color:#a4493d;font-size:12px;font-weight:500;cursor:pointer;text-decoration:underline}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form .dont_remember:hover{text-decoration:none}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form input[name="Register"]+div{margin:0}.popup-window:not(#ydPopup):not(#twpx_yadelivery_popup) .popup-window-content form input[name="Register"]+div+.button{margin:0}.popup{display:none}.popup .popup_close{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none'%3E%3Cpath d='m12 12 12 12M24 12 12 24' stroke='%23969FA8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");position:absolute;width:36px;height:36px;top:10px;right:10px;cursor:pointer}.popup.active{display:table}.popup.active .button.n1{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;height:54px;padding:12px 16px;border-radius:22px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;font-family:Vela Sans;font-size:16px;font-style:normal;font-weight:600;cursor:pointer;margin:30px 0 0 0;border:none;background:#a4493d;color:#fff;text-decoration:none}.popup.active .button.n1:hover{color:#33333d;background:#f2f2f2}.popup.active .button.n2{border:none;background:#f2f2f2;color:#33333d}.popup.active .button.n2:hover{color:#fff;background:#a4493d}.popup.active.city{position:fixed;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:50px 50px 43px 50px;width:585px;height:620px;max-height:90%;margin:-310px 0 0 -292.5px;left:50%;top:50%;z-index:3;margin-top:40px;top:0}@media (max-width:767px){.popup.active.city{padding:19px 20px;top:34px;left:16px;width:calc(100% - 32px);margin:0;height:auto;max-height:calc(100vh - 34px - 62px - 20px)}}.popup.active.city .content>.title{display:block;font-size:26px;font-style:normal;font-weight:500;margin:0 0 16px 0}@media (max-width:767px){.popup.active.city .content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}.popup.active.city .content .big_cities{display:table}.popup.active.city .content .big_cities .city{display:block;float:left;font-size:18px;font-weight:500;margin:0 20px 0 0;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){.popup.active.city .content .big_cities .city{font-size:14px;margin:0 18px 0 0}}.popup.active.city .content .big_cities .city:hover{text-decoration:underline}.popup.active.city .content .choose_city_title{color:#969fa8;font-weight:500;display:block;margin:20px 0 11px 0}@media (max-width:767px){.popup.active.city .content .choose_city_title{font-size:12px;margin:11px 0 9px 0}}.popup.active.city .content form{position:relative}.popup.active.city .content form input{border-radius:22px;border:1px solid #f2f2f2;height:44px;width:calc(100% - 4px - 150px);padding:10px 12px 10px 45px}@media (max-width:767px){.popup.active.city .content form input{font-size:12px;height:34px;border-radius:22px;border:1px solid #f2f2f2;padding:10px 12px 10px 33px;width:calc(100% - 4px - 79px)}}.popup.active.city .content form svg{position:absolute;width:24px;height:24px;top:10px;left:12px}@media (max-width:767px){.popup.active.city .content form svg{width:19px;height:19px;top:7px}}.popup.active.city .content form button{height:44px;width:150px;border-radius:22px;background:#a4493d;color:#fff;font-size:16px;font-weight:500;outline:none;border:none;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){.popup.active.city .content form button{width:79px;height:34px;font-size:12px}}.popup.active.city .content form button:hover{color:#a4493d;background:#fff;border:solid 1px #a4493d}.popup.active.city .content .cities_list{margin:20px 0 0 0;-webkit-column-count:3;column-count:3;-webkit-column-gap:18px;column-gap:18px}@media (max-width:767px){.popup.active.city .content .cities_list{margin:16px 0 0 0;-webkit-column-count:unset;column-count:unset;-webkit-column-gap:unset;column-gap:unset;overflow-y:scroll;overflow-x:hidden;width:100%;max-height:calc(100vh - 34px - 62px - 20px - 38px - 150px)}}@media (max-width:767px){.popup.active.city .content .cities_list>div{display:block;width:100%;-webkit-column-count:2;column-count:2;-webkit-column-gap:18px;column-gap:18px}}.popup.active.city .content .cities_list .city{line-height:200%;display:block;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.popup.active.city .content .cities_list .city:hover{text-decoration:underline}.popup.active.city .content .cities_list .city.hidden{display:none}.popup.active.city .content .cities_list .empty{display:none;color:#969fa8}.popup.active.city .content .cities_list .empty.active{display:block}.popup.active.enter{position:fixed;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:46px 40px 46px 40px;width:363px;height:620px;max-height:90%;margin:-310px 0 0 -181.5px;left:50%;top:50%;z-index:3;height:auto;margin-top:40px;top:0}@media (max-width:767px){.popup.active.enter{padding:19px 20px;top:34px;left:16px;width:calc(100% - 32px);margin:0;height:auto;max-height:calc(100vh - 34px - 62px - 20px)}}.popup.active.enter .content>.title{display:block;font-size:26px;font-style:normal;font-weight:500;margin:0 0 16px 0}@media (max-width:767px){.popup.active.enter .content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}.popup.active.enter .content form .el{margin:0 0 10px 0}.popup.active.enter .content form .el label{display:block;margin:0 0 4px 0;color:#7e8b91;font-size:12px}.popup.active.enter .content form .el input{height:44px;padding:6px 16px;width:100%;border-radius:6px;border:1px solid #f2f2f2;background:rgba(255,255,255,0.3)}.popup.active.enter .content form .dont_remember{display:table;margin:0 auto;color:#a4493d;font-size:12px;font-weight:500;cursor:pointer;text-decoration:underline}.popup.active.enter .content form .dont_remember:hover{text-decoration:none}.popup.active.text{position:fixed;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:46px 40px 46px 40px;width:363px;height:620px;max-height:90%;margin:-310px 0 0 -181.5px;left:50%;z-index:3;height:auto;top:50%}@media (max-width:767px){.popup.active.text{padding:19px 20px;left:16px;width:calc(100% - 32px);height:auto;max-height:calc(100vh - 34px - 62px - 20px);margin-left:0}}.popup.active.text.s2{padding:20px}.popup.active.text.s2 .content>.title{font-size:24px}.popup.active.text.s3{padding:47px 40px;width:726px;margin:0 0 0 -363px;top:40px}@media (max-width:767px){.popup.active.text.s3{padding:20px;margin:0;width:calc(100% - 32px)}}.popup.active.text.s3>.content{overflow-y:auto;max-height:calc(100vh - 160px)}.popup.active.text.popup_coupon{background:#33333d;color:#fff;padding:15px 30px}.popup.active.text.popup_coupon .content>.title{font-size:18px;margin:0 0 1px 0;line-height:1.1}.popup.active.text .content>.title{display:block;font-size:26px;font-style:normal;font-weight:500;margin:0 0 16px 0}@media (max-width:767px){.popup.active.text .content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}.popup.active.text .content .button{display:block;width:281px;max-width:100%;height:54px;line-height:54px;margin:35px 31px 0 1px;border-radius:22px;background-color:#a4493d;text-align:center;color:#fff;font-size:16px;font-weight:600;cursor:pointer}.popup.active.anketa{position:fixed;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:46px 40px;border-radius:22px;width:790px;height:620px;max-height:90%;margin:40px 0 0 -395px;left:50%;top:50%;z-index:3;margin-top:40px;top:0}@media (max-width:767px){.popup.active.anketa{top:34px;left:16px;width:calc(100% - 32px);margin:0;height:auto;max-height:calc(100vh - 34px - 62px - 20px)}}.popup.active.anketa .content{max-height:calc(100vh - 80px - 62px);overflow-y:auto}@media (max-width:767px){.popup.active.anketa .content{max-height:calc(100vh - 80px - 122px)}}.popup.active.anketa .content>.title{display:block;font-size:24px;line-height:1.2;font-style:normal;margin:0 0 15px 0;color:#33333d}@media (max-width:767px){.popup.active.anketa .content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}.popup.active.anketa .content>.text{font-size:14px;display:block;line-height:normal;color:#33333d;margin:0 0 20px 0}.popup.active.anketa .content form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.popup.active.anketa .content form .title{font-size:18px;line-height:1.2;display:block;margin:0 0 15px 0;width:100%}.popup.active.anketa .content form .label{color:#7e8b91;font-size:12px;display:block;margin:0 0 4px 0;width:100%}.popup.active.anketa .content form label{cursor:pointer}.popup.active.anketa .content form .el{margin:0 0 9px 0}.popup.active.anketa .content form .el.file{margin:0 0 15px 0}.popup.active.anketa .content form .el:last-child{margin:0}.popup.active.anketa .content form .el.s1{width:100%}.popup.active.anketa .content form .el.s2{width:calc(50% - 5px)}@media (max-width:767px){.popup.active.anketa .content form .el.s2{width:100%}}.popup.active.anketa .content form .el.s3{width:calc(33.33% - 25px/3*2)}@media (max-width:767px){.popup.active.anketa .content form .el.s3{width:100%}}.popup.active.anketa .content form .el.bm{margin:10px 0 25px 0}.popup.active.anketa .content form .el.m_top{margin-top:16px}.popup.active.anketa .content form .el.rating_el>.label{float:left;width:auto;line-height:17px;margin:0 15px 0 0}.popup.active.anketa .content form .el.rating_el .rating_wrapper .rating .star{cursor:pointer}.popup.active.anketa .content form .el .nice-select{border:solid 1px #f2f2f2;width:100%}.popup.active.anketa .content form .el .nice-select .list{width:100%}.popup.active.anketa .content form .el input[type="text"]{padding:0 16px;border-radius:6px;border:solid 1px #f2f2f2;background-color:rgba(255,255,255,0.3);height:44px;color:#33333d;font-family:"Vela Sans";font-size:14px;width:100%}.popup.active.anketa .content form .el button{padding:12px 16px;border-radius:22px;background-color:#a4493d;cursor:pointer;text-decoration:none;font-family:"Vela Sans";font-size:16px;font-weight:600;color:#fff;height:46px;width:227px;margin:25px 0 0 0;border:none}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"]){display:none}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"]):checked+label::before{background:#ebe0df;border:none}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"]):checked+label::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='m9 1.25-5.5 5.5L1 4.25' stroke='%23A4493D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label{color:#33333d;line-height:18px;font-size:14px;position:relative;display:block;padding:0 0 0 24px}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label.left{float:left;margin:0 16px 0 0}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label::before{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:0;border-radius:4px;border:solid 1px #f2f2f2;-webkit-box-sizing:border-box;box-sizing:border-box}.popup.active.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label::after{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:0}.popup.active.anketa .content form .el input[type="radio"],.popup.active.anketa .content form .el input[name="agree"]{display:none}.popup.active.anketa .content form .el input[type="radio"]:checked+label::after,.popup.active.anketa .content form .el input[name="agree"]:checked+label::after{border:solid 1px #a4493d}.popup.active.anketa .content form .el input[type="radio"]:checked+label::before,.popup.active.anketa .content form .el input[name="agree"]:checked+label::before{opacity:1}.popup.active.anketa .content form .el input[type="radio"]+label,.popup.active.anketa .content form .el input[name="agree"]+label{display:block;font-size:14px;line-height:18px;color:#33333d;padding:0 0 0 24px;position:relative}.popup.active.anketa .content form .el input[type="radio"]+label::after,.popup.active.anketa .content form .el input[name="agree"]+label::after{content:"";width:18px;height:18px;border-radius:50%;position:absolute;display:block;left:0;top:0;border:solid 1px #f2f2f2;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;-webkit-box-sizing:border-box;box-sizing:border-box}.popup.active.anketa .content form .el input[type="radio"]+label::before,.popup.active.anketa .content form .el input[name="agree"]+label::before{content:"";width:10px;height:10px;border-radius:50%;position:absolute;display:block;left:4px;top:4px;background:#a4493d;opacity:0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.popup.active.anketa .content form .el input[type="radio"]+label a,.popup.active.anketa .content form .el input[name="agree"]+label a{color:#a4493d;text-decoration:underline}.popup.active.anketa .content form .el input[type="radio"]+label a:hover,.popup.active.anketa .content form .el input[name="agree"]+label a:hover{text-decoration:none}.popup.active.anketa .content form .el textarea{height:88px;width:100%;resize:none;padding:12px 16px;border-radius:6px;border:solid 1px #f2f2f2;background-color:rgba(255,255,255,0.3);font-family:"Vela Sans";font-size:14px;color:#33333d;outline:none}.popup.active.anketa .content form .el .checkboxes{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:calc(100% - 2px)}.popup.active.anketa .content form .el .checkboxes .column{gap:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.popup.active.anketa .content form .el .checkboxes .column:nth-child(1){width:35%}.popup.active.anketa .content form .el .checkboxes .column:nth-child(2){width:25%}.popup.active.anketa .content form .el .checkboxes .column:nth-child(3){width:10%;margin:0}@media (max-width:767px){.popup.active.anketa .content form .el .checkboxes .column{width:100% !important;gap:15px;margin:0 0 15px 0}}.popup.active.anketa .content form .el .checkboxes .column label{width:100%}.popup.active.anketa .content form .el .drop.dropzone{min-height:0;border:none !important;background:none;padding:0}.popup.active.anketa .content form .el .drop.dropzone input[type="file"]{display:none}.popup.active.anketa .content form .el .drop.dropzone .dz-default{margin:0}.popup.active.anketa .content form .el .drop.dropzone .dz-default .dz-button{display:none}.popup.active.anketa .content form .el .drop.dropzone .dz-preview{margin:15px 20px 0 0;width:calc(20% - 20px/5*4);position:relative;min-height:0}@media (max-width:767px){.popup.active.anketa .content form .el .drop.dropzone .dz-preview{margin:15px 10px 0 0;width:calc(20% - 10px/5*4)}}.popup.active.anketa .content form .el .drop.dropzone .dz-preview:last-child{margin:15px 0 0 0}.popup.active.anketa .content form .el .drop.dropzone .dz-preview:hover .dz-remove{display:block}.popup.active.anketa .content form .el .drop.dropzone .dz-preview .dz-image{width:100%;height:auto;border-radius:6px !important}.popup.active.anketa .content form .el .drop.dropzone .dz-preview .dz-image img{width:100%;height:auto}.popup.active.anketa .content form .el .drop.dropzone .dz-preview .dz-details{height:100%;width:100%;padding:10%;display:none}.popup.active.anketa .content form .el .drop.dropzone .dz-preview .dz-remove{width:100%;height:100%;position:absolute;left:0;top:0;display:none;font-size:0;color:rgba(255,255,255,0)}.popup.active.anketa .content form .el .drop.dropzone .dz-preview .dz-remove::after{content:"";display:block;width:44px;height:44px;border-radius:50%;background-color:rgba(50,50,50,0.6);position:absolute;top:50%;left:50%;margin:-22px 0 0 -22px;z-index:10;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 12 12M13 1 1 13' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}@media (max-width:767px){.popup.active.anketa .content form .el .drop.dropzone .dz-preview .dz-remove::after{width:20px;height:20px;background-size:6px;margin:-10px 0 0 -10px}}.popup.active.anketa .content form .el .drop.dropzone .if_empty{display:table;width:100%;padding:22px;border-radius:22px;border:dashed 1px #f2f2f2;background-color:#fff;cursor:pointer}@media (max-width:767px){.popup.active.anketa .content form .el .drop.dropzone .if_empty{padding:15px 10px}}.popup.active.anketa .content form .el .drop.dropzone .if_empty .image{margin:0 auto 15px auto;display:table}@media (max-width:767px){.popup.active.anketa .content form .el .drop.dropzone .if_empty .image{margin:0 auto 10px auto}}.popup.active.anketa .content form .el .drop.dropzone .if_empty .text_1{width:100%;max-width:330px;font-size:14px;display:block;text-align:center;color:#33333d;margin:0 auto 10px auto}@media (max-width:767px){.popup.active.anketa .content form .el .drop.dropzone .if_empty .text_1{margin:0 auto 5px auto}}.popup.active.anketa .content form .el .drop.dropzone .if_empty .text_2{display:block;color:#7e8b91;font-size:12px;text-align:center}.popup.active.anketa .content form .text_block{margin:16px 0 0 0}.popup.active.anketa .content form .text_block .title{display:block;font-size:12px;font-weight:600;color:#7e8b91;margin:0 0 10px 0}.popup.active.anketa .content form .text_block p{display:block;font-size:12px;line-height:1.4;color:#7e8b91;margin:0 0 10px 0}.popup.active.anketa .content form .text_block p:last-child{margin:0}@media (min-width:768px){.popup.active.anketa_postavshika{width:790px;height:620px;margin:40px 0 0 -395px}}@media (min-width:768px){.popup.active.anketa_partnera{width:362px;height:636px;margin:40px 0 0 -181px}}.popup.active.subscribe{position:fixed;padding:17px 21.5px;width:740px;height:250px;max-height:90%;margin:-125px 0 0 -370px;left:50%;z-index:3;height:auto;top:50%;border-radius:24px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);background-color:#a4493d;background-image:url("data:image/svg+xml,%3Csvg width='740' height='251' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M574.496 135.148c6.985 0 13.762 1.772 19.636 5.143 6.394 3.684 11.399 9.002 14.978 15.813 4.866 9.349 5.839 20.018 2.677 30.097-3.128 10.044-10.01 18.315-19.323 23.215l-60.437 31.8c-3.927 2.085-5.873 6.36-4.796 10.669 1.043 4.31 4.761 7.229 9.21 7.229l103.322.382c14.666.035 28.046 8.133 34.893 21.13l.069.105c4.901 9.348 5.908 20.052 2.746 30.166-3.163 10.113-10.009 18.35-19.358 23.285l-.104.034a39.58 39.58 0 0 1-18.42 4.553c-7.993 0-15.708-2.398-22.311-6.881l-85.355-58.178c-1.634-1.112-3.476-1.702-5.352-1.702-3.128 0-6.187 1.668-7.994 4.379-1.772 2.641-2.05 5.838-.834 8.792l.035.07.035.069 32.216 61.236c3.406 6.464 4.97 13.276 4.623 20.261-.313 6.43-2.259 12.79-5.665 18.42a41.232 41.232 0 0 1-14.041 13.971c-5.943 3.51-12.719 5.386-19.566 5.386-2.641 0-5.317-.278-7.958-.799-.209-.035-.418-.069-.626-.139-.209-.035-.417-.104-.591-.139-.382-.069-.73-.174-1.147-.278l-.104-.035c-.07 0-.104-.034-.174-.034-.347-.105-.73-.209-1.147-.313-.069-.035-.139-.035-.208-.07-.035 0-.105-.034-.139-.034h-.035c-.035 0-.07-.035-.104-.035-.452-.139-.904-.278-1.356-.452a39.328 39.328 0 0 1-15.674-10.252c-4.691-4.935-8.062-10.982-9.696-17.412-1.772-7.02-1.564-14.214.695-21.443l20.644-66.553.035-.139.034-.139c.348-2.676-.451-5.248-2.258-7.298-1.842-2.085-4.553-3.337-7.299-3.337-2.467 0-4.761.973-6.603 2.815l-73.33 72.775a39.623 39.623 0 0 1-12.894 8.549c-4.796 1.946-9.835 2.954-14.978 2.954-3.962 0-7.924-.591-11.712-1.772l-.139-.035c-10.079-3.128-18.35-10.009-23.285-19.358-4.935-9.349-5.909-20.053-2.781-30.131l.035-.139a39.471 39.471 0 0 1 30.444-27.143l101.516-19.219c4.379-.834 7.472-4.344 7.715-8.792.243-4.449-2.433-8.306-6.673-9.627l-65.198-20.227c-10.078-3.127-18.349-10.009-23.285-19.357-4.935-9.349-5.908-20.053-2.78-30.132l.035-.069c2.676-8.584 7.854-15.744 14.979-20.679 6.568-4.552 14.701-7.089 22.902-7.089 14.875 0 27.908 7.889 34.893 21.13l37.464 71.175c1.703 3.232 4.866 5.144 8.515 5.144 4.309 0 7.959-2.676 9.244-6.777l23.702-76.354c2.711-8.688 7.959-15.917 15.188-20.922 6.742-4.726 14.979-7.263 23.25-7.263Zm0-1.738c-17.064 0-34.128 10.183-40.071 29.332l-23.702 76.354c-1.147 3.649-4.344 5.56-7.576 5.56-2.711 0-5.457-1.355-6.951-4.205l-37.464-71.175c-7.855-14.909-22.173-22.069-36.422-22.069-16.856 0-33.642 10.009-39.55 29.054-6.777 21.791 5.422 44.902 27.178 51.679l65.197 20.227c7.716 2.398 7.09 13.553-.869 15.048l-101.515 19.219c-15.013 2.815-27.246 13.727-31.799 28.324l-.035.139c-6.777 21.79 5.421 44.901 27.177 51.678l.139.035a41.136 41.136 0 0 0 12.234 1.842 41.291 41.291 0 0 0 29.123-12.025l73.33-72.774c1.599-1.598 3.51-2.293 5.387-2.293 4.344 0 8.41 3.788 7.82 8.653l-20.644 66.553c-4.866 15.709-.174 30.514 9.418 40.593 4.379 4.691 9.94 8.41 16.369 10.704.452.173.938.312 1.39.486.035 0 .07.035.139.035.104.035.243.069.348.104.382.104.799.244 1.181.348.105.035.209.069.313.069.383.105.8.209 1.182.278.208.035.417.105.625.139.209.035.417.105.661.139 2.815.556 5.595.834 8.271.834 29.332 0 51.262-32.008 36.213-60.61l-32.216-61.236c-2.259-5.421 2.085-10.739 7.194-10.739 1.459 0 2.954.417 4.379 1.391l85.355 58.177a41.335 41.335 0 0 0 23.284 7.194 41.075 41.075 0 0 0 19.219-4.761l.104-.035c20.192-10.634 27.942-35.588 17.342-55.779l-.069-.139c-7.125-13.52-21.13-22.034-36.422-22.069l-103.288-.382c-8.097-.035-10.738-10.878-3.579-14.631l60.436-31.8c20.123-10.6 27.907-35.483 17.377-55.641-7.785-14.77-21.999-21.825-36.213-21.825Z' fill='%23fff' fill-opacity='.2' opacity='.9'/%3E%3Cpath d='M-85.104-257.279a47.438 47.438 0 0 1 19.255 2.513l.107.026a47.528 47.528 0 0 1 20.967 14.512 47.51 47.51 0 0 1 10.478 23.254l18.918 122.12c1.025 6.615 6.73 9.702 11.825 9.316 4.055-.308 7.464-2.693 9.099-6.407l.03-.072.029-.072 27.18-78.181c3.23-9.342 9.008-17.239 16.635-22.837 7.133-5.211 15.68-8.334 24.724-9.02 8.525-.647 17.01.94 24.568 4.549 7.995 3.855 14.767 9.963 19.501 17.69.119.2.276.432.396.632s.242.435.362.635c.24.4.444.803.686 1.238l.043.101.122.235c.205.402.41.805.655 1.274l.119.2c.04.067.043.102.083.168l.002.035c.003.035.04.067.043.101.247.504.46 1.011.71 1.55 3.039 6.984 4.388 14.654 3.882 22.221-.494 8.193-3.03 16.123-7.363 22.864-4.707 7.328-11.241 13.087-19.444 17.055L23.471-75.251l-.133.08-.134.08c-3.798 2.763-5.322 7.48-3.925 12.113 1.394 4.6 5.28 7.581 10.139 7.77l123.519 4.571a47.881 47.881 0 0 1 24.32 7.705 47.38 47.38 0 0 1 16.857 19.146l.083.168c5.54 11.464 6.31 24.371 2.134 36.4-4.177 12.027-12.783 21.707-24.248 27.247l-.133.08a47.707 47.707 0 0 1-17.147 4.611 47.609 47.609 0 0 1-31.779-9.09l-99.71-72.983c-2.179-1.612-4.71-2.361-7.274-2.167-3.64.276-7.03 2.45-8.877 5.658-1.784 3.133-1.887 6.835-.272 10.198L42.477 49.86c5.54 11.464 6.31 24.371 2.134 36.399-4.176 12.028-12.782 21.707-24.247 27.248l-.136.045c-5.582 2.689-11.421 4.282-17.312 4.729-7.901.599-15.925-.883-23.225-4.303a49.262 49.262 0 0 1-18.076-14.522c-9.859-12.81-12.449-29.03-7.07-44.494l31.584-90.89c1.26-3.615.655-7.438-1.666-10.468-2.32-3.03-5.965-4.671-9.708-4.387-1.386.105-2.786.49-4.098 1.112L-115.439-7.97c-5.614 2.726-11.523 4.324-17.518 4.78-8.005.606-16.17-.9-23.579-4.381-7.191-3.358-13.537-8.453-18.336-14.746-9.785-12.746-12.293-28.798-6.932-44.052 6.28-17.834 22.518-30.288 41.37-31.718a47.15 47.15 0 0 1 19.22 2.515l77.143 26.805c1.503.514 3.054.745 4.579.63 4.124-.314 7.815-3.103 9.36-7.09 1.545-3.985.734-8.245-2.226-11.436l-84.107-90.582c-5.884-6.35-9.962-14.162-11.721-22.637-1.793-8.473-1.205-17.266 1.624-25.462l.059-.144c6.176-17.825 22.443-30.352 41.399-31.79Zm-.132-1.733c-19.025 1.444-36.275 13.871-42.975 33.06l-.059.144c-6.008 17.29-1.974 36.467 10.473 49.848l84.072 90.584c5.618 6.057 1.144 15.075-5.995 15.616a9.282 9.282 0 0 1-3.875-.542l-77.143-26.806c-6.621-2.286-13.374-3.098-19.924-2.601-18.956 1.438-36.174 13.828-42.885 32.879-12.386 35.2 17.219 68.017 50.66 65.48 5.995-.455 12.114-2.034 18.131-4.965l86.096-41.699c1.144-.54 2.304-.872 3.448-.958 6.376-.484 11.943 5.82 9.596 12.55L-47.2 54.469c-12.242 35.26 16.846 68.15 50.114 65.626 5.96-.452 12.045-2.029 18.061-4.96 24.54-11.899 34.812-41.433 22.948-65.976L8.336-24.367c-3.14-6.488 1.773-12.925 7.699-13.375 2.01-.152 4.142.383 6.134 1.835l99.71 72.983a49.461 49.461 0 0 0 32.954 9.42 49.098 49.098 0 0 0 17.795-4.8l.133-.08c24.541-11.9 34.813-41.433 22.948-65.976l-.08-.134a49.432 49.432 0 0 0-42.682-27.851L29.463-56.92c-9.052-.324-12.05-11.808-5.242-16.715l75.037-36.329c17.684-8.556 26.804-24.793 27.776-41.387.498-7.671-.762-15.556-4.046-23.01-.25-.539-.466-1.08-.716-1.619-.037-.032-.042-.101-.079-.133-.08-.133-.125-.269-.205-.403-.208-.437-.45-.872-.657-1.309-.043-.101-.123-.235-.165-.336-.242-.435-.484-.87-.724-1.27a6.475 6.475 0 0 0-.399-.666c-.122-.235-.279-.467-.399-.667-10.375-16.849-28.338-24.374-45.667-23.094-18.263 1.385-35.782 12.578-42.875 33.017L3.922-92.658c-1.52 3.392-4.526 5.118-7.645 5.355-4.435.336-9.105-2.411-9.97-7.853l-18.92-122.12a49.448 49.448 0 0 0-32.594-39.142l-.107-.027a49.871 49.871 0 0 0-19.922-2.567ZM544.222-215.659c6.855 1.344 13.165 4.386 18.28 8.824 5.567 4.845 9.455 11.025 11.658 18.398 2.977 10.11 1.88 20.768-3.162 30.05-5.001 9.255-13.345 16.048-23.428 19.066l-65.424 19.582c-4.255 1.291-6.986 5.112-6.758 9.548.194 4.429 3.282 8.009 7.647 8.865l101.32 20.246c14.386 2.855 25.959 13.375 30.178 27.447l.048.116c3.011 10.116 1.941 20.814-3.107 30.13-5.049 9.317-13.352 16.083-23.475 19.128l-.109.014a39.58 39.58 0 0 1-18.951.925c-7.844-1.537-14.954-5.374-20.572-11.044L475.795-87.87c-1.389-1.406-3.084-2.34-4.925-2.7-3.07-.602-6.392.447-8.686 2.76-2.248 2.25-3.135 5.335-2.51 8.467l.021.075.021.075 19.837 66.289c2.099 6.998 2.324 13.984.64 20.772-1.544 6.25-4.677 12.116-9.102 16.986a41.222 41.222 0 0 1-16.465 11.01c-6.507 2.301-13.519 2.84-20.237 1.523a41.19 41.19 0 0 1-7.656-2.315c-.198-.074-.396-.148-.588-.257-.198-.074-.389-.182-.553-.25-.361-.142-.683-.31-1.072-.493l-.095-.054c-.068-.014-.096-.055-.164-.068a25.32 25.32 0 0 0-1.066-.527c-.061-.048-.129-.061-.191-.109-.034-.006-.095-.054-.13-.06l-.034-.007c-.034-.007-.061-.048-.095-.054a20.545 20.545 0 0 1-1.243-.704 39.317 39.317 0 0 1-13.41-13.076c-3.655-5.745-5.8-12.328-6.166-18.951-.39-7.23 1.199-14.25 4.806-20.91l33.058-61.34.061-.13.06-.129c.856-2.56.566-5.237-.813-7.596-1.406-2.401-3.826-4.15-6.52-4.678-2.421-.475-4.86.04-7.021 1.492l-85.958 57.313a39.598 39.598 0 0 1-14.297 5.91c-5.081.987-10.22 1.007-15.267.018a39.395 39.395 0 0 1-11.153-3.992l-.129-.06c-9.289-5.009-16.083-13.352-19.128-23.476-3.045-10.123-1.941-20.814 3.067-30.103l.061-.13a39.471 39.471 0 0 1 35.096-20.781l103.316.664c4.458.024 8.168-2.826 9.262-7.144 1.095-4.319-.789-8.619-4.696-10.731L365.64-157.73c-9.289-5.008-16.082-13.351-19.127-23.474-3.045-10.124-1.941-20.815 3.067-30.104l.047-.061c4.277-7.91 10.736-13.939 18.676-17.412 7.322-3.204 15.79-4.13 23.839-2.553 14.597 2.861 25.869 13.109 30.177 27.447l23.076 77.052c1.05 3.499 3.786 5.983 7.367 6.685 4.229.829 8.325-1.096 10.375-4.873l37.944-70.369c4.332-8.005 10.872-14.09 18.928-17.611 7.525-3.341 16.096-4.247 24.213-2.656Zm.334-1.705c-16.745-3.282-35.449 3.429-44.964 21.078l-37.944 70.369c-1.827 3.361-5.333 4.622-8.504 4-2.661-.521-5.094-2.379-6.013-5.463l-23.076-77.052c-4.84-16.142-17.514-25.921-31.497-28.662-16.541-3.242-34.939 3.352-44.399 20.905-10.842 20.081-3.316 45.107 16.731 55.941l60.09 32.388c7.11 3.837 4.351 14.665-3.747 14.601l-103.316-.664c-15.275-.125-29.378 8.231-36.653 21.68l-.061.129c-10.842 20.08-3.316 45.106 16.73 55.94l.13.062a41.136 41.136 0 0 0 11.651 4.16 41.292 41.292 0 0 0 30.892-6.2l85.958-57.311c1.876-1.262 3.886-1.576 5.727-1.216 4.263.836 7.525 5.335 6.01 9.997l-33.059 61.34c-7.796 14.48-6.039 29.91 1.436 41.646 3.395 5.446 8.136 10.165 14.005 13.652.41.258.86.488 1.27.745.034.007.062.047.13.06.096.055.225.116.321.17.355.176.737.392 1.093.568.095.054.191.109.293.129.355.175.745.358 1.106.5.198.074.389.182.587.257.198.074.39.182.622.263a42.797 42.797 0 0 0 7.956 2.41c28.785 5.64 56.461-21.552 47.194-52.515l-19.838-66.288c-1.174-5.755 4.112-10.138 9.125-9.155 1.433.28 2.819.977 4.03 2.206l72.573 73.507a41.336 41.336 0 0 0 21.466 11.538 41.074 41.074 0 0 0 19.776-.976l.109-.014c21.86-6.553 34.265-29.55 27.746-51.403l-.042-.15c-4.391-14.637-16.498-25.686-31.497-28.66l-101.286-20.241c-7.94-1.591-8.446-12.74-.699-15.046l65.424-19.583c21.786-6.532 34.211-29.454 27.754-51.26-4.799-15.991-17.391-25.648-31.34-28.382ZM206.998 222.488c6.982.237 13.695 2.238 19.45 5.807 6.266 3.899 11.088 9.383 14.434 16.312 4.546 9.508 5.156 20.204 1.654 30.17-3.467 9.932-10.625 17.965-20.1 22.546l-61.48 29.732c-3.996 1.95-6.086 6.157-5.155 10.5.896 4.343 4.513 7.386 8.959 7.537l103.25 3.887c14.657.532 27.754 9.079 34.156 22.302l.066.106c4.58 9.51 5.224 20.242 1.721 30.242-3.504 10-10.626 18-20.137 22.615l-.105.031a39.578 39.578 0 0 1-18.563 3.925c-7.989-.271-15.619-2.929-22.066-7.634l-83.332-61.039c-1.595-1.167-3.416-1.82-5.292-1.883-3.126-.107-6.239 1.457-8.137 4.105-1.861 2.58-2.247 5.766-1.132 8.759l.033.071.032.071 30.121 62.293c3.185 6.576 4.517 13.437 3.932 20.406-.53 6.415-2.691 12.706-6.286 18.217a41.237 41.237 0 0 1-14.506 13.487c-6.059 3.306-12.895 4.952-19.738 4.72a41.288 41.288 0 0 1-7.927-1.069c-.207-.042-.414-.084-.62-.16-.208-.042-.414-.119-.586-.159-.38-.083-.724-.199-1.137-.317l-.103-.038c-.069-.003-.103-.039-.172-.041a25.488 25.488 0 0 0-1.136-.351c-.068-.038-.138-.04-.206-.077-.035-.001-.103-.038-.138-.039l-.035-.002c-.034-.001-.068-.037-.103-.038-.446-.154-.893-.308-1.339-.497a39.326 39.326 0 0 1-15.317-10.778c-4.522-5.092-7.686-11.25-9.1-17.731-1.533-7.076-1.081-14.259 1.422-21.407l22.889-65.815.04-.137.039-.138c.438-2.663-.273-5.26-2.01-7.371-1.77-2.146-4.437-3.489-7.181-3.582-2.466-.083-4.791.811-6.695 2.59l-75.756 70.245a39.617 39.617 0 0 1-13.176 8.107c-4.86 1.782-9.93 2.618-15.07 2.444-3.96-.134-7.9-.859-11.646-2.169l-.138-.039c-9.966-3.468-18-10.626-22.615-20.137-4.615-9.51-5.224-20.241-1.756-30.208l.04-.138A39.47 39.47 0 0 1 .591 364.627L102.7 348.863c4.405-.685 7.615-4.089 8.009-8.526.394-4.438-2.149-8.384-6.342-9.848l-64.474-22.426c-9.967-3.468-18-10.626-22.615-20.137-4.615-9.51-5.224-20.241-1.757-30.208l.037-.068c2.966-8.489 8.384-15.468 15.672-20.159 6.72-4.327 14.933-6.587 23.13-6.308 14.866.504 27.624 8.831 34.156 22.301l35.028 72.405c1.593 3.288 4.689 5.306 8.336 5.43 4.307.146 8.044-2.405 9.469-6.46l26.278-75.506c3.004-8.591 8.494-15.638 15.888-20.394 6.899-4.495 15.217-6.751 23.483-6.471Zm.059-1.736c-17.054-.579-34.454 9.019-41.043 27.956l-26.278 75.505c-1.27 3.608-4.53 5.41-7.76 5.301-2.71-.092-5.408-1.54-6.804-4.439L90.143 252.67c-7.344-15.167-21.412-22.808-35.652-23.291-16.846-.572-33.962 8.862-40.513 27.696-7.512 21.548 3.896 45.059 25.41 52.57l64.473 22.427c7.63 2.658 6.626 13.786-1.378 15.01L.373 362.846c-15.1 2.304-27.696 12.796-32.741 27.229l-.04.138c-7.512 21.548 3.896 45.06 25.41 52.571l.137.039a41.126 41.126 0 0 0 12.164 2.256 41.293 41.293 0 0 0 29.514-11.03l75.757-70.245c1.652-1.543 3.586-2.173 5.461-2.109 4.342.147 8.277 4.071 7.522 8.914l-22.89 65.814c-5.395 15.535-1.208 30.49 8.036 40.889 4.218 4.837 9.649 8.742 15.997 11.253.446.189.927.344 1.373.533.034.001.068.037.137.04.103.038.241.077.344.116.379.117.791.27 1.169.387.103.038.207.076.311.08.378.117.791.236 1.171.318.207.042.413.118.621.16.207.042.413.118.655.161a42.76 42.76 0 0 0 8.238 1.115c29.315.995 52.318-30.251 38.248-59.347l-30.12-62.294c-2.074-5.495 2.448-10.662 7.554-10.489 1.458.05 2.938.518 4.329 1.538l83.332 61.04a41.34 41.34 0 0 0 23.028 7.979 41.075 41.075 0 0 0 19.369-4.106l.105-.031c20.541-9.944 29.133-34.62 19.224-55.16l-.064-.141c-6.662-13.753-20.371-22.738-35.653-23.291l-103.215-3.886c-8.092-.309-10.364-11.236-3.081-14.744l61.48-29.731c20.47-9.912 29.095-34.517 19.254-55.019-7.279-15.026-21.246-22.559-35.452-23.041ZM849.292-17.815c8.341 0 16.195 2.433 22.729 7.055 6.116 4.31 10.878 10.322 13.797 17.377 2.919 7.055 3.788 14.701 2.537 22.034-1.356 7.89-5.213 15.153-11.087 21.06l-56.857 56.858c-2.815 2.815-3.614 6.846-2.085 10.495 1.529 3.684 4.935 5.943 8.897 5.943h79.968c8.411 0 16.369 2.468 22.972 7.194 6.187 4.379 11.017 10.496 13.971 17.69 2.92 7.055 3.789 14.631 2.537 21.929-1.355 7.82-5.178 15.014-11.017 20.852-7.472 7.403-17.341 11.469-27.872 11.469-10.565 0-20.504-4.101-27.976-11.573l-48.273-48.273c-1.842-1.842-4.136-2.815-6.638-2.815-3.058 0-5.978 1.495-7.82 3.962-1.772 2.433-2.259 5.387-1.355 8.376l30.27 98.769c4.31 14.041.556 29.193-9.835 39.585l-.104.104c-7.472 7.472-17.412 11.573-27.977 11.573-10.565 0-20.505-4.136-27.977-11.608l-.069-.069c-10.391-10.392-14.145-25.544-9.835-39.585l30.27-98.769c.904-2.989.417-5.943-1.355-8.376-1.842-2.467-4.762-3.962-7.82-3.962-2.189 0-4.24.765-5.978 2.224l-.069.035-.07.07-48.933 48.933c-3.892 3.892-8.34 6.881-13.206 8.862-4.587 1.877-9.453 2.815-14.458 2.815-9.557 0-18.871-3.441-26.204-9.661-3.718-3.163-6.777-6.916-9.036-11.156-2.398-4.484-3.892-9.384-4.413-14.597-.035-.208-.035-.417-.07-.625 0-.209-.035-.383-.035-.591-.034-.383-.034-.765-.069-1.182v-.313c0-.382-.035-.764-.035-1.181V162.661c0-.487 0-.938.035-1.425.243-6.325 2.016-12.546 5.143-18.002 3.337-5.943 8.098-10.948 13.763-14.423 6.151-3.788 13.137-5.7 20.713-5.7h69.82l.139-.034c3.962-.696 6.951-3.823 7.611-7.924.66-4.101-1.251-7.855-4.935-9.836l-91.263-48.446a39.487 39.487 0 0 1-21.026-34.962v-.14c0-10.564 4.101-20.504 11.573-27.976 7.472-7.472 17.412-11.573 27.977-11.573h.139c14.7 0 28.081 8.063 34.962 21.026l48.446 91.228c1.669 3.163 4.796 5.074 8.306 5.074 4.727 0 9.592-3.544 9.592-9.522V21.735c0-10.565 4.101-20.505 11.573-27.977 7.507-7.437 17.447-11.573 28.012-11.573Zm0-1.737c-22.799 0-41.287 18.489-41.287 41.287v68.29c0 4.866-3.928 7.786-7.855 7.786-2.606 0-5.248-1.286-6.777-4.136L744.927 2.447a41.286 41.286 0 0 0-36.491-21.964h-.139c-22.799 0-41.288 18.488-41.288 41.287v.139A41.286 41.286 0 0 0 688.973 58.4l91.229 48.447c6.672 3.544 4.761 13.275-2.155 14.492h-69.646c-16.439 0-29.193 8.862-35.97 21.026a40.705 40.705 0 0 0-5.352 18.801c-.035.487-.035.974-.035 1.46v.521c0 .417 0 .834.035 1.217v.313c0 .417.034.799.069 1.216 0 .208.035.417.035.626.035.208.035.451.069.66 2.259 22.381 21.443 36.943 41.357 36.943 10.148 0 20.47-3.753 28.881-12.164l48.933-48.933c1.494-1.251 3.197-1.807 4.865-1.807 4.761 0 9.21 4.518 7.507 10.078l-30.271 98.77c-4.483 14.631-.556 30.514 10.288 41.322l.069.07c8.063 8.063 18.628 12.094 29.228 12.094 10.565 0 21.13-4.031 29.193-12.094l.104-.105c10.809-10.808 14.77-26.725 10.287-41.322l-30.27-98.769c-1.703-5.561 2.745-10.079 7.506-10.079 1.877 0 3.789.695 5.422 2.329l48.273 48.272c8.063 8.063 18.628 12.095 29.193 12.095 10.53 0 21.026-3.997 29.089-11.99 26.1-25.927 7.089-70.585-29.68-70.585h-79.968c-7.02 0-10.565-8.515-5.595-13.484l56.857-56.857c25.961-26.03 7.541-70.515-29.228-70.515Z' fill='%23fff' fill-opacity='.2'/%3E%3C/svg%3E");background-size:cover}@media (max-width:1180px){.popup.active.subscribe{padding:16.8px 18.8px 16.8px}}@media (max-width:767px){.popup.active.subscribe{padding:11.9px 13px 13.6px 14px;left:16px;width:calc(100% - 32px);height:auto;max-height:calc(100vh - 34px - 62px - 20px);margin-left:0;top:0;margin:40px 0 0 0}}.popup.active.subscribe form{background:none;padding:26px 37.5px 26px 37.5px;border-radius:12px;border:solid 1.5px #fff;display:table;width:100%}@media (max-width:1180px){.popup.active.subscribe form{padding:23.3px 34.5px 13.5px 34.5px;border-radius:10.6px;border:solid 1.3px #fff}}@media (max-width:767px){.popup.active.subscribe form{padding:26.7px 19.9px 21.5px 19.9px;border-radius:10.6px;border:solid 1px #fff}}.popup.active.subscribe form>.el{float:left;width:auto}@media (max-width:767px){.popup.active.subscribe form>.el{margin:0 0 6px 0;width:100%}}.popup.active.subscribe form input[type="text"]{border-radius:22px;border:solid 1px #fff;background:#a4493d;color:#fff;height:44px;line-height:44px;width:300px;margin:0 10px 0 0}@media (max-width:1180px){.popup.active.subscribe form input[type="text"]{height:38.8px;line-height:38.8px;font-size:12px}}@media (max-width:767px){.popup.active.subscribe form input[type="text"]{width:100%;margin:0;height:40px;line-height:40px}}.popup.active.subscribe form input[type="text"][name="coupon"]{width:200px;background-color:#fff;text-align:center;color:#a4493d}@media (max-width:1180px){.popup.active.subscribe form input[type="text"][name="coupon"]{font-size:14px;width:175px}}@media (max-width:767px){.popup.active.subscribe form input[type="text"][name="coupon"]{width:100%}}.popup.active.subscribe form input[type="text"]::-webkit-input-placeholder{color:#fff}.popup.active.subscribe form input[type="text"]:-ms-input-placeholder{color:#fff}.popup.active.subscribe form input[type="text"]::-ms-input-placeholder{color:#fff}.popup.active.subscribe form input[type="text"]::placeholder{color:#fff}.popup.active.subscribe form button{border-radius:22px;background-color:#fff;height:44px;color:#a4493d;line-height:44px;font-size:16px;font-weight:500;padding:initial;width:250px}@media (max-width:1180px){.popup.active.subscribe form button{height:38.8px;line-height:38.8px;font-size:14px}}@media (max-width:767px){.popup.active.subscribe form button{width:100%;height:40px;line-height:40px}}.popup.active.subscribe form .copy_coupon{display:-webkit-box;display:-ms-flexbox;display:flex;width:164.2px;float:left;border-radius:22px;border:solid 1px #fff;line-height:42px;color:#fff;font-size:14px;cursor:pointer;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:8px}@media (max-width:1180px){.popup.active.subscribe form .copy_coupon{font-size:12px;width:142px;height:36.8px;line-height:38.8px}}@media (max-width:767px){.popup.active.subscribe form .copy_coupon{width:100%;height:40px;line-height:38px}}.popup.active.subscribe form .copy_coupon i{display:block;width:15.5px;height:20px;background-position:50%;background-repeat:no-repeat;content:"";background-image:url("data:image/svg+xml,%3Csvg width='16' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.414.952a1.583 1.583 0 0 0-.903.803c-.152.323-.182.747-.063.944.197.316.706.323.914.01a.965.965 0 0 0 .09-.27c.033-.216.093-.32.23-.402.093-.052.524-.06 4.624-.06 4.984 0 4.645-.014 4.79.224.056.096.06.65.06 6.548 0 6.311 0 6.445-.075 6.56-.085.142-.163.186-.375.22-.33.048-.516.252-.516.565 0 .182.122.375.297.464.104.052.178.063.364.045a1.514 1.514 0 0 0 1.323-1.04c.056-.176.06-.737.052-6.877l-.01-6.69-.116-.241a1.576 1.576 0 0 0-.721-.721l-.242-.116L9.343.911c-3.884-.004-4.82.004-4.929.04Z' fill='%23fff'/%3E%3Cpath d='M1.196 4.245A1.53 1.53 0 0 0 .055 5.267c-.056.175-.06.736-.052 6.876l.011 6.69.115.241c.149.309.413.573.721.721l.242.116h9.663l.242-.116c.308-.148.572-.412.72-.72l.116-.242.011-6.698c.008-6.645.008-6.697-.067-6.898a1.55 1.55 0 0 0-.88-.925l-.216-.086-4.665-.007c-2.564 0-4.735.011-4.82.026Zm9.37 1.126c.219.145.208-.256.208 6.72 0 5.746-.008 6.407-.06 6.519-.119.256.182.241-4.79.241-4.955 0-4.661.015-4.791-.234-.06-.111-.063-.598-.052-6.593l.01-6.47.09-.098a.56.56 0 0 1 .204-.13c.067-.022 2.045-.033 4.594-.03 4.274.008 4.486.012 4.587.075Z' fill='%23fff'/%3E%3C/svg%3E")}@media (max-width:1180px){.popup.active.subscribe form .copy_coupon i{width:13.3px;background-size:contain}}.popup.active.subscribe form .text_additional{display:block;font-size:14px;font-weight:500;color:#fff;margin:6px 0 0 0;width:100%;float:left}@media (max-width:1180px){.popup.active.subscribe form .text_additional{font-size:12px}}.popup.active.subscribe .popup_close{background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m.858.818 12 12M12.858.818l-12 12' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;width:36px;height:36px;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;padding:12px;background-color:#a4493d;top:5.4px;right:6.1px}.popup.active.subscribe .title{font-size:40px;color:#fff;text-align:left;margin:0 0 13px 0}@media (max-width:1180px){.popup.active.subscribe .title{font-size:35px;margin:0 0 11px 0}}@media (max-width:767px){.popup.active.subscribe .title{margin:0 0 8px 0}}.popup.active.subscribe .text{font-size:18px;font-weight:500;color:#fff;margin:0 0 30px 0;display:block}@media (max-width:1180px){.popup.active.subscribe .text{font-size:16px;margin:0 0 25px 0}}.popup.active.form{position:fixed;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:46px 40px 46px 40px;width:363px;height:620px;max-height:90%;margin:-310px 0 0 -181.5px;left:50%;top:50%;z-index:3;height:auto;margin-top:40px;top:0}@media (max-width:767px){.popup.active.form{padding:19px 20px;top:34px;left:16px;width:calc(100% - 32px);margin:0;height:auto;max-height:calc(100vh - 34px - 62px - 20px)}}.popup.active.form .content>.title{display:block;font-size:26px;font-style:normal;font-weight:500;margin:0 0 16px 0}@media (max-width:767px){.popup.active.form .content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}.popup.active.form .content form{padding:0;background:none;border-radius:0}.popup.active.form .content form input[type="checkbox"]+label::before{border:solid 1px #f2f2f2;-webkit-box-sizing:border-box;box-sizing:border-box}.popup.active.form .content form .el{margin:0 0 10px 0}.popup.active.form .content form .el label{display:block;margin:0 0 4px 0;color:#7e8b91;font-size:12px}.popup.active.form .content form .el input{height:44px;padding:6px 16px;width:100%;border-radius:6px;border:1px solid #f2f2f2;background:rgba(255,255,255,0.3)}.popup.active.form .content form .dont_remember{display:table;margin:0 auto;color:#a4493d;font-size:12px;font-weight:500;cursor:pointer;text-decoration:underline}.popup.active.form .content form .dont_remember:hover{text-decoration:none}.popup.active.form .content .text_block_phone{font-size:15px;text-align:center;margin:10px 0 0 0;display:table;float:left;width:100%}.popup.active.form .content .text_block_phone a{display:table;margin:0 auto;padding:10px 0 2px 0;font-size:20px;font-weight:500;text-decoration:none;position:relative}.popup.active.form .content .text_block_phone a:hover::before{opacity:0}.popup.active.form .content .text_block_phone a::before{content:"";position:absolute;left:0;bottom:0;height:1px;width:100%;background:#33333d;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}header .tfl__link-container{float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1180px){header .tfl__link-container{position:absolute;top:44px;top:8px}}@media (max-width:767px){header .tfl__link-container{left:calc(50% + 16px);top:16px}}@media (max-width:520px){header .tfl__link-container{left:auto;right:40px;top:16px}}header .tfl__link-container i.location{background-image:url(/local/templates/uyutnosti/images/ico/location.svg);background-position:50%;background-repeat:no-repeat;width:16px;height:16px;margin:0 8px 0 0;display:block}@media (max-width:1180px){header .tfl__link-container i.location{margin:0 3px 0 0}}header .tfl__link-container a{border-bottom:none !important;color:#7e8b91;font-size:12px;cursor:pointer;display:block;text-decoration:none}header .tfl__link-container i.arrow{background-image:url(/local/templates/uyutnosti/images/ico/arrow.svg);background-position:50%;background-repeat:no-repeat;width:16px;height:16px;display:block}header .tfl__link-container .tfl__link-label{display:none}.tfl-define-popup{padding-top:20px !important;padding-bottom:20px !important}@media (max-width:1560px){.tfl-define-popup{margin-left:60px}}@media (max-width:1220px){.tfl-define-popup{margin-left:40px}}@media (max-width:767px){.tfl-define-popup{margin-left:0}}.tfl-define-popup .tfl-define-popup__button{display:table;cursor:pointer;line-height:34px;padding:0;border-radius:22px;float:left;font-size:14px;font-weight:500;border:none;text-decoration:none;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.tfl-define-popup .tfl-define-popup__button.tfl-define-popup__yes{color:#fff;background-color:#a4493d}.tfl-define-popup .tfl-define-popup__button.tfl-define-popup__yes:hover{background-color:#ebe0df;color:#a4493d}.tfl-define-popup .tfl-define-popup__button.tfl-define-popup__list{background:#f2f2f2;color:#33333d}.tfl-define-popup .tfl-define-popup__button.tfl-define-popup__list:hover{background-color:#ebe0df;color:#a4493d}.tfl-define-popup .tfl-popup__close{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none'%3E%3Cpath d='m12 12 12 12M24 12 12 24' stroke='%23969FA8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-size:30px;background-repeat:no-repeat}.tfl-define-popup .tfl-popup__close::before{display:none}.tfl-define-popup .tfl-popup__close::after{display:none}.tfl-popup-overlay{background:rgba(51,51,61,0.4)}.tfl-popup-overlay .tfl-popup{position:fixed;border-radius:24px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);box-shadow:0 4px 11px 0 rgba(51,51,61,0.1);padding:50px 50px 43px 50px;width:585px;height:620px;max-height:90%;top:50%;z-index:3;min-height:273.5px}@media (max-width:767px){.tfl-popup-overlay .tfl-popup{padding:19px 20px;left:16px;top:40px !important;width:calc(100% - 32px);margin:0;height:auto;max-height:calc(100vh - 34px - 62px - 20px);-webkit-transform:none !important;transform:none !important}}.tfl-popup-overlay .tfl-popup .tfl-popup__title{display:block;font-size:26px;font-style:normal;font-weight:500;margin:0 0 16px 0}@media (max-width:767px){.tfl-popup-overlay .tfl-popup .tfl-popup__title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}@media (max-width:767px){.tfl-popup-overlay .tfl-popup .tfl-popup__search-wrapper{margin-bottom:16px}}.tfl-popup-overlay .tfl-popup .big_cities{display:table}.tfl-popup-overlay .tfl-popup .big_cities .city{display:block;float:left;font-size:18px;font-weight:500;margin:0 20px 0 0;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;border-bottom:none}@media (max-width:767px){.tfl-popup-overlay .tfl-popup .big_cities .city{font-size:14px;margin:0 18px 0 0}}.tfl-popup-overlay .tfl-popup .big_cities .city:hover{text-decoration:underline}.tfl-popup-overlay .tfl-popup .tfl-popup__search input{border-radius:22px;border:1px solid #f2f2f2;height:44px;width:100%;padding:10px 12px 10px 45px;background:none !important}@media (max-width:767px){.tfl-popup-overlay .tfl-popup .tfl-popup__search input{font-size:12px;height:34px;border-radius:22px;border:1px solid #f2f2f2;padding:10px 12px 10px 33px;width:100%}}.tfl-popup-overlay .tfl-popup .tfl-popup__search .tfl-popup__clear-field{top:50%;right:0;width:36px;height:36px;margin:-18px 0 0 0}.tfl-popup-overlay .tfl-popup .tfl-popup__search svg{position:absolute;width:24px;height:24px;top:10px;left:12px}@media (max-width:767px){.tfl-popup-overlay .tfl-popup .tfl-popup__search svg{width:19px;height:19px;top:7px}}.tfl-popup-overlay .tfl-popup .choose_city_title{color:#969fa8;font-weight:500;display:block;margin:20px 0 11px 0}@media (max-width:767px){.tfl-popup-overlay .tfl-popup .choose_city_title{font-size:12px;margin:11px 0 9px 0}}.tfl-popup-overlay .tfl-popup .choose_city_title+.tfl-popup__search{margin:0}.tfl-popup-overlay .tfl-popup .tfl-popup__scroll-container.tfl-popup__locations{padding:0}.tfl-popup-overlay .tfl-popup .tfl-popup__scroll-container.tfl-popup__locations .tfl-popup__list{margin:0}.tfl-popup-overlay .tfl-popup .tfl-popup__close{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none'%3E%3Cpath d='m12 12 12 12M24 12 12 24' stroke='%23969FA8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");position:absolute;width:36px;height:36px;top:10px;right:10px;cursor:pointer}.tfl-popup-overlay .tfl-popup .tfl-popup__close::before{display:none}.tfl-popup-overlay .tfl-popup .tfl-popup__close::after{display:none}.tfl-popup-overlay .tfl-popup-overlay__loader{width:60px;height:60px;left:50%;top:50%;margin:-30px 0 0 -30px;position:fixed}.tfl-popup-overlay .tfl-popup-overlay__loader::after{content:"";display:block;width:60px;height:60px;position:absolute;left:50%;top:50%;margin:-30px 0 0 -30px;background-image:url("/favicon.svg?v=1.01");background-position:50%;background-size:contain;background-repeat:no-repeat}.tfl-popup-overlay .tfl-popup-overlay__loader::before{content:"";display:block;width:60px;height:60px;position:absolute;left:50%;top:50%;margin:-30px 0 0 -30px;background-image:url("/favicon.svg?v=1.01");background-position:50%;background-size:contain;background-repeat:no-repeat;-webkit-animation:pulse 3s infinite;animation:pulse 3s infinite;opacity:.5}.tfl-popup-overlay .tfl-popup-overlay__loader .tfl-popup-overlay__circle{display:none}section.anketa{background:#fff;z-index:3}section.anketa .content{max-height:calc(100vh - 80px - 62px);overflow-y:auto}@media (max-width:767px){section.anketa .content{max-height:calc(100vh - 80px - 122px)}}section.anketa .content>.title{display:block;font-size:24px;line-height:1.2;font-style:normal;margin:0 0 15px 0;color:#33333d}@media (max-width:767px){section.anketa .content>.title{font-size:24px;font-style:normal;font-weight:400;line-height:120%;margin:0 0 14px 0}}section.anketa .content>.text{font-size:14px;display:block;line-height:normal;color:#33333d;margin:0 0 20px 0}section.anketa .content form{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}section.anketa .content form .title{font-size:18px;line-height:1.2;display:block;margin:0 0 15px 0;width:100%}section.anketa .content form .label{color:#7e8b91;font-size:12px;display:block;margin:0 0 4px 0;width:100%}section.anketa .content form label{cursor:pointer}section.anketa .content form .el{margin:0 0 9px 0}section.anketa .content form .el.file{margin:0 0 15px 0}section.anketa .content form .el:last-child{margin:0}section.anketa .content form .el.s1{width:100%}section.anketa .content form .el.s2{width:calc(50% - 5px)}@media (max-width:767px){section.anketa .content form .el.s2{width:100%}}section.anketa .content form .el.bm{margin:10px 0 25px 0}section.anketa .content form .el input[type="text"]{padding:0 16px;border-radius:6px;border:solid 1px #f2f2f2;background-color:rgba(255,255,255,0.3);height:44px;color:#33333d;font-family:"Vela Sans";font-size:14px;width:100%}section.anketa .content form .el button{padding:12px 16px;border-radius:22px;background-color:#a4493d;cursor:pointer;text-decoration:none;font-family:"Vela Sans";font-size:16px;font-weight:600;color:#fff;height:46px;width:227px;margin:25px 0 0 0;border:none}section.anketa .content form .el input[type="checkbox"]:not([name="agree"]){display:none}section.anketa .content form .el input[type="checkbox"]:not([name="agree"]):checked+label::before{background:#ebe0df;border:none}section.anketa .content form .el input[type="checkbox"]:not([name="agree"]):checked+label::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='m9 1.25-5.5 5.5L1 4.25' stroke='%23A4493D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}section.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label{color:#33333d;line-height:18px;font-size:14px;position:relative;display:block;padding:0 0 0 24px}section.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label.left{float:left;margin:0 16px 0 0}section.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label::before{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:0;border-radius:4px;border:solid 1px #f2f2f2;-webkit-box-sizing:border-box;box-sizing:border-box}section.anketa .content form .el input[type="checkbox"]:not([name="agree"])+label::after{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:0}section.anketa .content form .el input[type="radio"],section.anketa .content form .el input[name="agree"]{display:none}section.anketa .content form .el input[type="radio"]:checked+label::after,section.anketa .content form .el input[name="agree"]:checked+label::after{border:solid 1px #a4493d}section.anketa .content form .el input[type="radio"]:checked+label::before,section.anketa .content form .el input[name="agree"]:checked+label::before{opacity:1}section.anketa .content form .el input[type="radio"]+label,section.anketa .content form .el input[name="agree"]+label{display:block;font-size:14px;line-height:18px;color:#33333d;padding:0 0 0 24px;position:relative}section.anketa .content form .el input[type="radio"]+label::after,section.anketa .content form .el input[name="agree"]+label::after{content:"";width:18px;height:18px;border-radius:50%;position:absolute;display:block;left:0;top:0;border:solid 1px #f2f2f2;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;-webkit-box-sizing:border-box;box-sizing:border-box}section.anketa .content form .el input[type="radio"]+label::before,section.anketa .content form .el input[name="agree"]+label::before{content:"";width:10px;height:10px;border-radius:50%;position:absolute;display:block;left:4px;top:4px;background:#a4493d;opacity:0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.anketa .content form .el input[type="radio"]+label a,section.anketa .content form .el input[name="agree"]+label a{color:#a4493d;text-decoration:underline}section.anketa .content form .el input[type="radio"]+label a:hover,section.anketa .content form .el input[name="agree"]+label a:hover{text-decoration:none}section.anketa .content form .el textarea{height:88px;width:100%;resize:none;padding:12px 16px;border-radius:6px;border:solid 1px #f2f2f2;background-color:rgba(255,255,255,0.3);font-family:"Vela Sans";font-size:14px;color:#33333d}section.anketa .content form .el .checkboxes{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:calc(100% - 2px)}section.anketa .content form .el .checkboxes .column{gap:16px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}section.anketa .content form .el .checkboxes .column:nth-child(1){width:35%}section.anketa .content form .el .checkboxes .column:nth-child(2){width:25%}section.anketa .content form .el .checkboxes .column:nth-child(3){width:10%;margin:0}@media (max-width:767px){section.anketa .content form .el .checkboxes .column{width:100% !important;gap:15px;margin:0 0 15px 0}}section.anketa .content form .el .checkboxes .column label{width:100%}section.anketa .content form .el .drop.dropzone{min-height:0;border:none !important;background:none;padding:0}section.anketa .content form .el .drop.dropzone input[type="file"]{display:none}section.anketa .content form .el .drop.dropzone .dz-default{margin:0}section.anketa .content form .el .drop.dropzone .dz-default .dz-button{display:none}section.anketa .content form .el .drop.dropzone .dz-preview{margin:15px 20px 0 0;width:calc(20% - 20px/5*4);position:relative;min-height:0}@media (max-width:767px){section.anketa .content form .el .drop.dropzone .dz-preview{margin:15px 10px 0 0;width:calc(20% - 10px/5*4)}}section.anketa .content form .el .drop.dropzone .dz-preview:last-child{margin:15px 0 0 0}section.anketa .content form .el .drop.dropzone .dz-preview:hover .dz-remove{display:block}section.anketa .content form .el .drop.dropzone .dz-preview .dz-image{width:100%;height:auto;border-radius:6px !important}section.anketa .content form .el .drop.dropzone .dz-preview .dz-image img{width:100%;height:auto}section.anketa .content form .el .drop.dropzone .dz-preview .dz-details{height:100%;width:100%;padding:10%;display:none}section.anketa .content form .el .drop.dropzone .dz-preview .dz-remove{width:100%;height:100%;position:absolute;left:0;top:0;display:none;font-size:0;color:rgba(255,255,255,0)}section.anketa .content form .el .drop.dropzone .dz-preview .dz-remove::after{content:"";display:block;width:44px;height:44px;border-radius:50%;background-color:rgba(50,50,50,0.6);position:absolute;top:50%;left:50%;margin:-22px 0 0 -22px;z-index:10;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg width='14' height='14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 12 12M13 1 1 13' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}@media (max-width:767px){section.anketa .content form .el .drop.dropzone .dz-preview .dz-remove::after{width:20px;height:20px;background-size:6px;margin:-10px 0 0 -10px}}section.anketa .content form .el .drop.dropzone .if_empty{display:table;width:100%;padding:22px;border-radius:22px;border:dashed 1px #f2f2f2;background-color:#fff;cursor:pointer}@media (max-width:767px){section.anketa .content form .el .drop.dropzone .if_empty{padding:15px 10px}}section.anketa .content form .el .drop.dropzone .if_empty .image{margin:0 auto 15px auto;display:table}@media (max-width:767px){section.anketa .content form .el .drop.dropzone .if_empty .image{margin:0 auto 10px auto}}section.anketa .content form .el .drop.dropzone .if_empty .text_1{width:100%;max-width:330px;font-size:14px;display:block;text-align:center;color:#33333d;margin:0 auto 10px auto}@media (max-width:767px){section.anketa .content form .el .drop.dropzone .if_empty .text_1{margin:0 auto 5px auto}}section.anketa .content form .el .drop.dropzone .if_empty .text_2{display:block;color:#7e8b91;font-size:12px;text-align:center}.bx_filter .bx_filter_section{padding:0;margin:0;background:none !important;border:none !important}.bx_filter .bx_filter_section .bx_filter_title{color:#33333d;font-size:24px;font-weight:500;line-height:120%;margin:0 0 15px 0;display:block;padding:0}@media (max-width:1180px){.bx_filter .bx_filter_section .bx_filter_title{font-size:21px;margin:0 0 13px 0}}@media (max-width:767px){.bx_filter .bx_filter_section .bx_filter_title{font-size:18px;margin:0 0 21px 0;padding:0 0 0 17px;position:relative}.bx_filter .bx_filter_section .bx_filter_title::after{content:"";position:absolute;left:0;top:50%;width:5px;height:10px;margin:-5px 0 0 0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='10' fill='none'%3E%3Cpath d='M5 1 1 5l4 4' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:center;background-repeat:no-repeat}}.bx_filter .bx_filter_section form .bx_filter_parameters_box{padding:0;margin:0 0 12px 0}.bx_filter .bx_filter_section form .bx_filter_parameters_box.active .bx_filter_parameters_box_title::before{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_block{display:block}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_title{display:none}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container{display:table;width:100%;float:left;margin:0 0 12px 0}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container>span{color:#33333d;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:400;line-height:normal;display:block;float:left}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label{float:right}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label .bx_filter_input_checkbox{margin:0 !important}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label .bx_filter_input_checkbox input+.bx_filter_param_text{font-size:0 !important;width:38px;height:21px}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label .bx_filter_input_checkbox input+.bx_filter_param_text::after{width:17px !important;height:17px !important;top:2px !important;left:2px !important;background:#fff;border-radius:50% !important;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label .bx_filter_input_checkbox input+.bx_filter_param_text::before{border-radius:22px !important;background:#e3edf3;width:38px !important;height:21px !important;border:none !important;left:auto !important;right:0;top:auto !important}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label .bx_filter_input_checkbox input:checked+.bx_filter_param_text::before{background:#a4493d !important}.bx_filter .bx_filter_section form .bx_filter_parameters_box.id_210 .bx_filter_parameters_box_container label .bx_filter_input_checkbox input:checked+.bx_filter_param_text::after{left:19px !important;background-image:none !important}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_parameters_box_title{color:#33333d;font-size:16px;font-weight:700;text-decoration:none;border:none;margin:0 0 12px 0;position:relative;padding:0 0 0 20px}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_parameters_box_title:after{display:none}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_parameters_box_title::before{content:"";float:left;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath d='m9 5.5-4-4-4 4' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:50%;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;position:absolute;width:8px;height:100%;left:0}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container label{margin:0}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container label:last-child .bx_filter_param_label .bx_filter_input_checkbox{margin:0}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track{margin:0 0 18px 0;border:0;height:3px;-webkit-box-shadow:none;box-shadow:none;background:#f2f2f2;border-radius:3px;z-index:2}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_part{display:none}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_pricebar_V{background:#a4493d;top:0;bottom:auto}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_pricebar_VN{border-radius:3px;overflow:hidden;border:none;top:0;bottom:auto}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_pricebar_VD{border:none;height:3px;top:0;bottom:auto;background:#a4493d}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_range{z-index:80;top:0;bottom:auto}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_range .bx_ui_slider_handle{width:16px;height:16px;border-radius:50%;background:#e68d61;top:0;z-index:113}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_range .bx_ui_slider_handle.left{margin:-6.5px 0 0 -8px}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_ui_slider_track .bx_ui_slider_range .bx_ui_slider_handle.right{margin:-6.5px -8px 0 0}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block{width:calc(50% - 4px);margin:0}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block:nth-child(3){margin-right:4px !important}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block:nth-child(4){margin-left:4px !important}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block .bx_filter_input_container{background:none;width:100%;max-width:100%}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_parameters_box_container_block .bx_filter_input_container input{width:100%;border-radius:18px;border:1px solid #f2f2f2;-webkit-box-shadow:none;box-shadow:none;overflow:hidden;padding:9px 16px;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:500;line-height:normal}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox{padding:0;margin:0 0 11px 0}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox input[type="checkbox"]{display:none;padding:0 0 0 26px}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox input[type="checkbox"]+.bx_filter_param_text{position:relative;margin:0;padding:0 0 0 26px;line-height:18px;color:#33333d;font-size:14px}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox input[type="checkbox"]+.bx_filter_param_text::before{content:"";display:block;position:absolute;left:0;top:0;width:18px;height:18px;border-radius:4px;border:1px solid #f2f2f2;-webkit-box-sizing:border-box;box-sizing:border-box}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox input[type="checkbox"]+.bx_filter_param_text::after{content:"";display:block;position:absolute;left:0;top:0;width:18px;height:18px;border-radius:4px}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox input[type="checkbox"]:checked+.bx_filter_param_text::before{border:none;background:#ebe0df}.bx_filter .bx_filter_section form .bx_filter_parameters_box .bx_filter_block .bx_filter_parameters_box_container .bx_filter_param_label .bx_filter_input_checkbox input[type="checkbox"]:checked+.bx_filter_param_text::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='m9 1.25-5.5 5.5L1 4.25' stroke='%23A4493D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}.bx_filter .bx_filter_section form .bx_filter_button_box{padding:0;margin:0}.bx_filter .bx_filter_section form .bx_filter_button_box .bx_filter_parameters_box_container .bx_filter_search_button{display:none}@media (max-width:767px){.bx_filter .bx_filter_section form .bx_filter_button_box .bx_filter_parameters_box_container .bx_filter_search_button{display:block;border-radius:22px;background:#a4493d;border:none;width:100%;margin:12px 0 0 0;color:#fff;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:600;line-height:normal;height:40px}}.bx_filter .bx_filter_section form .bx_filter_button_box .bx_filter_parameters_box_container .bx_filter_search_reset{display:none}.bx_filter .bx_filter_section form .bx_filter_button_box .bx_filter_parameters_box_container .filter_clear{border-radius:22px;background:#f2f2f2;border:none;width:100%;cursor:pointer;padding:0 30px;line-height:41px;color:#7e8b91;font-size:12px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:15px 0 0 0}.bx_filter .bx_filter_section form .bx_filter_button_box .bx_filter_parameters_box_container .filter_clear svg{margin:0 0 0 7px}.smart-filter .smart-filter-section .smart-filter-title{color:#33333d;font-size:24px;font-weight:500;line-height:120%;margin:0 0 15px 0;display:block}@media (max-width:1180px){.smart-filter .smart-filter-section .smart-filter-title{font-size:21px;margin:0 0 13px 0}}@media (max-width:767px){.smart-filter .smart-filter-section .smart-filter-title{font-size:18px;margin:0 0 21px 0}}.smart-filter .smart-filter-section .smart-filter-parameters-box-title{width:100%}.smart-filter .smart-filter-section .smart-filter-parameters-box-title .smart-filter-parameters-box-title-text{color:#33333d;font-size:14px;font-weight:700;display:block;float:left}.smart-filter .smart-filter-section .smart-filter-parameters-box-title .smart-filter-angle{float:left;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' fill='none'%3E%3Cpath d='m9 5.5-4-4-4 4' stroke='%2333333D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:50%;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.smart-filter .smart-filter-section .smart-filter-parameters-box-title .smart-filter-angle.smart-filter-angle-down{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.smart-filter .smart-filter-section .d-flex.justify-content-between{display:table;width:100%}.smart-filter .smart-filter-section .form-group{width:calc(50% - 2px) !important;float:left}.smart-filter .smart-filter-section .form-group:nth-child(2){float:right}.smart-filter .smart-filter-section .form-group .smart-filter-input-container{position:relative}.smart-filter .smart-filter-section .form-group .smart-filter-input-container input.form-control{border-radius:18px;border:1px solid #f2f2f2;height:36px;padding:9px 8px 9px 30px;width:100%;color:#33333d;font-size:12px;font-style:normal;font-weight:500;line-height:normal}.smart-filter .smart-filter-section .form-group .smart-filter-input-container .text{position:absolute;color:#7e8b91;font-size:12px;font-weight:500;line-height:36px;left:8px;top:0}.smart-filter .smart-filter-section .smart-filter-button-box #set_filter{display:none}.smart-filter .smart-filter-section .smart-filter-button-box #del_filter{display:none}.smart-filter .smart-filter-section .smart-filter-button-box .filter_clear{border-radius:22px;background:#f2f2f2;border:none;width:100%;cursor:pointer;padding:0 30px;line-height:41px;color:#7e8b91;font-size:12px;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:15px 0 0 0}.smart-filter .smart-filter-section .smart-filter-button-box .filter_clear svg{margin:0 0 0 7px}.smart-filter .smart-filter-section .smart-filter-popup-result{display:inline-block;border-radius:22px;background:#a4493d;border:none;color:#fff;font-size:12px;font-weight:600;padding:10px 16px}.smart-filter .smart-filter-section .smart-filter-popup-result::after{content:" ";display:block;position:absolute;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='15' fill='none'%3E%3Cpath d='M0 7.5 9 0v15L0 7.5Z' fill='%23A4493D'/%3E%3C/svg%3E");width:9px;height:15px;top:50%;left:auto;right:100%;margin:-7.5px 0 0 0}.smart-filter .smart-filter-section .smart-filter-popup-result a{color:#fff}.smart-filter .smart-filter-section .smart-filter-popup-result a:hover{text-decoration:none}.smart-filter .smart-filter-section .smart-filter-popup-result.left::after{-webkit-transform:rotate(180deg);transform:rotate(180deg);left:100%;right:auto}section.text_page>.content h1{display:block;font-size:40px;line-height:1.2;margin:0 0 22px 0;padding:0}@media (max-width:1180px){section.text_page>.content h1{font-size:36px;margin:0 0 15px 0}}@media (max-width:767px){section.text_page>.content h1{font-size:24px;margin:0 0 12px 0}}section.text_page>.content h2{font-size:20px;font-style:normal;font-weight:400;line-height:120%;display:block;margin:0 0 22px 0}section.text_page>.content p{font-size:16px;margin-bottom:32px}@media (max-width:1180px){section.text_page>.content p{margin-bottom:25px}}section.text_page>.content p.bold{font-size:20px;font-weight:600}@media (max-width:1180px){section.text_page>.content p.bold{font-size:18px}}@media (max-width:767px){section.text_page>.content p.bold{font-size:16px}}section.text_page>.content ol,section.text_page>.content ul{margin-bottom:32px}@media (max-width:1180px){section.text_page>.content ol,section.text_page>.content ul{margin-bottom:25px}}section.text_page>.content ol li,section.text_page>.content ul li{font-size:16px}section.lk>.content .els{position:relative;margin:0 -16px;width:calc(100% + 32px)}@media (max-width:1180px){section.lk>.content .els{margin:0 -10px;width:calc(100% + 20px)}}@media (max-width:767px){section.lk>.content .els{margin:0;width:100%}}section.lk>.content .els .el{border-radius:22px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);padding:20px;float:left;margin:0 16px 32px 16px;width:calc(25% - 32px);-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;cursor:pointer;height:122px}@media (max-width:1180px){section.lk>.content .els .el{margin:0 10px 20px 10px;width:calc(25% - 20px)}}@media (max-width:767px){section.lk>.content .els .el{width:100%;height:auto;margin:0 0 8px 0;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07)}}section.lk>.content .els .el:nth-child(1),section.lk>.content .els .el:nth-child(2),section.lk>.content .els .el:nth-child(3){width:calc(33.33% - 32px)}@media (max-width:1180px){section.lk>.content .els .el:nth-child(1),section.lk>.content .els .el:nth-child(2),section.lk>.content .els .el:nth-child(3){width:calc(33.33% - 20px)}}@media (max-width:767px){section.lk>.content .els .el:nth-child(1),section.lk>.content .els .el:nth-child(2),section.lk>.content .els .el:nth-child(3){width:100%}}@media (max-width:1080px){section.lk>.content .els .el:nth-child(4) .bottom,section.lk>.content .els .el:nth-child(5) .bottom,section.lk>.content .els .el:nth-child(6) .bottom,section.lk>.content .els .el:nth-child(7) .bottom{-webkit-box-align:end;-ms-flex-align:end;align-items:end}}@media (min-width:768px) and (max-width:1080px){section.lk>.content .els .el:nth-child(4) .bottom .text,section.lk>.content .els .el:nth-child(5) .bottom .text,section.lk>.content .els .el:nth-child(6) .bottom .text,section.lk>.content .els .el:nth-child(7) .bottom .text{height:32px}}section.lk>.content .els .el:nth-child(8),section.lk>.content .els .el:nth-child(9){width:calc(50% - 32px)}@media (max-width:1180px){section.lk>.content .els .el:nth-child(8),section.lk>.content .els .el:nth-child(9){width:calc(50% - 20px)}}@media (max-width:767px){section.lk>.content .els .el:nth-child(8),section.lk>.content .els .el:nth-child(9){width:100%}}@media (max-width:767px){section.lk>.content .els .el:last-child{margin:0}}section.lk>.content .els .el:hover{background:#ebe0df}section.lk>.content .els .el:hover .ico{background:#a4493d;color:#fff}section.lk>.content .els .el:hover .ico svg path{stroke:#fff}section.lk>.content .els .el .ico{width:54px;height:54px;border-radius:50%;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;float:left;background:#ebe0df;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;color:#a4493d;font-size:20px;font-weight:500;line-height:54px;text-align:center}@media (max-width:1180px){section.lk>.content .els .el .ico{width:40px;height:40px;font-size:14.8px}}@media (max-width:1180px){section.lk>.content .els .el .ico svg{-webkit-transform:scale(.71);transform:scale(.71)}}section.lk>.content .els .el .ico svg path{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;stroke:#a4493d}section.lk>.content .els .el .name{font-weight:700;line-height:normal;height:54px;width:calc(100% - 68px);margin:0 0 0 14px;float:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1180px){section.lk>.content .els .el .name{margin:0 0 0 12px;height:40px;width:calc(100% - 52px)}}@media (max-width:767px){section.lk>.content .els .el .name{height:auto}}section.lk>.content .els .el .bottom{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;margin:12px 0 0 0;float:left}@media (max-width:1180px){section.lk>.content .els .el .bottom{margin:11px 0 0 0}}section.lk>.content .els .el .bottom .text{color:#7e8b91;font-size:12px;text-decoration:none}section.lk>.content .els .el .bottom .text span{color:#33333d}section.lk>.content .els .el .bottom .ok{color:#a4493d;font-size:12px;text-decoration:none}section.lk>.content .els .el .title{color:#33333d;font-size:14px;font-style:normal;font-weight:700;display:block;float:left;margin:0 9px 0 0}section.lk>.content .els .el .count{font-size:12px;color:#7e8b91;float:left;line-height:19px}section.lk>.content .els .el .goods{width:100%;display:table;margin:9px 0 0 0;float:left}@media (max-width:1180px){section.lk>.content .els .el .goods{margin:9px 0 0 0}}section.lk>.content .els .el .goods span{width:54px;height:54px;border-radius:50%;display:none;float:left;margin:0 4px 0 0;overflow:hidden;background-size:contain;background-repeat:no-repeat;background-position:50%}section.lk>.content .els .el .goods span.active{display:block}section.lk>.content .els .el .goods span.unimage{background:#7d8b91;opacity:.15}section.lk>.content .els .el .goods .count{width:54px;height:54px;border-radius:50%;display:none;float:left;color:#33333d;font-size:14px;font-style:normal;font-weight:400;line-height:normal;text-align:center;line-height:54px;-webkit-box-shadow:0 4px 11px rgba(51,51,61,0.07);box-shadow:0 4px 11px rgba(51,51,61,0.07);background:#fff}section.lk>.content .els .el .goods .count.active{display:block}section.lk>.content .els .el.gift_cart .py-2{margin:6px 0 0 0;float:left;width:100%;position:relative}@media (max-width:767px){section.lk>.content .els .el.gift_cart .py-2{margin:15px 0 0 0}}section.lk>.content .els .el.gift_cart .py-2 .row:nth-child(2) .col.pt-2 div{bottom:-27px;position:absolute;font-size:12px;background:#fff;padding:5px 10px;border-radius:10px}section.lk>.content .els .el.gift_cart .py-2 .bx-soa-custom-label{display:none}section.lk>.content .els .el.gift_cart .py-2 input[type="text"]{float:left;height:32px;padding:6px 16px;width:calc(100% - 130px);border-radius:6px;border:1px solid #f2f2f2;background:rgba(255,255,255,0.3)}section.lk>.content .els .el.gift_cart .py-2 button{margin:0 0 0 10px;float:left;padding:0;border-radius:22px;background-color:#a4493d;font-size:14px;color:#fff;border:none;cursor:pointer;height:32px;line-height:32px;min-width:120px}section.profile>.content form .columns .column{width:440px;float:left}@media (max-width:1180px){section.profile>.content form .columns .column{width:375px}}@media (max-width:980px){section.profile>.content form .columns .column{width:calc(50% - 10px)}}@media (max-width:767px){section.profile>.content form .columns .column{width:100%}}section.profile>.content form .columns .column.n1{margin:0 32px 0 0}@media (max-width:1180px){section.profile>.content form .columns .column.n1{margin:0 20px 0 0}}@media (max-width:980px){section.profile>.content form .columns .column.n1{margin:0}}@media (max-width:767px){section.profile>.content form .columns .column.n1{margin:0 0 15px 0}}@media (max-width:980px){section.profile>.content form .columns .column.n2{float:right}}section.profile>.content form .columns .column .title{color:#33333d;font-size:20px;line-height:120%;display:block;margin:0 0 4px 0}@media (max-width:1180px){section.profile>.content form .columns .column .title{font-size:18px}}@media (max-width:767px){section.profile>.content form .columns .column .title{font-size:16px}}section.profile>.content form .columns .column .el{position:relative}section.profile>.content form .columns .column .el label{color:#7e8b91;font-size:12px;margin:8px 0 4px 0;display:block;float:left}@media (max-width:767px){section.profile>.content form .columns .column .el label{margin:10px 0 5px 0}}section.profile>.content form .columns .column .el label span{color:#a4493d}section.profile>.content form .columns .column .el input{width:100%;height:44px;padding:6px 16px;border-radius:6px;border:1px solid #f2f2f2;color:#33333d;font-family:Vela Sans;font-size:14px;font-style:normal;font-weight:400;line-height:normal}@media (max-width:767px){section.profile>.content form .columns .column .el input{height:40px}}section.profile>.content form .columns .column .el input:disabled{border:1px solid #f2f2f2;background:#f2f2f2}section.profile>.content form .columns .column .el input[type="radio"]{display:none}section.profile>.content form .columns .column .el input[type="radio"]:checked+label::after{border:1px solid #a4493d}section.profile>.content form .columns .column .el input[type="radio"]:checked+label::before{opacity:1}section.profile>.content form .columns .column .el input[type="radio"]+label{padding:0 0 0 24px;position:relative;margin:0 16px 0 0;cursor:pointer;line-height:19px}section.profile>.content form .columns .column .el input[type="radio"]+label::after{content:"";display:block;border-radius:9px;border:1px solid #f2f2f2;width:18px;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;position:absolute;left:0;top:50%;margin:-9px 0 0 0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.profile>.content form .columns .column .el input[type="radio"]+label::before{content:"";border-radius:9px;background:#a4493d;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;opacity:0;left:4px;top:50%;-webkit-box-sizing:border-box;box-sizing:border-box;position:absolute;margin:-5px 0 0 0;width:10px;height:10px}section.profile>.content form .columns .column .el .radiobox{display:table;width:100%;float:left;margin:8px 0 0 0}section.profile>.content form .columns .column .el .show_info{position:absolute;width:18px;height:18px;right:16px;bottom:13px;z-index:2}@media (max-width:767px){section.profile>.content form .columns .column .el .show_info{bottom:11px}}section.profile>.content form .columns .column .el .show_info:hover .text_wrapper{left:100%;top:50%;display:block;margin:-35px 0 0 0}@media (max-width:1180px){section.profile>.content form .columns .column .el .show_info:hover .text_wrapper{right:auto;left:auto;top:auto;bottom:-73px;margin:0 0 0 -161.5px}}@media (max-width:980px){section.profile>.content form .columns .column .el .show_info:hover .text_wrapper{margin:0 0 0 -288.5px}}section.profile>.content form .columns .column .el .show_info:hover .text_wrapper .text{border-radius:22px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);padding:10px;width:323px;color:#7e8b91;font-family:Vela Sans;font-size:12px;font-style:normal;font-weight:400;line-height:normal;margin:0 0 0 27px}@media (max-width:1180px){section.profile>.content form .columns .column .el .show_info:hover .text_wrapper .text{margin:0}}section.profile>.content form .columns .column .el .show_info .ico{cursor:pointer;width:18px;height:18px}section.profile>.content form .columns .column .el .show_info .text_wrapper{position:absolute;display:none}section.profile>.content form .buttons{display:table;float:left;width:100%;margin:33px 0 0 0}section.profile>.content form input[type="submit"]{border-radius:22px;background:#a4493d;display:block;padding:12px 16px;border:none;cursor:pointer;color:#fff;font-family:Vela Sans;font-size:16px;font-style:normal;font-weight:600;line-height:normal;width:184px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.profile>.content form input[type="submit"]:hover{color:#33333d;background:#f2f2f2}section>.content>h1.title{color:#33333d;font-size:40px;font-weight:400;line-height:120%;margin:0 0 21px 0;display:block}@media (max-width:1180px){section>.content>h1.title{font-size:36px;margin:0 0 15px 0}}@media (max-width:767px){section>.content>h1.title{font-size:24px;margin:0 0 12px 0}}section.wishlist>.content .wishlist_count{display:block;font-size:20px;line-height:120%;margin:0 0 10px 0}@media (max-width:1180px){section.wishlist>.content .wishlist_count{font-size:18px;margin:0 0 15px 0}}@media (max-width:767px){section.wishlist>.content .wishlist_count{font-size:16px;margin:0 0 25px 0}}.rating.hover span.hover{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' fill='none'%3E%3Cpath d='m20.85 8.024-5.588 4.541 1.851 6.959a.38.38 0 0 1-.572.416l-6.046-3.91-6.046 3.91a.38.38 0 0 1-.572-.416l1.851-6.959L.14 8.024a.38.38 0 0 1 .219-.673l7.19-.39L10.14.242a.38.38 0 0 1 .708 0l2.592 6.72 7.19.389a.38.38 0 0 1 .219.673Z' fill='%23FFCE4B'/%3E%3C/svg%3E")}.rating:not(.hover) span.active,.rating:not(.hover) span:hover{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' fill='none'%3E%3Cpath d='m20.85 8.024-5.588 4.541 1.851 6.959a.38.38 0 0 1-.572.416l-6.046-3.91-6.046 3.91a.38.38 0 0 1-.572-.416l1.851-6.959L.14 8.024a.38.38 0 0 1 .219-.673l7.19-.39L10.14.242a.38.38 0 0 1 .708 0l2.592 6.72 7.19.389a.38.38 0 0 1 .219.673Z' fill='%23FFCE4B'/%3E%3C/svg%3E")}.rating span{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='20' fill='none'%3E%3Cpath d='m20.85 8.024-5.588 4.541 1.851 6.959a.38.38 0 0 1-.572.416l-6.046-3.91-6.046 3.91a.38.38 0 0 1-.572-.416l1.851-6.959L.14 8.024a.38.38 0 0 1 .219-.673l7.19-.39L10.14.242a.38.38 0 0 1 .708 0l2.592 6.72 7.19.389a.38.38 0 0 1 .219.673Z' fill='%23D9D9D9'/%3E%3C/svg%3E");background-size:contain;width:17px;height:17px;float:left;margin:0 5px 0 0}.rating span:last-child{margin:0}section.reviews_block>.content>.header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:767px){section.reviews_block>.content>.header{-ms-flex-wrap:wrap;flex-wrap:wrap}}section.reviews_block>.content>.header .image{margin:0 15px 0 0;height:26px;width:125px}@media (max-width:767px){section.reviews_block>.content>.header .image{-webkit-box-flex:100%;-ms-flex:100%;flex:100%;margin:0 0 8px 0}}section.reviews_block>.content>.header .image svg{height:100%;width:125px}section.reviews_block>.content>.header .rating{display:table;float:left}section.reviews_block>.content>.header .raiting_ball{color:#7e8b91;font-weight:600;display:block;float:left;margin:0 16px 0 5px}section.reviews_block>.content>.header a{display:block;color:#a4493d;font-size:16px;font-weight:500;text-decoration:underline;float:left;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.reviews_block>.content>.header a:hover{text-decoration:none}section.reviews_block>.content .owl-wrapper{margin:12px -10px 5px -10px;width:calc(100% + 20px)}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-stage-outer{padding:10px 0}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav{margin:0}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button{border-radius:50%;background:#f2f2f2;width:44px;height:44px;margin:0;position:absolute;top:50%;margin:-22px 0 0 0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1580px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button{width:38px;height:38px;margin:-19px 0 0 0}}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button{width:30px;height:30px;margin:-15px 0 0 0}}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button:hover{-webkit-box-shadow:0 4px 11px rgba(51,51,61,0.1);box-shadow:0 4px 11px rgba(51,51,61,0.1);background:#fff}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button:hover svg path{stroke:#33333d}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-60px}@media (max-width:1580px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-9px}}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button.owl-prev{left:-5px}}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-60px}@media (max-width:1580px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-9px}}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button.owl-next{right:-5px}}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button svg{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-nav button svg{height:10px}}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item{padding:0 10px}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item{border-radius:22px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);padding:25px;display:table;width:100%;float:left}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item{padding:20px 25px}}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .name{font-size:18px;font-weight:500;display:block;margin:0 5px 0 0;float:left;line-height:25px}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .date{color:#7e8b91;font-size:12px;display:block;float:left;line-height:25px}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .rating{margin:8px 0 0 0;display:table;width:100%;float:left}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .block{display:table;width:100%;float:left;margin:12px 0 0 0}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .block .title{color:#7e8b91;font-size:14px;display:block;margin:0 0 10px 0}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .block .title{margin:0 0 8px 0}}section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .block .text{color:#33333d;font-size:16px;line-height:140%;display:block}@media (max-width:767px){section.reviews_block>.content .owl-wrapper .owl-carousel .owl-item .item .block .text{font-size:14px}}.bx-soa-pp-company{z-index:2}.basket-coupon-section{margin:15px 0;width:100%;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}.basket-coupon-section .basket-coupon-block-field-description{display:none}.basket-coupon-section .basket-coupon-block-field{padding:0;width:100%}.basket-coupon-section .form-group{margin:0;display:table;width:100%;position:relative}.basket-coupon-section .form-group.can_del .coupon_del{background-image:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 10 10M1 11 11 1' stroke='%237E8B91' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");display:block;cursor:pointer;height:100%;width:40px;background-position:50%;background-repeat:no-repeat;position:absolute;right:127px;top:0}@media (max-width:1180px){.basket-coupon-section .form-group.can_del .coupon_del{height:50px;right:0}}.basket-coupon-section .form-group .coupon_del{display:none}.basket-coupon-section .form-group .coupon_del.active{background-image:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 10 10M1 11 11 1' stroke='%237E8B91' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");display:block;cursor:pointer;height:100%;width:40px;background-position:50%;background-repeat:no-repeat;position:absolute;right:127px;top:0}@media (max-width:1180px){.basket-coupon-section .form-group .coupon_del.active{height:50px;right:0}}.basket-coupon-section input{height:50px;width:100%;padding:15px 26px 16px;border-radius:22px;background-color:#f2f2f2;font-family:Vela Sans;font-size:14px;letter-spacing:normal;text-align:left;color:#33333d;border:none;width:calc(100% - 127px);float:left}@media (max-width:1180px){.basket-coupon-section input{width:100%;margin:0 0 8px 0}}.basket-coupon-section .basket-coupon-block-coupon-btn{width:30px;height:100%;top:0;right:0;margin:0;padding:0;border:none;-webkit-transform:rotate(0deg);transform:rotate(0deg);cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg width='7' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1.5 10.5 4-4.5-4-4.5' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:0 50%;padding:0 20px;border-radius:22px;background-color:#ebe0df;background-image:none;font-size:14px;font-weight:600;color:#a4493d;width:117px;line-height:50px;position:relative;float:right;text-align:center}@media (max-width:1180px){.basket-coupon-section .basket-coupon-block-coupon-btn{width:100%}}.basket-coupon-section .basket-coupon-block-coupon-btn.active{background-color:#a4493d;color:#fff}section.basket>.content h1{float:left}section.basket>.content .basket_copy{-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;cursor:pointer;font-size:16px;font-weight:600;color:#7e8b91;text-decoration:none;float:left;margin:18px 0 0 40px;padding:0 0 0 28px;position:relative;background-image:url("data:image/svg+xml,%3Csvg width='22' height='22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.84 9.271a2.445 2.445 0 1 1-3.457 3.458A2.445 2.445 0 0 1 7.84 9.27M17.617 4.383A2.445 2.445 0 1 1 14.16 7.84a2.445 2.445 0 0 1 3.457-3.457M17.617 14.16a2.445 2.445 0 1 1-3.457 3.457 2.445 2.445 0 0 1 3.457-3.457M8.287 9.91l5.426-2.714M8.287 12.09l5.426 2.714' stroke='%237E8B91' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:0 50%;background-repeat:no-repeat;background-size:22px}@media (max-width:1180px){section.basket>.content .basket_copy{margin:14px 0 0 30px}}@media (max-width:767px){section.basket>.content .basket_copy{font-size:14px;margin:6px 0 0 30px}}@media (max-width:360px){section.basket>.content .basket_copy{margin:6px 0 0 20px}}section.basket>.content .basket_copy:hover{text-decoration:underline}section.basket>.content .free_delivery{padding:20px 35px;border-radius:22px;background-color:#ebe0df;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 17px 0;display:none}@media (max-width:1180px){section.basket>.content .free_delivery{padding:15px 30px}}@media (max-width:767px){section.basket>.content .free_delivery{padding:20px 25px;-ms-flex-wrap:wrap;flex-wrap:wrap}}section.basket>.content .free_delivery.active{display:-webkit-box;display:-ms-flexbox;display:flex}section.basket>.content .free_delivery .text{font-size:16px;font-weight:500;line-height:1.2;letter-spacing:normal;text-align:left;color:#a4493d;display:block;padding:0 30px 0 0}@media (max-width:1180px){section.basket>.content .free_delivery .text{font-size:14px}}@media (max-width:767px){section.basket>.content .free_delivery .text{padding:0;width:100%;margin:0 0 10px 0}}section.basket>.content .free_delivery .text .price{font-weight:bold;display:inline-block}section.basket>.content .free_delivery .button{padding:0 15px;border-radius:22px;background-color:#a4493d;text-decoration:none;line-height:36px;display:table;cursor:pointer;font-size:14px;font-weight:600;color:#fff;min-width:180px}section.basket>.content #basket-root{position:relative;display:table;width:100%}@media (max-width:767px){section.basket>.content #basket-root{display:table;padding:0 0 194px 0;padding:0 0 234px 0;padding:0 0 315px 0;padding:0;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}section.basket>.content #basket-root>.row:nth-child(1){width:354px;float:right;position:-webkit-sticky;position:sticky;top:40px}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1){width:247px}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1){width:100%;position:absolute;top:auto;bottom:0;left:0;position:relative;-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;margin:20px 0 0 0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-coupon-alert-section{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1;margin:0;display:none}section.basket>.content #basket-root>.row:nth-child(1) .basket-coupon-alert-section .basket-coupon-alert{margin:20px 0 0 0;padding:0}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1) .basket-coupon-alert-section .basket-coupon-alert{margin:15px 0 0 0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-coupon-alert-section .basket-coupon-text::after{display:none}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-container{opacity:1 !important;padding:0 0 54px 0;margin:0;border:none;position:relative}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-container{padding:0 0 54px 0}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-container{padding:0 0 54px 0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-container .basket-checkout-section{-webkit-box-ordinal-group:2 !important;-ms-flex-order:1 !important;order:1 !important}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-container .basket-coupon-section{-webkit-box-ordinal-group:3 !important;-ms-flex-order:2 !important;order:2 !important;margin:15px 0;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner{border-radius:22px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);-ms-flex-wrap:wrap;flex-wrap:wrap;padding:28px 26px 22px 26px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner{padding:20px 20px 20px 22px}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner{padding:20px 20px 12px 20px}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total{padding:0}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total{min-width:0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-title{color:#33333d;font-family:"Vela Sans";font-size:20px;font-style:normal;font-weight:400;line-height:normal;margin:0 0 18px 0}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-title{font-size:18px}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-title{margin:0 0 12px 0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-description{color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:400;line-height:normal;display:block;margin:9px 0 0 0;float:left}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-total .basket-checkout-block-total-inner .basket-checkout-block-total-description{margin:17px 0 0 0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .text_block{width:100%;margin:0 0 7px 0;position:relative;padding:0 25px 0 0}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .text_block .additional_info{float:right;position:absolute;top:0;right:0}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .text_block .additional_info:hover .text_wrapper{display:block;position:absolute;width:200px;right:25px;top:0;background:#fff;padding:8px 12px;border-radius:4px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);z-index:2}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .text_block .additional_info .label{width:20px;height:20px;background:#a3adb0;border-radius:50%;display:block;text-align:center;line-height:20px;color:#fff;opacity:.4;cursor:pointer}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .text_block .additional_info .text_wrapper{display:none}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price{position:absolute;right:26px}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price{right:20px}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price.text_before{margin-top:52px;top:28px}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price.text_before{top:13px}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;margin:0 0 9px 0}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line{margin:0 0 8px 0}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line:last-child{margin:0}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line.use_bonus_block{margin-top:16px}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line.use_bonus_block .value{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center;-ms-flex-item-align:center;align-self:center}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line.use_bonus_block .value .bonuses{color:#7e8b91;font-size:12px;display:block;float:left}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line.use_bonus_block .value .switcher_el{cursor:pointer}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line .value.cross{position:relative}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .line .value.cross::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='8' fill='none'%3E%3Cpath d='M.049 1h37.15c1.087 0 1.26 1.561.2 1.8l-10.7 2.4c-1.061.239-.888 1.8.199 1.8h37.15' stroke='%23A4493D' stroke-width='1.301'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;display:block;position:absolute;width:100%;height:100%;top:0;left:0}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;width:100%}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .name{margin:0 0 9px 0;padding:0 25px 0 0;display:table;position:relative}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .name .more_info_text{padding:8px 9px 10px 13px;border-radius:16px;background-color:#fff;position:absolute;bottom:22px;-webkit-box-shadow:0 1px 12px 0 rgba(51,51,61,0.1);box-shadow:0 1px 12px 0 rgba(51,51,61,0.1);font-size:12px;color:#33333d;display:none}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .name .more_info{background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' stroke='%237E8B91' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 15.75A6.75 6.75 0 1 1 15.75 9 6.75 6.75 0 0 1 9 15.75Z'/%3E%3Cpath d='M9 9.938V9.75c0-.613.379-.945.758-1.2.37-.25.742-.575.742-1.175a1.5 1.5 0 1 0-3 0M9 12a.188.188 0 1 0 .002.375.188.188 0 0 0-.003-.375Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h18v18H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;width:18px;height:18px;display:block;position:absolute;top:50%;right:0;margin-top:-8px;cursor:pointer;z-index:2}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .name .more_info:hover+.more_info_text{display:block}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .el{position:relative;margin:3px 10px 1px 0;float:left;width:calc(100% - 117px - 10px)}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .el input{padding:0 16px;border-radius:22px;border:solid 1px #f2f2f2;font-size:14px;height:48px;width:100%}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .button{margin:3px 0 1px 0;padding:0 20px;border-radius:22px;background-image:none;font-size:14px;font-weight:600;width:117px;line-height:48px;position:relative;float:right;text-align:center;cursor:pointer;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;background-color:#ebe0df;color:#a4493d}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .button:hover{background-color:#a4493d;color:#fff}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .counpon_input .res{display:table;width:100%;float:left;font-size:12px;color:#a4493d}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-btn-checkout{-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3;font-size:16px;font-weight:600;color:#fff;margin:11px 10px 0 0;padding:12px 16px;background-color:#a4493d;text-decoration:none;text-align:center;line-height:54px;width:100%;margin:11px 0 0 0;padding:0 10px;border-radius:22px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-btn-checkout:hover{background-color:#ebe0df;color:#a4493d}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price-inner{padding:0}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price-inner .basket-coupon-block-total-price-old{position:relative}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price-inner .basket-coupon-block-total-price-old::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='8' fill='none'%3E%3Cpath d='M.049 1h37.15c1.087 0 1.26 1.561.2 1.8l-10.7 2.4c-1.061.239-.888 1.8.199 1.8h37.15' stroke='%23A4493D' stroke-width='1.301'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;display:block;position:absolute;width:100%;height:100%;top:0;left:0}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price-inner .basket-coupon-block-total-price-current{color:#33333d;text-align:right;font-family:"Vela Sans";font-size:20px;font-style:normal;font-weight:400;line-height:normal;margin:0}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price-inner .basket-coupon-block-total-price-current{font-size:18px}}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block-total-price-inner .basket-coupon-block-total-price-difference{display:none}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-btn{position:absolute;left:0;bottom:0;width:100%;padding:0;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-btn .basket-btn-checkout{margin:0;cursor:pointer;border-radius:22px;background:#a4493d;border:none;width:100%;height:54px;color:#fff;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:600;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;text-decoration:none}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-btn .basket-btn-checkout:hover{background:#f2f2f2;color:#33333d}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-btn .basket-btn-checkout.disabled{cursor:default;opacity:.6}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-btn .basket-btn-checkout.disabled:hover{background:#a4493d;color:#fff}section.basket>.content #basket-root>.row:nth-child(1) .basket-checkout-section-inner .basket-checkout-block.basket-checkout-block-btn .basket-btn-checkout+.error{position:absolute;width:100%;text-align:left;margin:10px 0 0 0;color:#7d8b91}section.basket>.content #basket-root>.row:nth-child(3){float:left;width:calc(100% - 354px - 87px)}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3){width:calc(100% - 247px - 35px)}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3){width:100%}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-header{display:none}section.basket>.content #basket-root>.row:nth-child(3) #basket-items-list-wrapper{border:none}section.basket>.content #basket-root>.row:nth-child(3) #basket-item-list{padding:0}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container{border-bottom:solid 1px #f2f2f2}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container:last-child{border:none}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container>td{border:none;padding-top:8px !important;padding-bottom:8px !important;vertical-align:middle}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container>td{padding-top:0 !important;padding-bottom:0 !important}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container>td.basket-items-list-item-price{height:35px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container>td.basket-items-list-item-amount{min-width:144px}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container>td.basket-items-list-item-price-for-one{-webkit-box-ordinal-group:3 !important;-ms-flex-order:2 !important;order:2 !important}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-items-list-item-remove{display:none}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-items-list-item-descriptions{padding-top:0}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-items-list-item-descriptions .basket-items-list-item-descriptions-inner{display:table;width:100%}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-items-list-item-descriptions .basket-items-list-item-descriptions-inner .basket-item-block-image{float:left}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-items-list-item-descriptions .basket-items-list-item-descriptions-inner .basket-item-block-info{float:left;padding:0;max-width:calc(100% - 103px)}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-image{max-width:84px;padding:0;margin:0 19px 0 34px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-image{margin:0 15px 0 34px;max-width:54px}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-image a{float:left;border-radius:22px;overflow:hidden;width:84px;height:86px}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-image a{width:54px;height:54px}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-image .basket-item-image{max-width:100% !important;max-height:100% !important;width:auto !important;height:auto !important;margin:0 !important}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-info{-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-info .basket-item-actions-remove{position:absolute;left:0;top:50%;margin:-12.5px 0 0 -3.5px}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-info .basket-item-actions-remove::after,section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-info .basket-item-actions-remove::before{background:#7e8b91;width:1px}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-info .basket-item-actions-remove:hover::after,section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-info .basket-item-actions-remove:hover::before{background:#f00}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container h2.basket-item-info-name{-webkit-box-flex:100%;-ms-flex:100%;flex:100%;margin-bottom:4px}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container h2.basket-item-info-name{padding:0}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container h2.basket-item-info-name a{padding:0}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container h2.basket-item-info-name a span{color:#33333d;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:400;line-height:normal}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container h2.basket-item-info-name a span{font-size:14px;font-weight:500}}@media (max-width:767px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container h2.basket-item-info-name a span{padding:0}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-properties{-webkit-box-flex:100%;-ms-flex:100%;flex:100%}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-properties div{color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-price-current-text{color:#33333d;font-family:"Vela Sans";font-size:20px;font-style:normal;font-weight:400;line-height:normal;float:left}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-price-current-text{font-size:14px}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount{width:114px;height:35px;padding:0;border-radius:24.429px;border:1px solid #f2f2f2;background:#fff;margin:0 42px;display:block}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount{margin:0 15px}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-plus,section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-minus{margin:3px;border-radius:50%;display:block;float:left;border:none !important}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-plus,section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-minus{margin:2.5px 3px 3px 3px}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-plus::after,section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-minus::after{display:none}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-plus::before,section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-minus::before{display:none}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-minus{background:#f2f2f2;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='29' fill='none'%3E%3Ccircle cx='14.1' cy='14.5' r='13.843' fill='%23f2f2f2'/%3E%3Cpath d='M6.771 14.5H21.43' stroke='%239EA7B6' stroke-width='1.221'/%3E%3C/svg%3E")}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-btn-plus{background:#a4493d;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='29' fill='none'%3E%3Ccircle cx='13.9' cy='14.5' r='13.843' fill='%23A4493D'/%3E%3Cpath d='M6.571 14.5H21.23M13.9 7.171V21.83' stroke='%23fff' stroke-width='1.221'/%3E%3C/svg%3E")}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-filed-block{display:block;float:left}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-filed-block input{width:44px;height:33px;border:none;color:#33333d;font-family:"Vela Sans";font-size:20px;font-style:normal;font-weight:400;line-height:normal}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-amount .basket-item-amount-field-description{display:none}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price{padding-top:0}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price .basket-item-price-title{display:none}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price .basket-item-price-old{position:relative;top:auto;right:auto}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price .basket-item-price-old .basket-item-price-old-text{font-size:14px;color:#929292;font-family:Vela Sans;float:left}@media (max-width:1180px){section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price .basket-item-price-old .basket-item-price-old-text{font-size:12px}}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price .basket-item-price-old .basket-item-price-old-text::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='8' fill='none'%3E%3Cpath d='M.049 1h37.15c1.087 0 1.26 1.561.2 1.8l-10.7 2.4c-1.061.239-.888 1.8.199 1.8h37.15' stroke='%23A4493D' stroke-width='1.301'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;display:block;position:absolute;width:100%;height:100%;top:0;left:0}section.basket>.content #basket-root>.row:nth-child(3) .basket-items-list-item-container .basket-item-block-price .basket-item-price-difference{display:none}section.basket>.content #bx-soa-order-form .bx-soa-reference{display:none}section.basket>.content #bx-soa-order-form .bx-soa-location-input-container{margin:0 0 30px 0}section.basket>.content #bx-soa-order-form #bx-soa-order{position:relative;display:table;width:100%}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-order{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}}section.basket>.content #bx-soa-order-form #bx-soa-order>.bx-soa{float:left;width:calc(100% - 354px - 87px)}@media (max-width:1180px){section.basket>.content #bx-soa-order-form #bx-soa-order>.bx-soa{width:calc(100% - 247px - 35px)}}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-order>.bx-soa{width:100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total-mobile+.basket-coupon-section{display:none}@media (max-width:7px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total-mobile+.basket-coupon-section{display:-webkit-box;display:-ms-flexbox;display:flex}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total{padding:28px 26px 22px 26px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);border-radius:22px}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total{width:100%;padding:20px}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total .text_block{margin:0 0 15px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total .basket-coupon-section{display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-total .basket-coupon-section{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section{border:none;padding:0 0 35px 0}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container{padding:0;background:none;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title{color:#33333d;font-family:"Vela Sans";font-size:20px;font-style:normal;font-weight:400;line-height:120%;padding:0}@media (max-width:1180px){section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title{font-size:18px}}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title .bx-soa-section-title-count{width:32px;height:32px;border-radius:50%;background:#a4493d;border:none;margin:0 10px 0 0}@media (max-width:1180px){section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title .bx-soa-section-title-count{margin:0 12px 0 0;width:28px;height:28px}}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title .bx-soa-section-title-count::after{color:#fff;font-family:"Vela Sans";font-size:18px;font-style:normal;font-weight:500;line-height:32px}@media (max-width:1180px){section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title .bx-soa-section-title-count::after{font-size:16px;line-height:28px}}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title .bx-soa-section-title-count::before{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title+div a{font-size:0;color:rgba(255,255,255,0);display:block;width:18px;height:18px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none'%3E%3Cpath d='M13.155 7.59 10.41 4.845M4.688 15.75H2.25v-2.438c0-.199.079-.39.22-.53l10-10.002a.75.75 0 0 1 1.06 0l1.689 1.688a.75.75 0 0 1 0 1.061l-10 10.001a.748.748 0 0 1-.53.22Z' stroke='%237E8B91' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;margin:0 0 0 8px;display:none}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content{padding:15px 0 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group{float:left;width:100%;display:table}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group>label,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group>label,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group>label,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group>label{color:#7e8b91;font-size:12px;font-weight:400;line-height:normal;margin:10px 0 4px 0;display:block}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .dropdown-block{background:#fff;border-radius:6px;border:1px solid #f2f2f2;outline:none;height:44px;padding:6px 16px;width:100%;max-width:440px;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:400;line-height:normal}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group input[type="text"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .dropdown-block{height:40px}}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .dropdown-block,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .dropdown-block{padding:0 22px 0 30px}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group .dropdown-block .bx-ui-sls-clear,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group .dropdown-block .bx-ui-sls-clear,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .dropdown-block .bx-ui-sls-clear,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .dropdown-block .bx-ui-sls-clear{top:4px}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group .dropdown-block .dropdown-icon,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group .dropdown-block .dropdown-icon,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .dropdown-block .dropdown-icon,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .dropdown-block .dropdown-icon{top:14px}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-group textarea,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-group textarea,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group textarea,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group textarea{border-radius:6px;border:1px solid #f2f2f2;outline:none;height:88px;padding:6px 16px;width:100%;max-width:440px;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:400;line-height:normal}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group{display:table;float:left;width:100%}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check{float:left}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check [type="radio"],section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check [type="radio"]{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check [type="radio"]:checked+label::after,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check [type="radio"]:checked+label::after{border:1px solid #a4493d}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check [type="radio"]:checked+label::before,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check [type="radio"]:checked+label::before{opacity:1}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check [type="radio"]+label,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check [type="radio"]+label{padding:0 0 0 24px;position:relative;margin:0 16px 0 0;cursor:pointer;line-height:19px}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check [type="radio"]+label::after,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check [type="radio"]+label::after{content:"";display:block;border-radius:9px;border:1px solid #f2f2f2;width:18px;height:18px;-webkit-box-sizing:border-box;box-sizing:border-box;position:absolute;left:0;top:50%;margin:-9px 0 0 0;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .col-sm-12 .form-check-group .form-check [type="radio"]+label::before,section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-section-content .bx_soa_location .form-check-group .form-check [type="radio"]+label::before{content:"";border-radius:9px;background:#a4493d;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;opacity:0;left:4px;top:50%;-webkit-box-sizing:border-box;box-sizing:border-box;position:absolute;margin:-5px 0 0 0;width:10px;height:10px}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .row.bx-soa-more{border:none;padding:0;margin:0}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .row.bx-soa-more .btn-outline-secondary{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .row.bx-soa-more .pull-right{border-radius:22px;background:#a4493d;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;width:194px;height:54px;padding:12px 16px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:600;line-height:normal;cursor:pointer}section.basket>.content #bx-soa-order-form #bx-soa-order .bx-soa-section .bx-soa-coupon{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container{display:table;width:100%;float:left}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company{cursor:pointer;border-radius:22px;background:#fff;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);width:calc(50% - 16px);float:left;margin:0 0 20px 0;padding:20px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company:nth-child(2n-1),section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company:nth-child(2n-1){margin-right:32px}@media (max-width:991px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company:nth-child(2n-1),section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company:nth-child(2n-1){margin-right:0}}@media (max-width:991px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company{width:100%;margin:0 0 8px 0}}@media (max-width:991px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company:last-child,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company:last-child{margin:0 0 0 0}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company.bx-selected,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company.bx-selected{background:#ebe0df;-webkit-box-shadow:none;box-shadow:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company.bx-selected .bx-soa-pp-company-image,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company.bx-selected .bx-soa-pp-company-image{background-color:#fff}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-graf-container,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-graf-container{border:none;border-radius:22px;background:none;padding:0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-graf-container input,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-graf-container input{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-smalltitle,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-smalltitle{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-image,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-image{width:54px;height:54px;border-radius:50%;background-color:#ebe0df;background-position:50%;background-repeat:no-repeat;background-size:32px;top:0;left:0;position:unset;float:left}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+.bx-soa-pp-company-image::before{content:"";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+.bx-soa-pp-company-image::after{content:"";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:25px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+div+.bx-soa-pp-delivery-cost,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+div+.bx-soa-pp-delivery-cost{color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;background:none;padding:0;position:absolute;top:2px;left:66px;display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+div+.bx-soa-pp-delivery-cost::before{content:"Самовывоз,";display:inline-block;padding:0 4px 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company input[name="DELIVERY_ID"]+div+.bx-soa-pp-delivery-cost::after{content:"Охта Молл (магазин Уютности)";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;top:25px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+.bx-soa-pp-company-image::before{content:"Boxberry (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+.bx-soa-pp-company-image::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+div+.bx-soa-pp-delivery-cost::before{content:"Boxberry (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_8+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+.bx-soa-pp-company-image::before{content:"Boxberry (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+.bx-soa-pp-company-image::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+div+.bx-soa-pp-delivery-cost::before{content:"Boxberry (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_9+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+.bx-soa-pp-company-image::before{content:"СДЭК (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+.bx-soa-pp-company-image::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+div+.bx-soa-pp-delivery-cost::before{content:"СДЭК (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_74+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+.bx-soa-pp-company-image::before{content:"СДЭК (Постамат)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+.bx-soa-pp-company-image::after{content:""}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+div+.bx-soa-pp-delivery-cost::before{content:"СДЭК (Постамат)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_76+div+.bx-soa-pp-delivery-cost::after{content:""}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+.bx-soa-pp-company-image::before{content:"СДЭК (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+.bx-soa-pp-company-image::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+div+.bx-soa-pp-delivery-cost::before{content:"СДЭК (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_75+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+.bx-soa-pp-company-image::before{content:"DPD (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+.bx-soa-pp-company-image::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+div+.bx-soa-pp-delivery-cost::before{content:"DPD (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_83+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+.bx-soa-pp-company-image::before{content:"DPD (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+.bx-soa-pp-company-image::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+div+.bx-soa-pp-delivery-cost::before{content:"DPD (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_84+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+.bx-soa-pp-company-image::before{content:"Dostavista"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+.bx-soa-pp-company-image::after{content:""}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+div+.bx-soa-pp-delivery-cost::before{content:"Dostavista"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_85+div+.bx-soa-pp-delivery-cost::after{content:""}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+.bx-soa-pp-company-image::before{content:"Яндекс Доставка (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+.bx-soa-pp-company-image::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+div+.bx-soa-pp-delivery-cost::before{content:"Яндекс Доставка (Доставка до двери)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_78+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо указать адрес"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+.bx-soa-pp-company-image::before{content:"Яндекс Доставка (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+.bx-soa-pp-company-image::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+div+.bx-soa-pp-delivery-cost::before{content:"Яндекс Доставка (Доставка в ПВЗ)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_79+div+.bx-soa-pp-delivery-cost::after{content:"Необходимо выбрать ПВЗ"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+.bx-soa-pp-company-image,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+.bx-soa-pp-company-image{background-image:url("data:image/svg+xml,%3Csvg width='32' height='32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' stroke='%23A4493D' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath clip-rule='evenodd' d='M22.928 19.23v-6.46c0-.477-.255-.917-.667-1.155l-5.594-3.23a1.33 1.33 0 0 0-1.334 0l-5.594 3.23a1.336 1.336 0 0 0-.667 1.154v6.46c0 .476.255.916.667 1.155l5.594 3.23a1.33 1.33 0 0 0 1.334 0l5.594-3.23a1.33 1.33 0 0 0 .667-1.153Z' stroke-width='1.25'/%3E%3Cpath d='M10 4H6.667A2.666 2.666 0 0 0 4 6.667V10M4 22v3.333A2.666 2.666 0 0 0 6.667 28H10M22 28h3.333A2.666 2.666 0 0 0 28 25.333V22M28 10V6.667A2.666 2.666 0 0 0 25.333 4H22' stroke-width='1.383'/%3E%3Cpath d='M16 23.787V16M9.25 12.103 16 16l6.75-3.897' stroke-width='1.25'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h32v32H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") !important}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+.bx-soa-pp-company-image::before{content:"Самовывоз"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+.bx-soa-pp-company-image::after{content:"Санкт-Петербург, Охта Молл (магазин Уютности)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+div+.bx-soa-pp-delivery-cost::before{content:"Самовывоз,"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3+div+.bx-soa-pp-delivery-cost::after{content:"Санкт-Петербург, Охта Молл (магазин Уютности)"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+.bx-soa-pp-company-image,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+.bx-soa-pp-company-image{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='24' fill='none'%3E%3Cpath d='M3 5.333H1.667M4.333 1.333H1.667M21.667 22.666H3M22.033 1.333 20.72 5.716c-.17.564-.69.95-1.278.95h-4.149a1.334 1.334 0 0 1-1.277-1.715L15.1 1.333M9.667 13.333h2.84' stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22.25 17.333H8.134a3.2 3.2 0 0 1-3.065-4.12l2.88-9.6a3.2 3.2 0 0 1 3.065-2.28h14.119a3.2 3.2 0 0 1 3.065 4.12l-2.88 9.6a3.202 3.202 0 0 1-3.066 2.28Z' stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+div+.bx-soa-pp-delivery-cost,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+div+.bx-soa-pp-delivery-cost{color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;background:none;padding:0;position:absolute;top:2px;left:66px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+div+.bx-soa-pp-delivery-cost::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+div+.bx-soa-pp-delivery-cost::before{content:"Доставка,";display:inline-block;padding:0 4px 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+div+.bx-soa-pp-delivery-cost::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_80000+div+.bx-soa-pp-delivery-cost::after{content:"В удобном для Вас пункте выдачи или постамате";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;top:25px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_10+.bx-soa-pp-company-image,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_10+.bx-soa-pp-company-image{background-image:url("data:image/svg+xml,%3Csvg width='25' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9.328 5.8H3.727a2.394 2.394 0 0 0-2.394 2.393v14.415A2.394 2.394 0 0 0 3.727 25h9.529a2.394 2.394 0 0 0 2.393-2.393v-1.018'/%3E%3Cpath d='m8.393 19.635 8.679 2.338a2.667 2.667 0 0 0 3.27-1.888l3.569-13.392a2.677 2.677 0 0 0-1.883-3.261l-8.679-2.339a2.667 2.667 0 0 0-3.27 1.888L6.51 16.373a2.668 2.668 0 0 0 1.882 3.262ZM11.2 20.387l4.96-18.534'/%3E%3C/g%3E%3C/svg%3E") !important}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_10+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_10+.bx-soa-pp-company-image::before{content:"Оплата банковской картой";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:-2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_10+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_10+.bx-soa-pp-company-image::after{content:"Принимаем все типы карт";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:19px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_13+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_13+.bx-soa-pp-company-image::before{content:"Система быстрых платежей (СБП)";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:-2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_13+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_13+.bx-soa-pp-company-image::after{content:"Оплатите в 1 клик с телефона или по QR-коду";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:19px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_11+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_11+.bx-soa-pp-company-image::before{content:"Яндекс Пэй";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:-2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_11+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_11+.bx-soa-pp-company-image::after{content:"Кешбэк 3%";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:19px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_12+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_12+.bx-soa-pp-company-image::before{content:"Яндекс Сплит";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:-2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_12+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_12+.bx-soa-pp-company-image::after{content:"Оплатите частями";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:19px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_14+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_14+.bx-soa-pp-company-image::before{content:"Долями";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:-2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_14+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_14+.bx-soa-pp-company-image::after{content:"Оплата покупок частями";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:19px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_15+.bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_15+.bx-soa-pp-company-image::before{content:"Халва";display:inline-block;padding:0 4px 0 0;color:#33333d;font-family:"Vela Sans";font-size:14px;font-style:normal;font-weight:700;line-height:normal;position:absolute;left:68px;top:-2px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_15+.bx-soa-pp-company-image::after,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_PAY_SYSTEM_ID_15+.bx-soa-pp-company-image::after{content:"Оплата покупок в рассрочку";display:block;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;line-height:normal;position:absolute;left:68px;top:19px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div{float:left;display:table;width:100%;padding:0;margin:0 0 30px 0}@media (max-width:991px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div{margin:20px 0 30px 0}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company{border:none;padding:0;background:none;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-subTitle,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-subTitle,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-logo,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-logo{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere{margin:0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere a,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere a{margin:20px 0 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere br,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere br{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere .sdek_pvzAddr,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block #IPOLSDEK_injectHere .sdek_pvzAddr{margin:20px 0 0 0;display:block;font-size:14px;font-weight:700;color:#33333d}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc{text-align:left;font-size:0;line-height:normal;margin:0;padding:0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc a,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc a{cursor:pointer;text-decoration:none;display:table;border-radius:18px;border:1.5px solid #7e8b91;color:#7e8b91;margin:20px 0 0 0;padding:8px 16px !important;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc a:hover,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc a:hover{border-color:#a4493d;color:#a4493d}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc+div,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc+div{margin:0 0 10px 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc+div a,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc+div a{cursor:pointer;text-decoration:none;display:table;border-radius:18px;border:1.5px solid #7e8b91;color:#7e8b91;margin:0 0 9px 0;padding:8px 16px;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc+div a:hover,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-company-block .bx-soa-pp-company-desc+div a:hover{border-color:#a4493d;color:#a4493d}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list{margin:0;width:100%}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li{padding:0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li:nth-child(1),section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li:nth-child(1){display:none;display:block}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-termin,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-termin{display:block;float:left;padding:0 4px 0 0;font-size:14px;font-weight:700;color:#33333d}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description{font-size:14px;font-weight:700;color:#33333d}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div#boxberrySelectPvzWidget,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div#boxberrySelectPvzWidget{margin:20px 0 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div#boxberrySelectPvzWidget a,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div#boxberrySelectPvzWidget a{margin:0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container{margin:20px 0 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container a,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container a{margin:0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container br,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container br{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container #IPOLH_DPD_TERMINAL_ADDR,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div.ipol-dpd-pickup-container #IPOLH_DPD_TERMINAL_ADDR{margin:20px 0 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div a,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div a{cursor:pointer;text-decoration:none;display:table;border-radius:18px;border:1.5px solid #7e8b91;color:#7e8b91;margin:0 0 9px 0;padding:8px 16px;font-size:12px;font-weight:600;letter-spacing:.48px;text-transform:uppercase;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div a:hover,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container+div>.bx-soa-pp-company .bx-soa-pp-list li .bx-soa-pp-list-description>div a:hover{border-color:#a4493d;color:#a4493d}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket{margin:25px 0 0 0}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-section-title-container .bx-soa-section-title{font-size:16px}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-section-title-container .bx-soa-section-title+div a{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' fill='none'%3E%3Cpath d='M10 5 5.5 1 1 5' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-section-title-container .bx-soa-section-title .bx-soa-section-title-count{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-coupon{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .row.bx-soa-more{display:block}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-img-block{padding:0;width:46px;margin:0 15px 0 0}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-img-block .bx-soa-item-imgcontainer{width:46px;height:46px;border-radius:22px;border:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-content{height:46px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-content .bx-soa-item-title a{color:#33333d;font-size:16px;text-decoration:none}@media (max-width:1180px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-content .bx-soa-item-title a{font-size:14px}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-td .bx-soa-item-td-title{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-td .bx-soa-item-td-text .bx-price.all{display:block;width:100%;font-size:16px;font-weight:400}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-td .bx-soa-item-td-text .bx-price.all.old{font-size:14px;color:#929292;font-family:Vela Sans;float:right;width:auto;position:relative}@media (min-width:581px) and (max-width:991px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-td .bx-soa-item-td-text .bx-price.all.old{float:none;display:table;margin:0 auto}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-basket .bx-soa-item-td .bx-soa-item-td-text .bx-price.all.old::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='8' fill='none'%3E%3Cpath d='M.049 1h37.15c1.087 0 1.26 1.561.2 1.8l-10.7 2.4c-1.061.239-.888 1.8.199 1.8h37.15' stroke='%23A4493D' stroke-width='1.301'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;display:block;position:absolute;width:100%;height:100%;top:0;left:0}@media (max-width:979px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container{margin:0 0 20px 0}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company{width:100%}@media (max-width:520px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-button a{font-size:10px;padding:8px 12px}}@media (max-width:520px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-image{width:0}}@media (max-width:520px){section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-image::before,section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company .bx-soa-pp-company-image::after{left:0 !important}}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-section-title-count::after{content:"1"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-section-title-count::after{content:"2"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .row .bx-soa-pp-company:last-child{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-properties .bx-soa-section-title-count::after{content:"3"}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-properties .form-group[data-property-id-row="32"],section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-properties .form-group[data-property-id-row="33"]{display:none}section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-orderSave .btn{border-radius:22px;background:#a4493d;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;width:194px;height:54px;padding:12px 16px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:600;line-height:normal;cursor:pointer;text-decoration:none}section.basket>.content #bx-soa-order-form #bx-soa-order .informer{border-radius:22px}section.basket>.content #bx-soa-order-form #bx-soa-order .informer>div p:last-child{margin:0}section.basket>.content #bx-soa-order-form #bx-soa-total{width:354px;float:right;position:-webkit-sticky;position:sticky;top:40px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);padding:28px 26px 22px 26px}@media (max-width:1180px){section.basket>.content #bx-soa-order-form #bx-soa-total{width:247px;padding:20px 20px 12px 22px}}@media (max-width:767px){section.basket>.content #bx-soa-order-form #bx-soa-total{padding:20px 20px 12px 22px;position:relative;top:auto;margin:0 0 40px 0}}section.basket>.content #bx-soa-order-form #bx-soa-total-mobile{display:none}@media (max-width:7px){section.basket>.content #bx-soa-order-form #bx-soa-total-mobile{display:block}}section.basket>.content #bx-soa-order-form .bx-soa-cart-total{position:relative;opacity:1 !important;border:none;border-radius:22px;background:#fff;padding:0;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line{border:none;padding:0;margin:0 0 9px 0;background:none;width:100%}@media (max-width:767px){section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line{margin:0 0 8px 0}}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(1){-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(2){-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(3){-webkit-box-ordinal-group:4;-ms-flex-order:3;order:3}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(4){-webkit-box-ordinal-group:5;-ms-flex-order:4;order:4}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(5){-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(6){-webkit-box-ordinal-group:7;-ms-flex-order:6;order:6}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(7){-webkit-box-ordinal-group:8;-ms-flex-order:7;order:7}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line:nth-child(8){-webkit-box-ordinal-group:9;-ms-flex-order:8;order:8}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line.bx-soa-cart-total-line-total{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0;margin:0 0 18px 0}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line.bx-soa-cart-total-line-total .bx-soa-cart-t{color:#33333d;font-family:"Vela Sans";font-size:20px;font-style:normal;font-weight:400;line-height:normal}@media (max-width:1180px){section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line.bx-soa-cart-total-line-total .bx-soa-cart-t{font-size:18px}}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line.bx-soa-cart-total-line-total .bx-soa-cart-d{color:#33333d;text-align:right;font-family:"Vela Sans";font-size:20px !important;font-style:normal;font-weight:400;line-height:normal}@media (max-width:1180px){section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line.bx-soa-cart-total-line-total .bx-soa-cart-d{font-size:18px !important}}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line .bx-soa-cart-t{color:#33333d;font-size:14px;line-height:normal;font-weight:normal}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line .bx-soa-cart-d{color:#33333d;text-align:right;font-size:14px;line-height:normal}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line .bx-soa-cart-d .cross{position:relative}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line .bx-soa-cart-d .cross::after{content:"";background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='65' height='8' fill='none'%3E%3Cpath d='M.049 1h37.15c1.087 0 1.26 1.561.2 1.8l-10.7 2.4c-1.061.239-.888 1.8.199 1.8h37.15' stroke='%23A4493D' stroke-width='1.301'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;background-size:contain;display:block;position:absolute;width:100%;height:100%;top:0;left:0}section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-button-container{display:none}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox{float:left;display:table;width:100%;margin:20px 0 30px 0}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox label input[type="checkbox"]{display:none}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox label input[type="checkbox"]:checked+span::before{background:#ebe0df;border:none}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox label input[type="checkbox"]:checked+span::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' fill='none'%3E%3Cpath d='m9 1.25-5.5 5.5L1 4.25' stroke='%23A4493D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox label input[type="checkbox"]+span{color:#7e8b91;font-size:12px;padding:0 0 0 29px;position:relative;display:block}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox label input[type="checkbox"]+span::before{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:2px;border-radius:4px;border:solid 1px #7e8b91;-webkit-box-sizing:border-box;box-sizing:border-box}section.basket>.content #bx-soa-order-form #bx-soa-orderSave .checkbox label input[type="checkbox"]+span::after{content:"";display:block;position:absolute;width:18px;height:18px;left:0;top:2px}section.basket.complite>.content .row .col{color:#33333d;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:400;line-height:normal}section.basket.complite>.content .row .alert{padding:0}section.basket.complite>.content .row h3{font-size:20px;font-weight:400;line-height:120%;margin:26px 0 8px 0}section.basket.complite>.content .btn,section.basket.complite>.content input[type="SUBMIT"]{border-radius:22px;background:#a4493d;border:none;display:-webkit-box;display:-ms-flexbox;display:flex;width:194px;height:54px;padding:12px 16px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;color:#fff;font-family:"Vela Sans";font-size:16px;font-style:normal;font-weight:600;line-height:normal;cursor:pointer;text-decoration:none;margin:0 0 22px 0;display:table;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.basket.complite>.content .btn:hover,section.basket.complite>.content input[type="SUBMIT"]:hover{color:#33333d;background:#f2f2f2}section.basket.complite>.content form[action*="https://securepayments.tinkoff.ru/"]{margin:30px 0 0 0}.show_menu_bg,.personal_bg{display:table;position:fixed;width:100%;height:100%;left:0;top:0;z-index:2;cursor:pointer}.use_bonus_block,.use_gift_card_block{-webkit-box-flex:100%;-ms-flex:100%;flex:100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2;margin:0 0 15px 0}.use_bonus_block .title,.use_gift_card_block .title{width:100%;display:block;font-family:Vela Sans;font-size:14px;font-style:normal;font-weight:400;line-height:normal;color:#33333d;margin:0 0 8px 0}.use_bonus_block input,.use_gift_card_block input{height:50px;padding:15px 26px 16px;border-radius:22px;background-color:#f2f2f2;font-family:Vela Sans;font-size:14px;letter-spacing:normal;text-align:left;color:#33333d;border:none;width:calc(100% - 127px);float:left}@media (max-width:991px){.use_bonus_block input,.use_gift_card_block input{width:100%;display:block;margin:0 0 8px 0}}.use_bonus_block .button,.use_gift_card_block .button{border:none;background-repeat:no-repeat;background-position:0 50%;padding:0 20px;border-radius:22px;background-color:#ebe0df;background-image:none;font-size:14px;font-weight:600;color:#a4493d;width:117px;line-height:50px;position:relative;float:right;text-align:center}@media (max-width:991px){.use_bonus_block .button,.use_gift_card_block .button{width:100%;display:block}}.use_bonus_block .button.active,.use_gift_card_block .button.active{background:#a4493d;color:#fff;cursor:pointer}.use_bonus_block .text,.use_gift_card_block .text{width:100%;display:table;color:#7e8b91;font-family:"Vela Sans";font-size:12px;font-style:normal;font-weight:400;margin:5px 0 0 0;float:left}.use_bonus_block form,.use_gift_card_block form{position:relative;float:left;width:100%}.use_bonus_block .del,.use_gift_card_block .del{display:none}.use_bonus_block .del.active,.use_gift_card_block .del.active{background-image:url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 1 10 10M1 11 11 1' stroke='%237E8B91' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");display:block;cursor:pointer;height:100%;width:40px;background-position:50%;background-repeat:no-repeat;position:absolute;right:127px;top:0}@media (max-width:1180px){.use_bonus_block .del.active,.use_gift_card_block .del.active{height:50px;right:0}}form.s1{padding:30px 20px;border-radius:22px;background-color:#ebe0df}form.s1>.title{font-size:26px;line-height:1.2;text-align:center;color:#a4493d;display:block;margin:0 0 8px 0}@media (max-width:1180px){form.s1>.title{text-align:left}}form.s1>.el{margin:0 0 8px 0;width:100%;display:table;position:relative}form.s1>.el label{font-size:12px;color:#7e8b91;display:block;margin:0 0 8px 0}form.s1>.el label span{color:#a4493d}form.s1>.el input[type="text"]{border-radius:6px;background-color:#fff;border:none;padding:0 16px;height:44px;font-size:14px;color:#33333d;font-family:"Vela Sans";width:100%}form.s1>.el textarea{border-radius:6px;border:none;outline:none;height:88px;padding:6px 16px;width:100%;color:#33333d;font-family:"Vela Sans";font-size:14px;font-weight:400;border:solid 1px #f2f2f2;resize:none}form.s1>.el .text_on_field{line-height:44px;display:block;position:absolute;bottom:0;right:0;padding:0 16px 0 0;font-size:12px;color:#7e8b91}@media (max-width:1180px){form.s1>.el .text_on_field{display:none}}form.s1>.el .nice-select{width:100%;height:44px;border:none}form.s1>.el .nice-select .list{width:100%}form.s1 input[type="checkbox"]{display:none}form.s1 input[type="checkbox"]:checked+label::after{background-image:url("data:image/svg+xml,%3Csvg width='10' height='8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m9 1.25-5.5 5.5L1 4.25' stroke='%23A4493D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:50%}form.s1 input[type="checkbox"]+label{display:block;margin:0 0 16px 0;font-size:14px;color:#33333d;padding:0 0 0 29px;position:relative;cursor:pointer}form.s1 input[type="checkbox"]+label::after{content:"";position:absolute;left:0;top:0;display:block;border-radius:4px;width:18px;height:18px}form.s1 input[type="checkbox"]+label::before{content:"";position:absolute;left:0;top:0;display:block;border-radius:4px;background-color:#fff;width:18px;height:18px}form.s1 .button{padding:0 15px;border-radius:22px;background-color:#a4493d;line-height:54px;font-size:16px;font-weight:600;color:#fff;border:none;cursor:pointer;min-width:230px}@media (max-width:767px){form.s1 .button{line-height:41px}}section.fbt{margin:0}section.fbt .content p{font-size:16px;max-width:872px}@media (max-width:767px){section.fbt .content p{font-size:14px}}section.fbt .content .banner{margin:0 0 65px 0}@media (max-width:1080px){section.fbt .content .banner{margin:0 0 32px 0}}@media (max-width:680px){section.fbt .content .banner{margin:0 0 16px 0}}section.fbt .content .banner img{border-radius:6px;overflow:hidden;width:100%;display:none}@media (min-width:1101px){section.fbt .content .banner img.pc{display:block}}@media (min-width:768px) and (max-width:1100px){section.fbt .content .banner img.tb{display:block}}@media (max-width:767px){section.fbt .content .banner img.mob{display:block}}section.orders .content .container-fluid{padding:0}section.orders .content .container-fluid .mr-4{display:none}section.orders .content .orders_goods_count{font-size:20px;line-height:1.2;color:#33333d;margin:0 0 20px;display:block}@media (max-width:991px){section.orders .content .orders_goods_count{font-size:18px;margin:0 0 15px}}@media (max-width:767px){section.orders .content .orders_goods_count{font-size:16px;margin:0 0 12px}}section.orders .content .els .row.personal-order-item-container{display:none}section.orders .content .els .el{padding:12px 18px 15px;border-radius:22px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);background-color:#fff;margin:0 0 8px 0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;position:relative}@media (max-width:991x){section.orders .content .els .el{padding:14px 48px 36px;margin:0 0 10px 0}}@media (max-width:767px){section.orders .content .els .el{padding:20px;margin:0 0 8px 0;-ms-flex-wrap:wrap;flex-wrap:wrap}}section.orders .content .els .el:last-child{margin:0}@media (max-width:767px){section.orders .content .els .el .left{width:100%}}section.orders .content .els .el .right{display:-webkit-box;display:-ms-flexbox;display:flex;text-wrap:nowrap}@media (max-width:767px){section.orders .content .els .el .right{width:auto;margin:10px 0 0 0}}section.orders .content .els .el .title{font-size:16px;font-weight:600;line-height:1.2;color:#33333d;margin:0 9px 4px 0;display:block;float:left;line-height:24px}section.orders .content .els .el .order_number{display:block;margin:0 0 0 0;font-size:12px;color:#7e8b91;width:100%;float:left}section.orders .content .els .el .personal-order-item-additional-info{display:block;font-size:12px;color:#7e8b91;width:100%;float:left}section.orders .content .els .el .personal-order-item-additional-info .personal-order-item-additional-info-more-block{display:none}section.orders .content .els .el .status{float:left;margin:0 0 4px 0}section.orders .content .els .el .status div{display:none;padding:0 8px;border-radius:18px;border:solid 1px #7e8b91;background:none;font-size:12px;font-weight:bold;letter-spacing:.48px;color:#7e8b91;text-transform:uppercase;line-height:22px;height:24px;min-height:24px;margin:0 9px 0 0}section.orders .content .els .el .status div.base{display:block}section.orders .content .els .el .status div:last-child{margin:0}section.orders .content .els .el .actions{float:left;margin:0 11px 0 0}section.orders .content .els .el .actions a,section.orders .content .els .el .actions span{padding:0 8px;border-radius:18px;border:solid 1px #7e8b91;min-height:24px;font-size:12px;font-weight:bold;letter-spacing:.48px;color:#7e8b91;text-transform:uppercase;line-height:22px}section.orders .content .els .el .actions span:hover{background:none}section.orders .content .els .el .price{font-size:16px;font-weight:600;line-height:1.2;text-align:left;color:#33333d;display:block;float:right;line-height:24px}section.orders .content .els .el .goods a{width:60px;height:60px;margin:8px 8px 0 0;border-radius:22px;float:left;display:block;overflow:hidden}section.orders .content .els .el .goods a:last-child{margin-right:0}section.orders .content .els .el .goods a img{max-height:100%;max-width:100%}@-webkit-keyframes slide{from{-webkit-transform:translateY(50px);transform:translateY(50px)}35%{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-50px);transform:translateY(-50px)}}@keyframes slide{from{-webkit-transform:translateY(50px);transform:translateY(50px)}35%{-webkit-transform:translateY(0);transform:translateY(0)}to{-webkit-transform:translateY(-50px);transform:translateY(-50px)}}@-webkit-keyframes pulse{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}25%{-webkit-transform:scale(1.15, 1.15);transform:scale(1.15, 1.15)}50%{-webkit-transform:scale(1.3, 1.3);transform:scale(1.3, 1.3)}100%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}}@keyframes pulse{0%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}25%{-webkit-transform:scale(1.15, 1.15);transform:scale(1.15, 1.15)}50%{-webkit-transform:scale(1.3, 1.3);transform:scale(1.3, 1.3)}100%{-webkit-transform:scale(1, 1);transform:scale(1, 1)}}#loading_screen{z-index:1500;width:60px;height:60px;left:50%;top:50%;margin:-30px 0 0 -30px;position:fixed}#loading_screen::after{content:"";display:block;width:60px;height:60px;position:absolute;left:50%;top:50%;margin:-30px 0 0 -30px;background-image:url("/favicon.svg?v=1.01");background-position:50%;background-size:contain;background-repeat:no-repeat;z-index:1500}#loading_screen::before{content:"";display:block;width:60px;height:60px;position:absolute;left:50%;top:50%;margin:-30px 0 0 -30px;background-image:url("/favicon.svg?v=1.01");background-position:50%;background-size:contain;background-repeat:no-repeat;-webkit-animation:pulse 3s infinite;animation:pulse 3s infinite;opacity:.5;z-index:1500}#loading_screen img{display:none}section.advantages_2>.content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:32px}@media (max-width:1180px){section.advantages_2>.content .els{gap:20px}}@media (max-width:767px){section.advantages_2>.content .els{gap:15px}}section.advantages_2>.content .els .el{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px;width:calc(50% - 16px);-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:1180px){section.advantages_2>.content .els .el{gap:20px;width:100%}}@media (max-width:767px){section.advantages_2>.content .els .el{width:100%;gap:15px}}@media (min-width:1181px){section.advantages_2>.content .els .el:nth-child(3) .text_block,section.advantages_2>.content .els .el:nth-child(4) .text_block{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}@media (min-width:768px) and (max-width:1180px){section.advantages_2>.content .els .el:nth-child(2n) .text_block{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}section.advantages_2>.content .els .el .text_block{padding:30px;border-radius:22px;background-color:#f2f2f2;width:calc(100% - 32px - 204px)}@media (max-width:1180px){section.advantages_2>.content .els .el .text_block{padding:42px;border-radius:14.8px;width:calc(100% - 20px - 299px)}}@media (max-width:767px){section.advantages_2>.content .els .el .text_block{padding:20px;border-radius:14.8px;width:100%}}section.advantages_2>.content .els .el .text_block .title{font-size:26px;line-height:1.2;letter-spacing:normal;color:#33333d;display:block;margin:0 0 15px 0}@media (max-width:1180px){section.advantages_2>.content .els .el .text_block .title{font-size:22px;margin:0 0 10px 0}}@media (max-width:767px){section.advantages_2>.content .els .el .text_block .title{font-size:18px}}section.advantages_2>.content .els .el .text_block .text{font-size:14px;line-height:1.4;letter-spacing:normal;color:#33333d;display:block}section.advantages_2>.content .els .el .image_block{border-radius:22px;height:240px;width:204px;min-width:204px;background-position:50%;background-repeat:no-repeat;background-size:cover}@media (max-width:1180px){section.advantages_2>.content .els .el .image_block{height:175px;width:299px;min-width:299px}}@media (max-width:767px){section.advantages_2>.content .els .el .image_block{width:100%;height:220px}}section.advantages_3.grey>.content .els .el .text_block{background-color:#f4f9fb}section.advantages_3.grey>.content .els .el .text_block .title{color:#33333d}section.advantages_3.grey>.content .els .el .text_block .text{color:#33333d}section.advantages_3>.content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:32px}@media (max-width:1180px){section.advantages_3>.content .els{gap:20px}}@media (max-width:767px){section.advantages_3>.content .els{gap:15px}}section.advantages_3>.content .els .el{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px;width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:1180px){section.advantages_3>.content .els .el{gap:20px;width:100%}}@media (max-width:767px){section.advantages_3>.content .els .el{width:100%;gap:15px}}@media (min-width:768px){section.advantages_3>.content .els .el:nth-child(2n) .text_block{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}}section.advantages_3>.content .els .el .text_block{padding:42px;border-radius:22px;background-color:#ebe0df;width:calc(100% - 32px - 40%);height:237px}@media (max-width:1180px){section.advantages_3>.content .els .el .text_block{padding:42px;border-radius:14.8px;width:calc(100% - 20px - 40%);min-height:240px;height:auto}}@media (max-width:767px){section.advantages_3>.content .els .el .text_block{padding:20px;border-radius:14.8px;width:100%;height:auto;min-height:auto}}section.advantages_3>.content .els .el .text_block .title{font-size:28px;line-height:1.2;letter-spacing:normal;color:#a4493d;display:block;margin:0 0 15px 0}@media (max-width:1180px){section.advantages_3>.content .els .el .text_block .title{font-size:22px;margin:0 0 10px 0}}@media (max-width:767px){section.advantages_3>.content .els .el .text_block .title{font-size:18px}}section.advantages_3>.content .els .el .text_block .text{font-size:14px;line-height:1.4;letter-spacing:normal;color:#33333d;display:block}section.advantages_3>.content .els .el .image_block{border-radius:22px;height:237px;width:40%;min-width:40%;background-position:50%;background-repeat:no-repeat;background-size:cover}@media (max-width:1180px){section.advantages_3>.content .els .el .image_block{height:240px}}@media (max-width:767px){section.advantages_3>.content .els .el .image_block{width:100%;height:220px}}section.header.mini{margin:0 0 9px 0 !important}section.loyalty .content .text_wrapper{padding:22px;border-radius:22px;background-color:#ebe0df}@media (max-width:767px){section.loyalty .content .text_wrapper{padding:4px}}section.loyalty .content .text_wrapper .wrapper{padding:22px;border-radius:22px;border-radius:12px;border:solid 1px #a4493d;display:table;width:100%;z-index:2;position:relative}@media (max-width:1180px){section.loyalty .content .text_wrapper .wrapper{padding:32px}}@media (max-width:767px){section.loyalty .content .text_wrapper .wrapper{padding:24px}}section.loyalty .content .text_wrapper .wrapper .title{font-size:36px;list-style:1.2;color:#a4493d;margin:0 0 15px 0;display:block;max-width:60%}@media (max-width:1180px){section.loyalty .content .text_wrapper .wrapper .title{font-size:32px}}@media (max-width:767px){section.loyalty .content .text_wrapper .wrapper .title{font-size:18px;margin:0 0 5px 0;max-width:100%}}section.loyalty .content .text_wrapper .wrapper .text{font-size:16px;line-height:normal;color:#33333d;margin:0 0 25px 0;display:block;max-width:60%}@media (max-width:1180px){section.loyalty .content .text_wrapper .wrapper .text{font-size:14px}}@media (max-width:767px){section.loyalty .content .text_wrapper .wrapper .text{margin:0 0 15px 0;max-width:100%}}section.loyalty .content .text_wrapper .wrapper .button{height:42px;display:block;float:left;padding:10px 26px;border-radius:22px;background-color:#a4493d;font-size:16px;font-weight:500;color:#fff;cursor:pointer;text-decoration:none}@media (max-width:767px){section.loyalty .content .text_wrapper .wrapper .button{margin:0 0 176px 0}}section.loyalty .content .image{position:absolute;right:0;top:0;width:691px;height:100%;background-position:0 50%;background-size:cover;border-radius:22px;max-width:50%}@media (max-width:1180px){section.loyalty .content .image{width:513px;max-width:45%}}@media (max-width:767px){section.loyalty .content .image{width:100%;max-width:100%;height:290px;top:auto;bottom:0;right:auto;left:0;background-position:50% 0;background-size:cover}}section.collaboration_steps>.content .wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px}@media (max-width:1180px){section.collaboration_steps>.content .wrapper{gap:15px}}@media (max-width:767px){section.collaboration_steps>.content .wrapper{gap:4px;-ms-flex-wrap:wrap;flex-wrap:wrap}}section.collaboration_steps>.content .wrapper>.data{width:50%;padding:22px;border-radius:22px;background-color:#f2f2f2}@media (max-width:767px){section.collaboration_steps>.content .wrapper>.data{width:100%;padding:4px;border-radius:16px}}section.collaboration_steps>.content .wrapper>.data .els{gap:10px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}section.collaboration_steps>.content .wrapper>.data .els .el{padding:20px 31px;border-radius:14px;background-color:#fff;display:-webkit-box;display:-ms-flexbox;display:flex}@media (max-width:767px){section.collaboration_steps>.content .wrapper>.data .els .el{padding:20px 15px}}section.collaboration_steps>.content .wrapper>.data .els .el .ico_block{width:32px;height:32px;margin:0 14px 0 0}@media (max-width:767px){section.collaboration_steps>.content .wrapper>.data .els .el .ico_block{width:26px;height:26px}}@media (max-width:767px){section.collaboration_steps>.content .wrapper>.data .els .el .ico_block svg{width:26px;height:26px}}section.collaboration_steps>.content .wrapper>.data .els .el .text_block{width:calc(100% - 32px - 14px)}@media (max-width:767px){section.collaboration_steps>.content .wrapper>.data .els .el .text_block{width:calc(100% - 26px - 14px)}}section.collaboration_steps>.content .wrapper>.data .els .el .text_block .title{display:block;color:#33333d;font-size:16px;margin:0 0 3px 0;line-height:normal}section.collaboration_steps>.content .wrapper>.data .els .el .text_block .text{display:block;font-size:14px;color:#7e8b91;line-height:normal}section.collaboration_steps>.content .wrapper>.image{width:50%;border-radius:22px;background-position:50%;background-size:cover;background-repeat:no-repeat}@media (max-width:767px){section.collaboration_steps>.content .wrapper>.image{width:100%;height:271px}}section.areas_of_cooperation .content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;gap:30px}@media (max-width:1180px){section.areas_of_cooperation .content .els{gap:20px}}@media (max-width:767px){section.areas_of_cooperation .content .els{gap:15px}}section.areas_of_cooperation .content .els .el{position:relative;text-decoration:none;padding:30px;border-radius:22px;border:solid 1.5px #f2f2f2;background-color:#fff;width:calc(33.33% - 30px/3*2)}@media (max-width:1180px){section.areas_of_cooperation .content .els .el{padding:25px;width:calc(50% - 20px/2*1)}}@media (max-width:767px){section.areas_of_cooperation .content .els .el{padding:15px;width:100%}}section.areas_of_cooperation .content .els .el .image{border-radius:12px;margin:0 0 30px 0;background-position:50%;background-repeat:no-repeat;background-size:cover;width:100%;height:240px}@media (max-width:1180px){section.areas_of_cooperation .content .els .el .image{margin:0 0 15px 0}}section.areas_of_cooperation .content .els .el .title{display:block;font-size:24px;line-height:1.2;letter-spacing:normal;color:#33333d;margin:0 0 15px 0}@media (max-width:1180px){section.areas_of_cooperation .content .els .el .title{margin:0 0 10px 0}}@media (max-width:767px){section.areas_of_cooperation .content .els .el .title{font-size:18px}}section.areas_of_cooperation .content .els .el .text{display:block;margin:0 0 70px 0;font-size:14px;line-height:1.4;letter-spacing:normal;color:#33333d}@media (max-width:1180px){section.areas_of_cooperation .content .els .el .text{margin:0 0 50px 0}}@media (max-width:767px){section.areas_of_cooperation .content .els .el .text{margin:0 0 50px 0}}section.areas_of_cooperation .content .els .el .button{padding:8px 12px;border-radius:22px;background-color:#a4493d;cursor:pointer;font-size:16px;font-weight:500;color:#fff;display:block;float:left;position:absolute;left:30px;bottom:30px}@media (max-width:1180px){section.areas_of_cooperation .content .els .el .button{left:25px;bottom:25px;font-size:14px;font-weight:600;padding:8px 12px}}@media (max-width:767px){section.areas_of_cooperation .content .els .el .button{left:15px;bottom:15px;padding:8px 20px}}section.product_range .content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;gap:30px}@media (max-width:1180px){section.product_range .content .els{gap:20px}}@media (max-width:767px){section.product_range .content .els{gap:8px}}section.product_range .content .els .el{position:relative;text-decoration:none;padding:40px;border-radius:22px;background-color:#ebe0df;width:calc(25% - 30px/4*3);height:385px;overflow:hidden}@media (max-width:1180px){section.product_range .content .els .el{padding:25px;height:290px}}@media (max-width:767px){section.product_range .content .els .el{padding:16px;width:calc(50% - 4px);height:auto}}section.product_range .content .els .el:nth-child(3),section.product_range .content .els .el:nth-child(6){background:#fff}section.product_range .content .els .el:nth-child(100){width:calc(50% - 30px/2*1)}@media (max-width:767px){section.product_range .content .els .el:nth-child(100){height:270px;width:100%}}section.product_range .content .els .el:nth-child(100) .image{height:330px;width:70%;background-position:100% 100%}@media (max-width:1180px){section.product_range .content .els .el:nth-child(100) .image{height:200px}}@media (max-width:767px){section.product_range .content .els .el:nth-child(100) .image{height:175px}}section.product_range .content .els .el .image{background-position:50% 100%;background-repeat:no-repeat;background-size:contain;width:100%;height:240px;position:absolute;right:0;bottom:0;margin:0}@media (max-width:1180px){section.product_range .content .els .el .image{height:150px}}@media (max-width:767px){section.product_range .content .els .el .image{height:140px}}section.product_range .content .els .el .title{display:block;font-size:22px;letter-spacing:normal;color:#33333d;margin:0 0 15px 0;font-weight:500;max-width:380px}@media (max-width:1180px){section.product_range .content .els .el .title{font-size:18px;margin:0 0 10px 0}}@media (max-width:767px){section.product_range .content .els .el .title{margin:0 0 5px 0}}section.product_range .content .els .el .text{display:block;margin:0 0 70px 0;font-size:14px;line-height:1.4;letter-spacing:normal;color:#33333d;max-width:380px}@media (max-width:1180px){section.product_range .content .els .el .text{font-size:12px}}@media (max-width:767px){section.product_range .content .els .el .text{margin:0 0 124px 0}}section.product_range .content .els .el .button{padding:8px 12px;border-radius:22px;background-color:#a4493d;cursor:pointer;font-size:16px;font-weight:500;color:#fff;display:block;float:left;position:absolute;left:30px;bottom:30px}section.about_partners .content .columns{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap}section.about_partners .content .columns .column.n1{width:580px}@media (max-width:1180px){section.about_partners .content .columns .column.n1{width:420px}}@media (max-width:767px){section.about_partners .content .columns .column.n1{width:100%;margin:0 0 15px 0}}section.about_partners .content .columns .column.n1>.text_1{display:block;font-size:24px;margin:0 0 14px 0;line-height:1.4;letter-spacing:normal;color:#a4493d;max-width:420px}@media (max-width:1180px){section.about_partners .content .columns .column.n1>.text_1{font-size:22px;margin:0 0 10px 0}}@media (max-width:767px){section.about_partners .content .columns .column.n1>.text_1{font-size:18px;margin:0 0 5px 0}}section.about_partners .content .columns .column.n1>.text_2{display:block;margin:0 0 20px 0;font-size:16px;line-height:1.4;letter-spacing:normal;color:#33333d;max-width:420px}@media (max-width:1180px){section.about_partners .content .columns .column.n1>.text_2{font-size:14px;margin:0 0 15px 0}}section.about_partners .content .columns .column.n1 .button{height:42px;line-height:42px;border-radius:22px;background-color:#a4493d;display:table;margin:0 0 36px 0;font-size:16px;font-weight:500;color:#fff;padding:0 24px;cursor:pointer}@media (max-width:1180px){section.about_partners .content .columns .column.n1 .button{height:35px;line-height:35px;font-size:14px;padding:0 12px;margin:0 0 28px 0}}@media (max-width:767px){section.about_partners .content .columns .column.n1 .button{margin:0 0 20px 0}}section.about_partners .content .columns .column.n1 .els{display:-webkit-box;display:-ms-flexbox;display:flex;gap:20px}@media (max-width:1180px){section.about_partners .content .columns .column.n1 .els{gap:10px}}section.about_partners .content .columns .column.n1 .els .el{padding:12px;background-position:50%;background-repeat:no-repeat;background-size:cover;width:279px;height:254.2px;border-radius:22px}@media (max-width:1180px){section.about_partners .content .columns .column.n1 .els .el{width:204px;height:151px;padding:10px}}@media (max-width:767px){section.about_partners .content .columns .column.n1 .els .el{width:calc(50% - 4px);height:147px}}section.about_partners .content .columns .column.n1 .els .el .text_wrapper{border-radius:12px;border:solid 1.5px #a4493d;width:100%;height:100%;padding:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-align:end;-ms-flex-align:end;align-items:end;-ms-flex-line-pack:end;align-content:end}@media (max-width:1180px){section.about_partners .content .columns .column.n1 .els .el .text_wrapper{padding:15px}}section.about_partners .content .columns .column.n1 .els .el .text_wrapper .text_1{display:block;font-size:40px;line-height:1.2;letter-spacing:normal;color:#a4493d;margin:0 0 9px 0}@media (max-width:1180px){section.about_partners .content .columns .column.n1 .els .el .text_wrapper .text_1{font-size:28px;margin:0 0 4px 0}}@media (max-width:767px){section.about_partners .content .columns .column.n1 .els .el .text_wrapper .text_1{font-size:20px}}section.about_partners .content .columns .column.n1 .els .el .text_wrapper .text_2{display:block;font-size:14px;font-weight:500;letter-spacing:normal;color:#33333d}@media (max-width:1180px){section.about_partners .content .columns .column.n1 .els .el .text_wrapper .text_2{font-size:12px}}section.about_partners .content .columns .column.n2{width:calc(100% - 580px - 80px);height:100%}@media (max-width:1180px){section.about_partners .content .columns .column.n2{width:calc(100% - 420px - 36px)}}@media (max-width:767px){section.about_partners .content .columns .column.n2{width:100%;height:auto !important}}section.about_partners .content .columns .column.n2 .image{width:100%;height:100%;background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:22px}@media (max-width:767px){section.about_partners .content .columns .column.n2 .image{height:248px}}section.advantages_5>.content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:30px}@media (max-width:1180px){section.advantages_5>.content .els{gap:20px}}@media (max-width:767px){section.advantages_5>.content .els{gap:15px}}section.advantages_5>.content .els .el{width:calc(20% - 30px/5*4)}@media (max-width:767px){section.advantages_5>.content .els .el{width:calc(50% - 15px/2*1)}}section.advantages_5>.content .els .el .ico{background-color:#f2f2f2;width:60px;height:60px;border-radius:50%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0 0 16px 0}@media (max-width:1180px){section.advantages_5>.content .els .el .ico{width:36px;height:36px;padding:9px;margin:0 0 8px 0}}section.advantages_5>.content .els .el .title{font-size:16px;font-weight:bold;letter-spacing:normal;color:#33333d;display:block;margin:0 0 10px 0}@media (max-width:1180px){section.advantages_5>.content .els .el .title{font-size:14px;margin:0 0 7px 0}}section.advantages_5>.content .els .el .text{display:block;font-size:14px;letter-spacing:normal;color:#33333d}@media (max-width:1180px){section.advantages_5>.content .els .el .text{font-size:12px}}section.advantages_5>.content .els .el .text p{margin-bottom:10px}@media (max-width:1180px){section.advantages_5>.content .els .el .text p{margin-bottom:7px}}section.sales .content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:32px;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:1180px){section.sales .content .els{gap:20px}}@media (max-width:767px){section.sales .content .els{gap:12px}}section.sales .content .els .el{width:calc(50% - 16px);border-radius:22px;padding:22px;background:#c3c3c3;background-position:50%;background-repeat:no-repeat;background-size:cover}@media (max-width:1180px){section.sales .content .els .el{padding:15px;width:calc(50% - 10px)}}@media (max-width:767px){section.sales .content .els .el{border-radius:16px;padding:4px;width:100%}}section.sales .content .els .el .text_wrapper{border-radius:12px;border:solid 1.5px #fff;padding:27px;position:relative;height:216px}@media (max-width:1180px){section.sales .content .els .el .text_wrapper{padding:13px;height:142px}}@media (max-width:767px){section.sales .content .els .el .text_wrapper{height:152px}}section.sales .content .els .el .text_wrapper .label{padding:0 16px;line-height:29px;border-radius:18px;border:solid 1.5px #fff;font-size:12px;font-weight:bold;letter-spacing:.48px;color:#fff;display:table;text-transform:uppercase}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .label{line-height:32px}}@media (max-width:767px){section.sales .content .els .el .text_wrapper .label{font-size:10px;letter-spacing:.4px;line-height:19px;padding:0 6.5px}}section.sales .content .els .el .text_wrapper .label.hide{opacity:0}section.sales .content .els .el .text_wrapper .text{display:block;font-size:40px;line-height:1.2;letter-spacing:normal;color:#fff;margin:39px 0 0 0}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .text{font-size:24px;margin:25px 0 0 0;font-weight:500}}@media (max-width:767px){section.sales .content .els .el .text_wrapper .text{margin:44px 0 0 0;font-weight:normal}}section.sales .content .els .el .text_wrapper .right_block{position:absolute;top:1px;right:0}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .right_block{top:0;right:0}}section.sales .content .els .el .text_wrapper .right_block .text_1{font-size:80px;line-height:1.2;letter-spacing:normal;color:#fff;display:block;position:relative;margin-left:-93px}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .right_block .text_1{font-size:40px;margin:-4px 0 -7px -21px}}@media (max-width:767px){section.sales .content .els .el .text_wrapper .right_block .text_1{margin:7.5px 0 -2px -21px}}section.sales .content .els .el .text_wrapper .right_block .text_1 .mini{font-size:50px;line-height:60px}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .right_block .text_1 .mini{font-size:24px;line-height:29px}}section.sales .content .els .el .text_wrapper .right_block .text_2{display:block;font-size:14px;font-weight:600;letter-spacing:normal;color:#fff;width:212px;margin:0 17px 10px 0}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .right_block .text_2{font-size:12px;width:146px;margin:0 11px 4px 0}}@media (max-width:767px){section.sales .content .els .el .text_wrapper .right_block .text_2{font-size:11px;margin:0 2.5px 5px 0}}section.sales .content .els .el .text_wrapper .right_block .button{display:table;font-size:16px;font-weight:500;letter-spacing:normal;color:#a4493d;cursor:pointer;text-decoration:none;padding:10px 16px;border-radius:22px;background-color:#fff}@media (max-width:1180px){section.sales .content .els .el .text_wrapper .right_block .button{font-size:14px;padding:8px 12px}}@media (max-width:767px){section.sales .content .els .el .text_wrapper .right_block .button{font-size:12px;line-height:32px;padding:0 12px}}section.sets .content .wrapper{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;background-position:50%;background-repeat:no-repeat;background-size:cover;border-radius:22px;overflow:hidden}section.sets .content .wrapper .text_wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-line-pack:end;align-content:end;-webkit-box-align:end;-ms-flex-align:end;align-items:end;padding:42px 48px;width:calc(100% - 602px);gap:17px}@media (max-width:1180px){section.sets .content .wrapper .text_wrapper{padding:26px 29px;width:calc(100% - 420px);gap:12px}}@media (max-width:767px){section.sets .content .wrapper .text_wrapper{gap:0;width:100%;height:274px;padding:12px 20px}}section.sets .content .wrapper .text_wrapper .title{font-size:40px;line-height:1.2;letter-spacing:normal;color:#33333d;display:block;width:391px}@media (max-width:767px){section.sets .content .wrapper .text_wrapper .title{font-size:24px;width:100%}}section.sets .content .wrapper .text_wrapper .button{display:table;font-size:16px;font-weight:500;letter-spacing:normal;color:#fff;border-radius:22px;background-color:#a4493d;padding:0 16px;line-height:42px;text-decoration:none;cursor:pointer}@media (max-width:1180px){section.sets .content .wrapper .text_wrapper .button{line-height:35px;font-size:14px;padding:0 12px}}@media (max-width:767px){section.sets .content .wrapper .text_wrapper .button{line-height:32px;font-size:12px;bottom:auto;margin:7px 0 0 0}}section.sets .content .wrapper .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:8px;margin:20px;width:562px}@media (max-width:1180px){section.sets .content .wrapper .els{gap:6px;width:390px;margin:10px}}@media (max-width:767px){section.sets .content .wrapper .els{width:100%;margin:0 4px 4px 4px}}section.sets .content .wrapper .els .el{width:calc(33.33% - 8px/3*2);border-radius:12px;background-color:#fff;padding:6px;text-decoration:none}@media (max-width:1180px){section.sets .content .wrapper .els .el{width:calc(33.33% - 6px/3*2);padding:4px 5px}}@media (max-width:767px){section.sets .content .wrapper .els .el{padding:5px}}section.sets .content .wrapper .els .el .image{border-radius:8px;height:130px;background-position:50%;background-repeat:no-repeat;background-size:cover;margin:0 0 7px 0;position:relative}@media (max-width:1180px){section.sets .content .wrapper .els .el .image{height:84px;margin:0 0 2px 0}}@media (max-width:767px){section.sets .content .wrapper .els .el .image{grid-row-end:65px;margin:0 0 3px 0}}section.sets .content .wrapper .els .el .label{position:absolute;left:0;bottom:0;display:block;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%23A4493D'/%3E%3C/svg%3E");background-size:100% 100%;padding:3px 9px 2px 5px;color:#fff;font-size:10px}@media (max-width:1180px){section.sets .content .wrapper .els .el .label{padding:3px 6px 2px 3px}}@media (max-width:767px){section.sets .content .wrapper .els .el .label{padding:1.7px 4.8px 1.3px 2.9px;font-size:5.8px}}section.sets .content .wrapper .els .el .label.red{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='41' height='19' fill='none'%3E%3Cpath d='M0 11a8 8 0 0 0 8 8h33l-3.18-5.492a8 8 0 0 1 0-8.016L41 0H0v11Z' fill='%23ff4b52'/%3E%3C/svg%3E")}section.sets .content .wrapper .els .el .price_block{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0 6px}@media (max-width:1180px){section.sets .content .wrapper .els .el .price_block{margin:0 3px}}@media (max-width:767px){section.sets .content .wrapper .els .el .price_block{margin:0}}section.sets .content .wrapper .els .el .price_block .price{font-size:20px;letter-spacing:normal;color:#33333d;display:block;margin:0 7.5px 0 0;line-height:27px}@media (max-width:1180px){section.sets .content .wrapper .els .el .price_block .price{font-size:16px;line-height:22px}}@media (max-width:767px){section.sets .content .wrapper .els .el .price_block .price{font-size:12px;line-height:16px;margin:0 1.5px 0 0}}section.sets .content .wrapper .els .el .price_block .old_price{display:block;margin:4px 0 0 0;font-size:14px;letter-spacing:normal;color:#929292}@media (max-width:1180px){section.sets .content .wrapper .els .el .price_block .old_price{margin:1.5px 0 0 0}}@media (max-width:767px){section.sets .content .wrapper .els .el .price_block .old_price{margin:1px 0 0 0;font-size:10px}}section.sets .content .wrapper .els .el .name{display:block;font-size:14px;letter-spacing:normal;color:#33333d;margin:0 6px 22px 6px}@media (max-width:1180px){section.sets .content .wrapper .els .el .name{font-size:12px;font-weight:500;line-height:1.2;margin:0 3px 19px 3px}}@media (max-width:767px){section.sets .content .wrapper .els .el .name{margin:0 0 17px 0}}.basket-item-label-ring{z-index:1}section.reviews>.content .top_block{display:table;float:left;width:100%;margin:0 0 30px 0}@media (max-width:1180px){section.reviews>.content .top_block{margin:0 0 20px 0}}@media (max-width:1180px){section.reviews>.content .top_block{margin:0 0 15px 0}}section.reviews>.content .top_block .add_review_button{display:table;cursor:pointer;line-height:54px;padding:0 56px;border-radius:22px;background-color:#a4493d;float:left;font-size:16px;font-weight:600;color:#fff;margin:0 25px 0 0}@media (max-width:767px){section.reviews>.content .top_block .add_review_button{line-height:40px}}section.reviews>.content .top_block .rating_wrapper{float:left;margin:18.5px 0}@media (max-width:767px){section.reviews>.content .top_block .rating_wrapper{position:absolute;top:0;left:110px;margin:6px 0}}section.reviews>.content .top_block .sort_block{float:right;display:table;cursor:pointer;line-height:54px;border-radius:22px;background-color:#f2f2f2;font-size:14px;color:#33333d;margin:0}@media (max-width:767px){section.reviews>.content .top_block .sort_block{line-height:40px;display:none}}section.reviews>.content .top_block .sort_block>div.nice-select{background:none;border:none;line-height:54px;height:54px;padding:0 45px 0 26px}@media (max-width:767px){section.reviews>.content .top_block .sort_block>div.nice-select{line-height:40px;height:40px}}section.reviews>.content .top_block .sort_block>div.nice-select .list{right:0;left:auto}section.reviews>.content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:32px;width:100%}@media (max-width:1180px){section.reviews>.content .els{gap:20px}}@media (max-width:1180px){section.reviews>.content .els{gap:8px}}section.reviews>.content .els>.el{padding:25px;border-radius:22px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);background-color:#fff;position:relative;width:calc(50% - 16px)}@media (max-width:1180px){section.reviews>.content .els>.el{width:calc(50% - 10px);padding:20px}}@media (max-width:767px){section.reviews>.content .els>.el{width:100%;padding:15px}}section.reviews>.content .els>.el .name{display:block;font-size:18px;font-weight:500;letter-spacing:normal;color:#33333d;margin:0 0 10px 0}@media (max-width:1180px){section.reviews>.content .els>.el .name{font-size:16px}}@media (max-width:767px){section.reviews>.content .els>.el .name{margin:0 0 5px 0}}section.reviews>.content .els>.el .shop{padding:0 8px;border-radius:18px;background-color:#ebe0df;line-height:20px;margin:0 0 20px 0;display:table;font-size:12px;font-weight:600;letter-spacing:.48px;color:#a4493d}@media (max-width:767px){section.reviews>.content .els>.el .shop{margin:0 0 12px 0}}section.reviews>.content .els>.el .rating{position:absolute;top:44px;right:25px}@media (max-width:1180px){section.reviews>.content .els>.el .rating{top:35px;right:20px}}@media (max-width:767px){section.reviews>.content .els>.el .rating{top:30px;right:15px}}section.reviews>.content .els>.el .text_block{display:block;margin:0 0 12px 0}@media (max-width:767px){section.reviews>.content .els>.el .text_block{margin:0 0 10px 0}}section.reviews>.content .els>.el .text_block .label{display:block;margin:0 0 8px 0;font-size:14px;color:#7e8b91}@media (max-width:1180px){section.reviews>.content .els>.el .text_block .label{font-size:12px}}@media (max-width:767px){section.reviews>.content .els>.el .text_block .label{margin:0 0 5px 0}}section.reviews>.content .els>.el .text_block .text{display:block;font-size:16px;line-height:1.4;color:#33333d}@media (max-width:1180px){section.reviews>.content .els>.el .text_block .text{font-size:14px}}section.reviews>.content .els>.el .images_block{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;float:left;gap:20px;margin:8px 0 0 0}@media (max-width:1180px){section.reviews>.content .els>.el .images_block{gap:15px}}@media (max-width:767px){section.reviews>.content .els>.el .images_block{gap:8px}}section.reviews>.content .els>.el .images_block .el{background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;width:calc(33.33% - 30px/3*2);height:auto;padding:15.068% 0;border-radius:22px}@media (max-width:767px){section.reviews>.content .els>.el .images_block .el{border-radius:16px}}section.brands>.content .els{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:32px}@media (max-width:1180px){section.brands>.content .els{gap:20px}}@media (max-width:767px){section.brands>.content .els{gap:12px}}section.brands>.content .els .el{width:calc(33.33% - 32px/3*2);padding:11px 13px 24px 12px;border-radius:22px;background-color:#ebe0df;text-decoration:none;position:relative}@media (max-width:1180px){section.brands>.content .els .el{width:calc(33.33% - 20px/3*2)}}@media (max-width:767px){section.brands>.content .els .el{width:100%;background:none;padding:0;border-radius:0}}section.brands>.content .els .el .image{width:100%;height:auto;padding:38% 0;border-radius:22px;margin:0 0 28px 0;background-position:50%;background-repeat:no-repeat;background-size:cover}@media (max-width:1180px){section.brands>.content .els .el .image{margin:0 0 15px 0}}@media (max-width:767px){section.brands>.content .els .el .image{margin:0 0 14px 0;max-height:260px;border-radius:16px;padding:26.5% 0}}section.brands>.content .els .el .text_block{margin:0 0 0 16px}@media (max-width:767px){section.brands>.content .els .el .text_block{margin:0}}section.brands>.content .els .el .text_block .logo{display:table;float:left;margin:0 0 13px 0;height:33px;width:100%;background-position:0 50%;background-repeat:no-repeat;background-size:contain}section.brands>.content .els .el .text_block .logo svg{float:left}section.brands>.content .els .el .text_block .text{font-size:12px;color:#33333d;margin:0 0 39px 0}@media (max-width:767px){section.brands>.content .els .el .text_block .text{margin:0 0 13px 0}}section.brands>.content .els .el .text_block .button{height:26px;border-radius:22px;border:solid 1px #33333d;display:-webkit-box;display:-ms-flexbox;display:flex;gap:6px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;float:left;padding:0 16px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:12px;color:#33333d;position:absolute;bottom:24px;left:28px}@media (max-width:767px){section.brands>.content .els .el .text_block .button{left:auto;bottom:auto;position:relative}}section.brands>.content .els .el .text_block .button i{background-image:url("data:image/svg+xml,%3Csvg width='15' height='15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' stroke='%23323232' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.172 7.794h8.744M8.424 4.299l3.521 3.507-3.521 3.506'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='translate(.559 .806)' d='M0 0h14v14H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;width:14px;height:14px;display:block}section.brands_banner>.content .banner{text-decoration:none;border-radius:22px;height:281px;width:100%;position:relative;background-position:50%;background-size:cover}@media (max-width:1180px){section.brands_banner>.content .banner{height:241px}}@media (max-width:767px){section.brands_banner>.content .banner{border-radius:16px;height:341px}}section.brands_banner>.content .banner .title{position:absolute;display:block;left:47.5px;bottom:33px;font-size:24px;font-weight:500;line-height:1.3;color:#fff;max-width:calc(100% - 100px)}@media (max-width:1180px){section.brands_banner>.content .banner .title{font-size:24px;left:43px;bottom:20px}}@media (max-width:767px){section.brands_banner>.content .banner .title{font-size:16px;left:38px;bottom:20px;max-width:calc(100% - 76px)}}section.brands_banner>.content .banner .title b{font-weight:bold}@media (max-width:767px){section.brands_banner>.content .banner .title br{display:none}}section.gifts_banner>.content .banner{height:241px;position:relative;border-radius:22px;background-position:50%;background-size:cover;background-image:url('/local/templates/uyutnosti/images/gifts_banner_pc.png')}@media (max-width:1180px){section.gifts_banner>.content .banner{background-image:url('/local/templates/uyutnosti/images/gifts_banner_tb.png')}}@media (max-width:767px){section.gifts_banner>.content .banner{border-radius:16px;height:341px;background-image:url('/local/templates/uyutnosti/images/gifts_banner_mob.png')}}section.gifts_banner>.content .banner .title{position:absolute;display:block;left:47px;bottom:31px;font-size:40px;line-height:1.2;color:#33333d}@media (max-width:1180px){section.gifts_banner>.content .banner .title{font-size:35px;left:43px;bottom:20px}}@media (max-width:767px){section.gifts_banner>.content .banner .title{font-size:24px;left:26px;bottom:20px}}section.subscriptions>.content h2{font-size:20px;font-weight:normal;font-stretch:normal;font-style:normal;line-height:1.2;letter-spacing:normal;text-align:left;color:#33333d;margin:0 0 16px 0}@media (max-width:1180px){section.subscriptions>.content h2{font-size:18px;margin:0 0 15px 0}}@media (max-width:767px){section.subscriptions>.content h2{line-height:1.3;font-size:16px;margin:0 0 12px 0}}section.subscriptions>.content .name{font-size:12px;color:#7e8b91;margin:0 0 11px 0;display:block;width:100%;float:left}@media (max-width:767px){section.subscriptions>.content .name{margin:0 0 8px 0}}section.subscriptions>.content .label{font-size:14px;color:#33333d;margin:0 0 21px 14px;line-height:21px;float:left}@media (max-width:767px){section.subscriptions>.content .label{margin:0 0 12px 14px}}section.subscriptions>.content .switcher_el{float:left;cursor:pointer}section.loyalty>.content .column.n1{width:557px;float:left;margin:0 30px 0 0}@media (max-width:1180px){section.loyalty>.content .column.n1{width:calc(50% - 10px);margin:0 20px 0 0}}@media (max-width:767px){section.loyalty>.content .column.n1{width:100%;margin:0 0 20px 0}}section.loyalty>.content .column.n2{width:520px;float:left}@media (max-width:1180px){section.loyalty>.content .column.n2{width:calc(50% - 10px)}}@media (max-width:767px){section.loyalty>.content .column.n2{width:100%}}section.loyalty>.content .column.full{width:100%}section.loyalty>.content .column.full .els.levels{gap:20px}@media (max-width:1180px){section.loyalty>.content .column.full .els.levels{gap:10px}}section.loyalty>.content .column.full .els.levels .el{width:255px;max-width:calc(25% - 20px / 4*3);min-width:220px}@media (max-width:1180px){section.loyalty>.content .column.full .els.levels .el{max-width:calc(25% - 10px / 4*3)}}@media (max-width:767px){section.loyalty>.content .column.full .els.levels .el .text{margin:58px 0 0 0}}section.loyalty>.content .column .title{font-size:20px;line-height:1.2;color:#33333d;display:block;margin:0 0 12px 0}@media (max-width:1180px){section.loyalty>.content .column .title{font-size:18px;margin:0 0 15px 0}}@media (max-width:767px){section.loyalty>.content .column .title{font-size:16px;margin:0 0 12px 0;line-height:1.3}}section.loyalty>.content .column .label{padding:12.5px 20px 12.5px 20px;border-radius:22px;background-color:#ebe0df;font-size:14px;font-weight:500;color:#a4493d;display:block;margin:0 0 12px 0;float:left;width:100%}@media (max-width:767px){section.loyalty>.content .column .label{font-size:13px;padding:12.5px 20px 13.5px 20px;margin:0 0 10px 0}}section.loyalty>.content .column .data{float:left;width:100%}section.loyalty>.content .column .data .line{margin:0 0 12px 0;display:block;float:left;width:100%}@media (max-width:767px){section.loyalty>.content .column .data .line{margin:0 0 9px 0}}section.loyalty>.content .column .data .line .name{font-size:12px;color:#7e8b91;padding:0 0 0 20px;display:block;width:80px;float:left}@media (max-width:767px){section.loyalty>.content .column .data .line .name{width:60px;padding:0}}section.loyalty>.content .column .data .line .value{font-size:14px;color:#33333d;display:block;float:left}section.loyalty>.content .column .alert{font-size:12px;color:#7e8b91;display:block;margin:0 0 16px 0;padding:0 0 0 43px;line-height:19px;position:relative;float:left}@media (max-width:767px){section.loyalty>.content .column .alert{margin:3px 0 12px 0;padding:0 0 0 24px}}section.loyalty>.content .column .alert i{position:absolute;left:19px;top:0;height:19px;width:19px}@media (max-width:767px){section.loyalty>.content .column .alert i{left:0}}section.loyalty>.content .column .alert a{color:#a4493d;text-decoration:underline;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.loyalty>.content .column .alert a:hover{text-decoration:none}section.loyalty>.content .column input[name="agree"]{display:none}section.loyalty>.content .column input[name="agree"]+label{position:relative;font-size:14px;color:#33333d;cursor:pointer;padding:0 0 0 44px;margin:0 0 22px 0;float:left;display:block;width:100%}@media (max-width:767px){section.loyalty>.content .column input[name="agree"]+label{padding:0 0 0 25px}}section.loyalty>.content .column input[name="agree"]+label::after{content:"";-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:9px;border:solid 1px #a4493d;width:18px;height:18px;display:block;position:absolute;left:20px;top:1px}@media (max-width:767px){section.loyalty>.content .column input[name="agree"]+label::after{left:0}}section.loyalty>.content .column input[name="agree"]+label::before{content:"";-webkit-box-sizing:border-box;box-sizing:border-box;border-radius:9px;border:solid 1px #a4493d;width:18px;height:18px;display:block;position:absolute;left:20px;top:1px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){section.loyalty>.content .column input[name="agree"]+label::before{left:0}}section.loyalty>.content .column input[name="agree"]+label a{color:#a4493d;text-decoration:underline;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}section.loyalty>.content .column input[name="agree"]+label a:hover{text-decoration:none}section.loyalty>.content .column input[name="agree"]:checked+label::before{width:10px;height:10px;border:none;background:#a4493d;top:5px;left:24px}@media (max-width:767px){section.loyalty>.content .column input[name="agree"]:checked+label::before{left:4px}}section.loyalty>.content .column .button{padding:0 30.5px;border-radius:22px;background-color:#a4493d;border:none;cursor:pointer;font-size:16px;font-weight:600;color:#fff;height:46px}@media (max-width:767px){section.loyalty>.content .column .owl-wrapper{margin:0 -16px;width:calc(100% + 32px)}}section.loyalty>.content .column .els.levels{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap}@media (max-width:767px){section.loyalty>.content .column .els.levels{gap:8px}}section.loyalty>.content .column .els.levels .owl-item .el{width:220px;display:table}section.loyalty>.content .column .els.levels .el{padding:20px;border-radius:22px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);background-color:#fff;text-decoration:none;width:calc(50% - 10px/2*1);position:relative}@media (max-width:767px){section.loyalty>.content .column .els.levels .el{width:100%}}section.loyalty>.content .column .els.levels .el.used{background-color:#f2f2f2;-webkit-box-shadow:none;box-shadow:none}section.loyalty>.content .column .els.levels .el.used .title,section.loyalty>.content .column .els.levels .el.used .percent,section.loyalty>.content .column .els.levels .el.used .text{color:#7e8b91}section.loyalty>.content .column .els.levels .el.active{background-color:#ebe0df;-webkit-box-shadow:none;box-shadow:none}section.loyalty>.content .column .els.levels .el.active .bonus{display:block;padding:0 8px;line-height:24px;border-radius:18px;background-color:#a4493d;float:left;clear:both;font-size:12px;font-weight:bold;letter-spacing:.48px;text-align:left;color:#fff;position:absolute;top:45px;text-transform:uppercase}@media (max-width:1180px){section.loyalty>.content .column .els.levels .el.active .bonus{padding:0 23.5px}}section.loyalty>.content .column .els.levels .el .bonus{display:none}section.loyalty>.content .column .els.levels .el .title{display:block;color:#33333d;font-size:14px;font-weight:bold;float:left;margin:0}section.loyalty>.content .column .els.levels .el .percent{display:block;color:#33333d;font-size:14px;font-weight:bold;float:right}section.loyalty>.content .column .els.levels .el .text{color:#7e8b91;font-size:12px;display:block;margin:38px 0 0 0;float:left;width:100%}@media (max-width:1180px){section.loyalty>.content .column .els.levels .el .text{margin:58px 0 0 0}}@media (max-width:767px){section.loyalty>.content .column .els.levels .el .text{margin:28px 0 0 0}}section.loyalty>.content .description{display:block;margin:24px 0 0 0;font-size:14px;color:#33333d}@media (max-width:1180px){section.loyalty>.content .description{margin:20px 0 0 0}}@media (max-width:767px){section.loyalty>.content .description{font-size:12px}}.marketplace_buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:20px;margin:0 0 30px 0;clear:both;float:left;width:100%}@media (max-width:1080px){.marketplace_buttons{margin:0 0 21px 0}}@media (max-width:767px){.marketplace_buttons{margin:14px 0 21px 0;gap:10px}}.marketplace_buttons .button{display:table;cursor:pointer;line-height:40px;padding:0 30px;border-radius:22px;background-color:#a4493d;float:left;font-size:16px;font-weight:600;color:#fff;border:none;margin:0;text-decoration:none;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center;gap:12px}@media (max-width:1080px){.marketplace_buttons .button{font-size:14px;padding:0 20px}}.marketplace_buttons .button:hover{color:#33333d;background:#f2f2f2}.marketplace_buttons .button i{height:25px}.marketplace_buttons .button i svg{height:100%;width:auto}.marketplace_buttons .button.wb{background:#a73afd}.marketplace_buttons .button.wb:hover{background:rgba(167,58,253,0.7)}.marketplace_buttons .button.ozon{background:#005bff}.marketplace_buttons .button.ozon:hover{background:rgba(0,91,255,0.7)}.marketplace_buttons .button.ya{color:#33333d;background:#fce000}section.pvz .content .filter{margin:0 0 15px 0;float:left;width:100%}@media (max-width:767px){section.pvz .content .filter{margin:0 0 10px 0}}section.pvz .content .filter .el{padding:0 20px;border-radius:22px;border:solid 1px #f2f2f2;cursor:pointer;line-height:39px;display:block;float:left;margin:0 10px 0 0}section.pvz .content .filter .el.active{border:solid 1px #a4493d}section.pvz .content .filter .el:last-child{margin:0}section.pvz .content .title{display:block;margin:0 0 12px 0;font-size:14px;font-weight:bold;color:#33333d;float:left;width:100%}@media (max-width:767px){section.pvz .content .title{display:none}}section.pvz .content .map_area{float:left;width:100%;height:540px;position:relative}@media (max-width:1080px){section.pvz .content .map_area{height:422px}}@media (max-width:767px){section.pvz .content .map_area{height:430px}}section.pvz .content .map_area .map{border-radius:22px;background:#c3c3c3;width:100%;height:100%;overflow:hidden}section.pvz .content .map_area .map>ymaps,section.pvz .content .map_area .map>ymaps>ymaps{width:100% !important}section.pvz .content .map_area .map ymaps[class*="-balloon_layout_normal"]{padding:13px 13px 13px 13px;border-radius:22px;background-color:#fff;-webkit-box-shadow:none;box-shadow:none;width:264px;margin:-35px 0 0 0}section.pvz .content .map_area .map ymaps[class*="-balloon_layout_normal"] ymaps[class*="-balloon__content"]{padding:0}section.pvz .content .map_area .map ymaps[class*="-balloon_layout_normal"] ymaps[class*="-balloon__content"]>ymaps{width:auto !important;height:auto !important}section.pvz .content .map_area .map ymaps[class*="-balloon__tail"]{display:none}section.pvz .content .map_area .map .marker_data{padding:0 0 0 23px;display:table;float:left}section.pvz .content .map_area .map .marker_data::before{content:"";position:absolute;width:16px;height:16px;left:0;margin:2px 0 0 0;background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8.667a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z' stroke='%23A4493D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 14s-4.667-3.833-4.667-7.333a4.667 4.667 0 1 1 9.334 0C12.667 10.167 8 14 8 14Z' stroke='%23A4493D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}section.pvz .content .map_area .map .marker_data .name{font-size:12px;font-weight:bold;color:#33333d;float:left;width:100%;margin:0 0 3px 0}section.pvz .content .map_area .map .marker_data .address{font-size:12px;color:#7e8b91;float:left;width:100%;margin:0 0 4px 0}section.pvz .content .map_area .map .marker_data .mode{font-size:12px;float:left;width:100%;margin:0 0 9px 0;color:#33333d}section.pvz .content .map_area .map .marker_data .button{border-radius:22px;background-color:#a4493d;line-height:35px;width:118px;display:block;text-align:center;font-size:14px;font-weight:600;color:#fff;float:left;cursor:pointer}section.pvz .content .map_area .choose_block{margin:13px;padding:8px;border-radius:22px;background-color:#fff;position:absolute;max-height:calc(100% - 16px);top:0;left:0;width:299px;height:auto}@media (max-width:767px){section.pvz .content .map_area .choose_block{margin:15px;width:calc(100% - 30px);background:none;padding:0}}section.pvz .content .map_area .choose_block.active .els{display:block}section.pvz .content .map_area .choose_block .search{margin:0 0 .5px 0;display:table;float:left;width:100%}section.pvz .content .map_area .choose_block .search input{border-radius:22px;border:solid 1px #f2f2f2;width:100%;height:38px;font-size:14px;color:#7e8b91;padding:0 12px 0 45px;background-image:url("data:image/svg+xml,%3Csvg width='24' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' stroke='%23C2D4DD' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15.714 6.838a6.276 6.276 0 1 1-8.876 8.876 6.276 6.276 0 0 1 8.876-8.876ZM19 19l-3.29-3.29'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h24v24H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-repeat:no-repeat;background-position:12px 50%}section.pvz .content .map_area .choose_block .els_wrapper{float:left;width:100%;overflow-y:auto;max-height:calc(100% - 16px);height:430px}@media (max-width:1080px){section.pvz .content .map_area .choose_block .els_wrapper{height:358px}}section.pvz .content .map_area .choose_block .els{width:calc(100% - 14px)}@media (max-width:767px){section.pvz .content .map_area .choose_block .els{padding:8px;background:#fff;width:100%;border-radius:12px;display:none}}section.pvz .content .map_area .choose_block .els .el{position:relative;cursor:pointer;padding:11.5px 0 11.5px 24px;float:left;display:table;width:100%;border-bottom:solid 1px #f2f2f2}section.pvz .content .map_area .choose_block .els .el:last-child{border-bottom:none}section.pvz .content .map_area .choose_block .els .el.active::before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8.667a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z' stroke='%23A4493D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 14s-4.667-3.833-4.667-7.333a4.667 4.667 0 1 1 9.334 0C12.667 10.167 8 14 8 14Z' stroke='%23A4493D' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}section.pvz .content .map_area .choose_block .els .el.active .name{color:#a4493d}section.pvz .content .map_area .choose_block .els .el::before{content:"";position:absolute;width:16px;height:16px;left:0;margin:2px 0 0 0;background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 8.667a2 2 0 1 1 0-4 2 2 0 0 1 0 4Z' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8 14s-4.667-3.833-4.667-7.333a4.667 4.667 0 1 1 9.334 0C12.667 10.167 8 14 8 14Z' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}section.pvz .content .map_area .choose_block .els .el::after{content:"";position:absolute;width:6px;height:11px;right:0;margin:5px 0 0 0;background-image:url("data:image/svg+xml,%3Csvg width='6' height='11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m1 10 4-4.5L1 1' stroke='%237E8B91' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}section.pvz .content .map_area .choose_block .els .el .name{display:block;font-size:12px;font-weight:bold;color:#33333d;float:left;width:100%;margin:0 0 3px 0}section.pvz .content .map_area .choose_block .els .el .address{display:block;float:left;width:100%;font-size:12px;color:#7e8b91}section.slider_shop{margin:-40px 0 25px 0}@media (max-width:1080px){section.slider_shop{margin:-5px 0 25px 0}}@media (max-width:767px){section.slider_shop{margin:0 0 25px 0}}section.slider_shop .content h2.title{display:block;margin:0 0 30px 0;font-size:38px;line-height:1.2;color:#33333d;font-weight:normal}@media (max-width:1080px){section.slider_shop .content h2.title{margin:0 0 15px 0;font-size:34px}}@media (max-width:767px){section.slider_shop .content h2.title{font-size:24px}}section.slider_shop .content .owl-wrapper .owl-item .item{padding:50% 0;display:block;background-position:50%;background-size:cover;background-repeat:no-repeat;cursor:pointer;text-decoration:none;border-radius:8px}section.slider_shop .content .owl-wrapper .owl-nav{margin:0}section.slider_shop .content .owl-wrapper .owl-nav button{position:absolute;top:50%;margin:0;margin-top:-23px;width:46px;height:46px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:1180px){section.slider_shop .content .owl-wrapper .owl-nav button{margin-top:-19px;width:38px;height:38px}}@media (max-width:767px){section.slider_shop .content .owl-wrapper .owl-nav button{margin-top:-15px;width:30px;height:30px}}section.slider_shop .content .owl-wrapper .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}section.slider_shop .content .owl-wrapper .owl-nav button.owl-prev{left:-62px}@media (max-width:1520px){section.slider_shop .content .owl-wrapper .owl-nav button.owl-prev{left:-23px}}@media (max-width:1180px){section.slider_shop .content .owl-wrapper .owl-nav button.owl-prev{left:-19px}}@media (max-width:767px){section.slider_shop .content .owl-wrapper .owl-nav button.owl-prev{left:-15px}}section.slider_shop .content .owl-wrapper .owl-nav button.owl-next{right:-62px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media (max-width:1520px){section.slider_shop .content .owl-wrapper .owl-nav button.owl-next{right:-23px}}@media (max-width:1180px){section.slider_shop .content .owl-wrapper .owl-nav button.owl-next{right:-19px}}@media (max-width:767px){section.slider_shop .content .owl-wrapper .owl-nav button.owl-next{right:-15px}}section.slider_shop .content .owl-wrapper .owl-nav button span{display:none}section.slider_shop .content .owl-wrapper .owl-dots{display:none}section.gift-card .content .gift-card_fb{position:relative;padding:22px;border-radius:22px;background-color:rgba(230,141,97,0.1);height:auto;margin:0 0 30px 0}@media (max-width:1080px){section.gift-card .content .gift-card_fb{padding:15px;margin:0 0 35px 0}}@media (max-width:767px){section.gift-card .content .gift-card_fb{border-radius:16px;padding:4px;margin:0 0 24px 0}}section.gift-card .content .gift-card_fb .image{display:block;position:absolute;top:0;right:0;width:553px;height:100%;background-image:url('/local/templates/uyutnosti/images/gift_card_pc.png');background-size:cover;background-repeat:no-repeat;background-position:0 50%}@media (max-width:1080px){section.gift-card .content .gift-card_fb .image{width:469px;background-image:url('/local/templates/uyutnosti/images/gift_card_tb.png')}}@media (max-width:767px){section.gift-card .content .gift-card_fb .image{background-image:url('/local/templates/uyutnosti/images/gift_card_mob_2.png');width:100%;height:209px;bottom:0;top:auto;background-position:50% 50%;background-size:contain}}@media (max-width:420px){section.gift-card .content .gift-card_fb .image{background-size:cover;background-position:46% 50%}}section.gift-card .content .gift-card_fb .image::after{content:"";display:block;display:none;position:absolute;background:url('/local/templates/uyutnosti/images/gift_cards_one.png');width:220px;height:117px;background-size:cover;background-position:50%;border-radius:8px;-webkit-transform:rotate(-12deg);transform:rotate(-12deg);left:50%;top:50%;margin:-104px 0 0 -193px}@media (max-width:1080px){section.gift-card .content .gift-card_fb .image::after{-webkit-transform:scale(.9) rotate(-12deg);transform:scale(.9) rotate(-12deg);margin:-104px 0 0 -155px}}@media (max-width:767px){section.gift-card .content .gift-card_fb .image::after{-webkit-transform:scale(.75) rotate(-12deg);transform:scale(.75) rotate(-12deg)}}section.gift-card .content .gift-card_fb .image::before{content:"";display:block;display:none;position:absolute;background:url('/local/templates/uyutnosti/images/gift_cards_one.png');width:220px;height:117px;background-size:cover;background-position:50%;border-radius:8px;-webkit-transform:rotate(13deg);transform:rotate(13deg);left:50%;top:50%;margin:-30px 0 0 -8px}@media (max-width:1080px){section.gift-card .content .gift-card_fb .image::before{-webkit-transform:scale(.9) rotate(13deg);transform:scale(.9) rotate(13deg)}}@media (max-width:767px){section.gift-card .content .gift-card_fb .image::before{-webkit-transform:scale(.75) rotate(13deg);transform:scale(.75) rotate(13deg);margin:-30px 0 0 -40px}}section.gift-card .content .gift-card_fb::after{content:"";display:block;position:absolute;top:0;right:0;width:553px;height:100%;background:url('/local/templates/uyutnosti/images/gift_cards.png');background-position:50%;background-repeat:no-repeat;background-size:contain;display:none}@media (max-width:1080px){section.gift-card .content .gift-card_fb::after{width:469px}}@media (max-width:767px){section.gift-card .content .gift-card_fb::after{width:100%;height:182px;bottom:9px;top:auto}}section.gift-card .content .gift-card_fb .text_wrapper{border-radius:12px;border:solid 1.5px #a4493d;padding:32px 39px;min-height:223px}@media (max-width:1080px){section.gift-card .content .gift-card_fb .text_wrapper{padding:25px;min-height:218px}}@media (max-width:767px){section.gift-card .content .gift-card_fb .text_wrapper{padding:20px 20px 195px 20px}}section.gift-card .content .gift-card_fb .text_wrapper .title{display:block;margin:0 0 10px 0;font-size:32px;line-height:1.2;color:#a4493d}@media (max-width:1080px){section.gift-card .content .gift-card_fb .text_wrapper .title{font-size:28px}}@media (max-width:767px){section.gift-card .content .gift-card_fb .text_wrapper .title{font-size:22px;margin:0 0 16px 0}}section.gift-card .content .gift-card_fb .text_wrapper .text{display:block;font-size:16px;color:#33333d;width:100%;max-width:calc(100% - 420px)}@media (max-width:1080px){section.gift-card .content .gift-card_fb .text_wrapper .text{font-size:14px;max-width:calc(100% - 360px)}}@media (max-width:767px){section.gift-card .content .gift-card_fb .text_wrapper .text{max-width:100%}}section.gift-card .content .tabs_block{margin:0 0 67px 0;float:left;display:table;width:100%}section.gift-card .content .tabs_block .tabs span{font-weight:600;line-height:1.2;color:#33333d;display:block;float:left;padding:0 0 15px 0;margin:0 20px 0 0;border-bottom:solid 2px #d4dce0;cursor:pointer;font-size:20px}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs span{font-size:18px;margin:0 30px 0 0;padding:0 0 11px 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs span{font-size:16px;margin:0 28px 0 0}}section.gift-card .content .tabs_block .tabs span:last-child{margin:0}section.gift-card .content .tabs_block .tabs span.active{border-bottom:solid 2px #a4493d}section.gift-card .content .tabs_block .tabs_contecnt{display:table;width:100%;float:left}section.gift-card .content .tabs_block .tabs_contecnt>a{font-size:16px;font-weight:600;color:#a4493d;line-height:26px;padding:0 0 0 31px;margin:32px 0 0 0;position:relative;display:block;float:left;text-decoration:none}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt>a{margin:28px 0 0 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt>a{margin:15px 0 0 0}}section.gift-card .content .tabs_block .tabs_contecnt>a::after{content:"";display:block;position:absolute;left:0;top:0;width:26px;height:26px;background-image:url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m21.032 6.639-2.755-2.755a2.17 2.17 0 0 0-1.532-.634H9.75c-1.197 0-2.167.97-2.167 2.167v11.606c0 1.198.97 2.167 2.167 2.167h9.75c1.197 0 2.167-.97 2.167-2.167V8.172a2.17 2.17 0 0 0-.635-1.533Z' stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21.667 8.667h-4.334a1.084 1.084 0 0 1-1.083-1.084V3.25M18.417 19.19v1.393c0 1.197-.97 2.167-2.167 2.167H6.5a2.166 2.166 0 0 1-2.167-2.167V8.667c0-1.197.97-2.167 2.167-2.167h1.083' stroke='%23A4493D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}section.gift-card .content .tabs_block .tabs_contecnt .content{padding:30px 0 0 0;width:100%;float:left;display:none}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content{padding:24px 0 0 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content{padding:19px 0 0 0}}section.gift-card .content .tabs_block .tabs_contecnt .content.active{display:block}section.gift-card .content .tabs_block .tabs_contecnt .content>.title{display:block;float:left;width:100%;font-size:20px;font-weight:600;line-height:1.2;color:#33333d;margin:0 0 12px 0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content>.title{font-size:18px}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content>.title{font-size:16px}}section.gift-card .content .tabs_block .tabs_contecnt .content>.text{display:block;float:left;width:100%;font-size:18px;color:#33333d;margin:10px 0 12px 0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content>.text{font-size:16px;margin:8px 0 16px 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content>.text{margin:0 0 12px 0}}section.gift-card .content .tabs_block .tabs_contecnt .content .text_alert{display:block;float:left;width:100%;font-size:16px;font-weight:500;color:#7e8b91;margin:0 0 15px 0;padding:0 0 0 35px;position:relative}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .text_alert{margin:0 0 14px 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .text_alert{margin:0 0 15px 0}}section.gift-card .content .tabs_block .tabs_contecnt .content .text_alert::after{content:"";position:absolute;display:block;left:0;top:-2px;width:26px;height:26px;background-image:url("data:image/svg+xml,%3Csvg width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.999 8.667a.271.271 0 1 0 .002.541.271.271 0 0 0-.002-.541Z' stroke='%237E8B91' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M13 22.75A9.75 9.75 0 0 1 3.25 13 9.75 9.75 0 0 1 13 3.25 9.75 9.75 0 0 1 22.75 13 9.75 9.75 0 0 1 13 22.75ZM13 13v5.417' stroke='%237E8B91' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat}section.gift-card .content .tabs_block .tabs_contecnt .content ul{float:left;margin:13px 0 0 0;padding:0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content ul{margin:6px 0 0 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content ul{margin:0}}section.gift-card .content .tabs_block .tabs_contecnt .content ul li{margin:0 0 10px 0;font-size:16px;line-height:1.4;color:#33333d;display:block;min-height:32px;position:relative;padding:3px 0 0 42px}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content ul li{margin:0 0 15px 0;padding:0 0 0 42px}}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(1)::after{content:"1"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(2)::after{content:"2"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(3)::after{content:"3"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(4)::after{content:"4"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(5)::after{content:"5"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(6)::after{content:"6"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(7)::after{content:"7"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(8)::after{content:"8"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(9)::after{content:"9"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li:nth-child(10)::after{content:"10"}section.gift-card .content .tabs_block .tabs_contecnt .content ul li::after{content:"";background-color:rgba(230,141,97,0.1);width:32px;height:32px;border-radius:50%;position:absolute;left:0;top:0;text-align:center;line-height:32px;font-size:18px;font-weight:500;color:#a4493d}section.gift-card .content .tabs_block .tabs_contecnt .content .buttons{margin:13px 0 0 0;display:table;float:left;width:100%}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .buttons{margin:0}}section.gift-card .content .tabs_block .tabs_contecnt .content .buttons .button{display:block;float:left;border-radius:22px;background-color:#a4493d;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out;line-height:54px;padding:0 57px;font-size:16px;font-weight:600;color:#fff;cursor:pointer}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .buttons .button{line-height:40px;padding:0 26px}}section.gift-card .content .tabs_block .tabs_contecnt .content .buttons .button:hover{background-color:rgba(230,141,97,0.1);color:#a4493d}section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;float:left;width:100%;margin:7px 0 35px 0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages{gap:20px}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages{gap:12px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el{padding:20px;border-radius:22px;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);background-color:#fff;min-height:120px;width:calc(33.33% - 32px / 3*2);display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-line-pack:justify;align-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el{width:calc(33.33% - 20px / 3*2)}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el{width:100%;min-height:100px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .ico{margin:0 14px 0 0;width:54px;height:54px;border-radius:50%;background-color:#ebe0df;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .ico{width:40px;height:40px}}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .ico svg{max-width:24px;max-height:24px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .text_block{width:calc(100% - 54px - 14px)}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .text_block{width:calc(100% - 40px - 14px)}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .text_block .title{font-size:16px;font-weight:bold;display:block;float:left;width:100%;color:#33333d;margin:0 0 3px 0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .text_block .title{font-size:14px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .text_block .text{display:block;float:left;width:100%;color:#7e8b91;font-size:14px}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.advantages .el .text_block .text{font-size:12px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design{display:-webkit-box;display:-ms-flexbox;display:flex;gap:30px;-ms-flex-wrap:wrap;flex-wrap:wrap;float:left;width:100%;margin:10px 0 0 0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design{gap:20px}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design{gap:12px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el{width:320px;height:165px;padding:10px;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='165' fill='none'%3E%3Cg fill='%23953C30' clip-path='url(%23a)'%3E%3Cpath d='M350.956 101.598c-.936-26.36-17.367-50.108-42.092-60.845-.15-7.01-.298-14.02-.449-21.029l-14.33-.448c-1.045 7.307-2.088 14.615-3.134 21.923-23.594 10.416-39.761 32.719-42.092 58.162-3.485 38.01 25.906 61.219 27.765 62.634 14.33-.15 28.66-.298 42.99-.449 1.753-1.157 32.68-22.377 31.345-59.951l-.003.003Zm-50.323 44.781c-20.033 0-36.272-18.829-36.272-42.054s16.239-42.054 36.272-42.054c20.033 0 36.273 18.829 36.273 42.054s-16.24 42.054-36.273 42.054ZM-13.374 110.545c39.1-.16 78.197-.323 117.298-.483-.152 6.088-1.356 20.317-11.103 34.24-6.055 8.649-13.129 13.929-17.859 16.88H15.107c-4.537-2.435-12.743-7.644-19.309-17.363-9.432-13.953-9.415-28.232-9.172-33.274ZM.625 68.586c29.284-.966 58.568-1.929 87.853-2.894.025 4.041-.456 9.895-2.897 16.397-4.53 12.08-13.03 18.952-16.895 21.702-14.482.483-28.961.966-43.443 1.446-3.733-1.95-10.026-5.873-15.446-13.02C2.59 82.712 1.044 72.941.625 68.585ZM62.482 19.25c-12.085.906-24.173 1.808-36.258 2.714-.15 2.105-.25 4.375-.285 6.765-9.832-1.55-18.39 1.287-21.064 7.31-1.262 2.844-1.152 6.252.285 8.687 2.383 4.034 8.246 5.763 15.518 5.041 2.114-.209 4.356-.65 6.66-1.276a116.8 116.8 0 0 0 .796 4.558c1.23 6.197 6.858 10.528 13.176 10.182l12.13-.659c6.68-.362 11.903-5.829 12.035-12.509.03-1.492.033-3.024.01-4.585-.15-9.77-1.473-19.145-3-26.225l-.003-.003ZM7.585 43.293c-1.125-1.907-.88-4.446-.138-6.117 1.858-4.18 8.828-7.284 18.483-5.604.041 4.347.333 9.081 1.003 14.136-9.987 2.857-17.243 1.145-19.348-2.415ZM208.534 120.74a9.648 9.648 0 0 0-3.887-2.81v-17.577h-7.209L221 6.473l-2.196-.547-22.704 90.47V91.41L212.939.156l-2.225-.406L196.1 78.948V7.57h-2.262v83.637l-1.687 9.146h-.75l-7.02-99.264-2.258.159 6.752 95.54-22.172-94.016-2.203.513 22.893 97.071h-6.39v17.577a9.872 9.872 0 0 0-4.177 3.249c-1.175 1.589-1.743 3.538-1.743 5.51v36.156a2.59 2.59 0 0 0 1.971 2.518 67.265 67.265 0 0 0 15.874 1.884 67.129 67.129 0 0 0 15.645-1.875 2.606 2.606 0 0 0 2.01-2.527v-36.204c0-1.95-.551-3.886-1.707-5.459a13.288 13.288 0 0 0-.342-.442v-.003Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h320v165H0z' transform='translate(0 -.25)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-color:#a4493d;background-size:100% 100%;background-repeat:no-repeat;position:relative;border-radius:20px}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el{width:295px;height:152px}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el{width:100%;height:176px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el::after{content:"";border-radius:10px;border:solid 1.5px #fff;display:block;position:absolute;top:10px;left:10px;-webkit-box-sizing:border-box;box-sizing:border-box;height:calc(100% - 20px);width:calc(100% - 20px)}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .logo{margin:26.5px auto 0 auto;display:table}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .logo{margin:23px auto 0 auto}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .logo{margin:26px auto 0 auto}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .logo svg{float:left}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .logo svg{height:21px}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .logo svg{height:24px}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .summ{font-size:50px;line-height:1.2;color:#fff;display:table;width:100%;text-align:center;margin:23.8px 0 0 0}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .summ{font-size:46.1px;margin:22px 0 0 0}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .summ{font-size:53.6px;margin:25.8px 0 0 0}}section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .summ .curr{font-size:35px;line-height:1.2}@media (max-width:1080px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .summ .curr{font-size:32.3px}}@media (max-width:767px){section.gift-card .content .tabs_block .tabs_contecnt .content .els.gift_card_design .el .summ .curr{font-size:37.5px}}section.gift-card .content .blocks{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}@media (max-width:767px){section.gift-card .content .blocks{display:block}}@media (max-width:767px){section.gift-card .content .blocks .block{float:left}}section.gift-card .content .blocks .block:nth-child(1){margin:0 32px 0 0;width:57%}@media (max-width:1080px){section.gift-card .content .blocks .block:nth-child(1){margin:0 20px 0 0}}@media (max-width:767px){section.gift-card .content .blocks .block:nth-child(1){width:100%;margin:0 0 15px 0}}section.gift-card .content .blocks .block:nth-child(2){width:calc(43% - 32px)}@media (max-width:1080px){section.gift-card .content .blocks .block:nth-child(2){width:calc(43% - 20px)}}@media (max-width:767px){section.gift-card .content .blocks .block:nth-child(2){width:100%}}section.gift-card .content .blocks .block h2.title{display:block;margin:0 0 30px 0;font-size:40px;line-height:1.2;color:#33333d}@media (max-width:1080px){section.gift-card .content .blocks .block h2.title{margin:0 0 15px 0;font-size:36px}}@media (max-width:767px){section.gift-card .content .blocks .block h2.title{font-size:24px}}section.gift-card .content .blocks .block form{float:left;padding:47px 59px}@media (max-width:1080px){section.gift-card .content .blocks .block form{padding:30px 20px}}@media (max-width:767px){section.gift-card .content .blocks .block form{padding:20px}}section.gift-card .content .blocks .block form textarea{border:none}.red{color:#ff4b52}.owl-wrapper.category_banner .item{width:100%;height:200px}.category_banner{margin:0 0 20px 0;display:table;float:left;width:100%}.category_banner img{width:100%;float:left;display:none}@media (min-width:1040px){.category_banner img.pc{display:block}}@media (min-width:727px) and (max-width:1039px){.category_banner img.tb{display:block}}@media (min-width:421px) and (max-width:726px){.category_banner img.mb_w{display:block}}@media (max-width:420px){.category_banner img.mb{display:block}}.basket-coupon-section{-ms-flex-wrap:wrap;flex-wrap:wrap}.basket-coupon-section .basket-coupon-section{-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%;border:none}.basket-coupon-section .basket-coupon-section .bonus_comment{display:none}.basket-coupon-section .basket-coupon-section .line{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;width:100%;margin:0 0 9px 0}.basket-coupon-section .basket-coupon-section .use_bonus_block{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.basket-coupon-section .basket-coupon-section .use_bonus_block .name{margin:0 0 9px 0;padding:0 25px 0 0;display:table;position:relative}.basket-coupon-section .basket-coupon-section .use_bonus_block .value{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-line-pack:center;align-content:center;-ms-flex-item-align:center;align-self:center}.basket-coupon-section .basket-coupon-section .use_bonus_block .value .bonuses{color:#7e8b91;font-size:12px;display:block;float:left}.basket-coupon-section .basket-coupon-section .use_bonus_block .value .switcher_el{cursor:pointer}.basket-coupon-section .basket-coupon-section #bonus_payfield_block{display:none}.basket-coupon-section .basket-coupon-section #bonus_couponfield_block .bx-soa-custom-label{display:none}.basket-coupon-section .basket-coupon-section #bonus_couponfield_block+.row,.basket-coupon-section .basket-coupon-section #bonus_couponfield_block+.row+.row{display:none}section.basket .counpon_input{display:none}@media (max-width:1180px){.catalog_pc_menu{display:none}}.catalog_pc_menu .wrapper{display:none;padding:10px 0 0 0;-webkit-box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);box-shadow:0 4px 11px 0 rgba(51,51,61,0.07);position:absolute;width:100%;z-index:2;background:#fff;width:100vw;left:50%;margin-left:-50vw}.catalog_pc_menu .wrapper.active{display:block}.catalog_pc_menu .wrapper::after{content:"";height:1px;width:100%;background:#f2f2f2;top:10px;position:absolute}.catalog_pc_menu .wrapper .content{display:table;margin:0 auto;width:100%;max-width:1384px;position:relative}@media (max-width:1480px){.catalog_pc_menu .wrapper .content{max-width:calc(100% - 96px);margin:0 48px}}@media (max-width:1220px){.catalog_pc_menu .wrapper .content{margin:0 20px;max-width:calc(100% - 40px)}}@media (max-width:680px){.catalog_pc_menu .wrapper .content{margin:0 16px;max-width:calc(100% - 32px)}}.catalog_pc_menu .wrapper .menu_wrapper{width:calc(100% - 270px);float:left}.catalog_pc_menu .wrapper .menu_wrapper .header_menu{padding:40px 0;display:table;width:100%}.catalog_pc_menu .wrapper .menu_wrapper .header_menu a{font-weight:bold;text-decoration:none;width:33.33%;float:left;display:block;line-height:30px;padding-right:20px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.catalog_pc_menu .wrapper .menu_wrapper .header_menu a:hover{color:#a4493d}.catalog_pc_menu .wrapper .menu_wrapper .header_menu a.to_showcase{font-size:20px}.catalog_pc_menu .wrapper .menu_wrapper .header_menu a.to_all{font-size:16px}.catalog_pc_menu .wrapper .menu_wrapper .body_menu{border-top:1px solid #f2f2f2;padding:20px 0 0 0;display:table;width:100%}.catalog_pc_menu .wrapper .menu_wrapper .body_menu a{text-decoration:none;display:block;width:33.33%;float:left;margin:0 0 20px;padding-right:20px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}.catalog_pc_menu .wrapper .menu_wrapper .body_menu a:hover{color:#a4493d}.catalog_pc_menu .wrapper .banner_wrapper{width:250px;float:right;padding:20px 0}.catalog_pc_menu .wrapper .banner_wrapper img{width:100%;border-radius:15px}section.a_category_page .content .title_block .to_all{text-decoration:none;display:block;margin:0 0 0 32px;color:#a4493d;font-size:20px;font-weight:bold;padding-top:14px}@media (max-width:1180px){section.a_category_page .content .title_block .to_all{font-size:19px;padding-top:11px;margin:0 0 0 20px}}@media (max-width:767px){section.a_category_page .content .title_block .to_all{font-size:15px;padding-top:7px}}section.a_category_page .content .title_block .to_all:hover{text-decoration:underline}section.a_category_page .content .a_category_block{display:-webkit-box;display:-ms-flexbox;display:flex;gap:32px;margin:0 0 40px 0}@media (max-width:767px){section.a_category_page .content .a_category_block{display:table;width:100%}}section.a_category_page .content .a_category_block:last-child{margin:0}section.a_category_page .content .a_category_block .left_block{padding:30px;background:rgba(218,234,242,0.3);border-radius:22px;text-decoration:none;min-width:calc(25% - 32px / 4 * 3);position:relative}@media (max-width:1180px){section.a_category_page .content .a_category_block .left_block{min-width:calc(33.33% - 32px / 4 * 3)}}@media (max-width:767px){section.a_category_page .content .a_category_block .left_block{width:100%;padding:0;border-radius:0;background:none}}section.a_category_page .content .a_category_block .left_block .title{font-size:24px;font-weight:bold;line-height:1.4;display:block}@media (max-width:1180px){section.a_category_page .content .a_category_block .left_block .title{font-size:22px}}@media (max-width:767px){section.a_category_page .content .a_category_block .left_block .title{font-size:18px;margin:0 0 20px;text-decoration:underline}}section.a_category_page .content .a_category_block .left_block .to_all{color:#a4493d;display:block;position:absolute;left:40px;bottom:40px;width:calc(100% - 80px);font-size:14px;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:767px){section.a_category_page .content .a_category_block .left_block .to_all{display:none}}section.a_category_page .content .a_category_block .left_block .to_all:hover{text-decoration:underline}@media (max-width:767px){section.a_category_page .content .a_category_block .goods{width:100%}}section.a_category_page .content .a_category_block .goods .owl-nav{margin:0}section.a_category_page .content .a_category_block .goods .owl-nav button{position:absolute;top:50%;margin:0;margin-top:-48.5px;width:46px;height:46px;border-radius:50%;background:#f2f2f2;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='35' height='36' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='m20.417 12-5.834 6 5.834 6' stroke='%2333333D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' transform='rotate(90 17.5 17.5)' d='M0 0h36v35H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");background-position:50%;background-repeat:no-repeat;-webkit-transition:all 300ms ease-out;transition:all 300ms ease-out}@media (max-width:1180px){section.a_category_page .content .a_category_block .goods .owl-nav button{margin-top:-37px;width:38px;height:38px}}@media (max-width:767px){section.a_category_page .content .a_category_block .goods .owl-nav button{margin-top:-26.5px;width:30px;height:30px}}section.a_category_page .content .a_category_block .goods .owl-nav button:hover{-webkit-filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));filter:drop-shadow(0 4px 11px rgba(51,51,61,0.1));background-color:#fff}section.a_category_page .content .a_category_block .goods .owl-nav button.owl-prev{left:-23px}@media (max-width:1520px){section.a_category_page .content .a_category_block .goods .owl-nav button.owl-prev{left:-23px}}@media (max-width:1180px){section.a_category_page .content .a_category_block .goods .owl-nav button.owl-prev{left:-19px}}@media (max-width:767px){section.a_category_page .content .a_category_block .goods .owl-nav button.owl-prev{left:-15px}}section.a_category_page .content .a_category_block .goods .owl-nav button.owl-next{right:-62px;-webkit-transform:rotate(180deg);transform:rotate(180deg)}@media (max-width:1520px){section.a_category_page .content .a_category_block .goods .owl-nav button.owl-next{right:-23px}}@media (max-width:1180px){section.a_category_page .content .a_category_block .goods .owl-nav button.owl-next{right:-19px}}@media (max-width:767px){section.a_category_page .content .a_category_block .goods .owl-nav button.owl-next{right:-15px}}section.a_category_page .content .a_category_block .goods .owl-nav button span{display:none}.personal_wallet .personal_wallet_balance{font-size:24px;margin:40px 0 50px 0;display:block;float:left;width:100%}@media (max-width:767px){.personal_wallet .personal_wallet_balance{font-size:18px;margin:20px 0 30px 0}}.personal_wallet .row:nth-child(3) .py-2{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.personal_wallet .row:nth-child(3) .py-2 .row:nth-child(2){-webkit-box-ordinal-group:10;-ms-flex-order:9;order:9;width:100%}.personal_wallet .row:nth-child(3) .py-2 .row:nth-child(2) .alert{margin:10px 0 0 0}.personal_wallet .row:nth-child(3) .py-2 .form-group{float:left}@media (max-width:767px){.personal_wallet .row:nth-child(3) .py-2 .form-group{width:100%}}.personal_wallet .row:nth-child(3) .py-2 .form-group .bx-soa-custom-label{display:block;margin:0 0 4px 0;color:#7e8b91;font-size:12px}.personal_wallet .row:nth-child(3) .py-2 .form-group .soa-property-container{width:300px}@media (max-width:767px){.personal_wallet .row:nth-child(3) .py-2 .form-group .soa-property-container{width:100%}}.personal_wallet .row:nth-child(3) .py-2 .form-group .soa-property-container input{height:44px;padding:6px 16px;width:100%;border-radius:6px;border:1px solid #f2f2f2;background:rgba(255,255,255,0.3)}.personal_wallet .row:nth-child(3) .py-2 button{float:left;padding:0 15px;border-radius:22px;background-color:#a4493d;line-height:54px;font-size:16px;font-weight:600;color:#fff;border:none;cursor:pointer;margin:20.5px 0 0 20px;height:44px;line-height:44px;min-width:180px}@media (max-width:767px){.personal_wallet .row:nth-child(3) .py-2 button{margin:20px 0 0 0;width:100%;max-height:220px}}.certificate .image_wrapper{position:relative;float:left;width:100%;display:table;clear:both;margin:0 0 1rem 0}.certificate .image_wrapper img{float:left}.certificate .image_wrapper .img_price{position:absolute;background:#e3e1e2;width:51px;height:10px;left:185px;bottom:22px}
/* End */


/* Start:/local/templates/uyutnosti/css/uyutnosti_styles_2.css?17474665902470*/
section.marketplaces .content {
  color: red;
  order: 1;
}
section.marketplaces .content .els {
  margin: 0 -16px;
  position: relative;
}
@media (max-width: 1180px) {
  section.marketplaces .content .els {
    margin: 0 -10px;
  }
}
section.marketplaces .content .els .el {
  border-radius: 22px;
  background-color: #f4f9fb;
  margin: 0 16px 30px 16px;
  width: calc(25% - 32px);
  display: flex;
  float: left;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 120px;
}
section.marketplaces .content .els.n3 .el {
  width: calc(33.33% - 32px);
}
@media (max-width: 1180px) {
  section.marketplaces .content .els .el {
    margin: 0 10px 20px 10px;
    width: calc(25% - 20px);
  }
  section.marketplaces .content .els.n3 .el {
    margin: 0 10px 20px 10px;
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 767px) {
  section.marketplaces .content .els .el {
    margin: 0 10px 20px 10px;
    width: calc(50% - 20px);
  }
  section.marketplaces .content .els.n3 .el {
    margin: 0 10px 20px 10px;
    width: calc(50% - 20px);
  }
}
section.marketplaces .content .els .el svg {
  	max-width: 60%;
	width:200px;
}
section.marketplaces .content .els .el img {
  	max-width: 60%;
	width:200px;
}


.ya_button {
    border-radius: 22px;
    height: 54px;
	width:100%;
    border: none;
    background: #f2f2f2;
	transition: all 300ms ease-out;
    font-family: Vela Sans;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
	display: flex;
    justify-content: space-around;
    align-items: center;
}

.ya_button .ya_logo {
    width: 28px;
    height: 28px;
	background-image:url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='44' height='44' fill='%23FC3F1D'/%3E%3Cpath d='M24.7407 33.9778H29.0889V9.04443H22.7592C16.3929 9.04443 13.0538 12.303 13.0538 17.1176C13.0538 21.2731 15.2187 23.6163 19.0532 26.1609L21.3832 27.6987L18.3927 25.1907L12.4667 33.9778H17.1818L23.5115 24.5317L21.3098 23.0671C18.6496 21.2731 17.3469 19.8818 17.3469 16.8613C17.3469 14.2068 19.2183 12.4128 22.7776 12.4128H24.7223V33.9778H24.7407Z' fill='white'/%3E%3C/svg%3E%0A");
    background-size: contain;
    border-radius: 50%;
}

.ya_button .text {
    margin: 0;
}

.ya_button .ya_ava {
    width: 28px;
    height: 28px;
	background-image:url("https://avatars.mds.yandex.net/get-yapic/0/0-0/islands-50");
    background-size: contain;
}






/* End */


/* Start:/local/templates/uyutnosti/components/twofingers/location/.default/style.css?173916879211171*/
.tfl__link-container:hover,
.tfl__link-container{
    text-decoration:none;
    display: flex;
}

.tfl__link:hover,
.tfl__link {
    border-bottom:1px dashed;
    cursor: pointer;
}

.tfl__link-label{
    margin-right: 5px;
}

.tfl__link.tfl__link_order {
    font-weight: bold;
    line-height: 2;
}

.tfl-define-popup{
    background-color: #fff;
    text-align: center;
}

.tfl-define-popup__desktop{
    border-radius: 0.3em;
    -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    z-index: 1001;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    position: absolute;
}

.tfl-define-popup__text{
    padding-left: 20px;
    padding-right: 20px;
}

.tfl-define-popup__mobile{
    width: 100%;
    position: relative;
    z-index: 9999999;
    border-radius: 0!important;
}

.tfl-define-popup__mobile .tfl-define-popup__buttons{
    border-radius: 0!important;
}

.tfl-define-popup__desktop:before{
    position: absolute;
    width: 11px;
    height: 11px;
    transform: rotate(45deg);
    content: '';
    background-color: #fff;
    left: calc(50% - 5px);
    top: -5px;
}

.tfl-define-popup__buttons{
    text-align: center;
    overflow: hidden;
    display: grid;

}
.tfl-define-popup__button{
    /*width: 50%;*/
    display: block;
    padding: 10px 20px;
   /* float: left;*/
    box-sizing: border-box;
}

.tfl-define-popup__main{
    font-weight: bold;
}

.tfl-define-popup__second{
    background-color: #f5f5f5;
}

.tfl-popup{
    position: fixed;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: #fff;
    z-index: 2001;
    max-width: 100%;
    overflow: hidden;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: -1px 2px 13px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 2px 13px 0px rgba(0, 0, 0, 0.25);
    box-shadow: -1px 2px 13px 0px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    grid-template-columns: 1fr;
    grid-gap: 0;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity .2s ease-in, top .2s ease-out;
}

.tfl-popup.tfl-popup_loaded{
    opacity: 1;
    top: 45%;
}

.tfl-popup.tfl-popup_loading {
    background:url(/local/templates/uyutnosti/components/twofingers/location/.default/img/preloader.svg) center center no-repeat #ffffff;
}

.tfl-popup__title-container{
    position: relative;
    width: 100%;
}

.tfl-popup__search-wrapper{
    margin-bottom: 20px;
}

.tfl-popup__title{
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1;
    width: calc(100% - 40px);
}

.tfl-popup__search{
    position: relative;
    padding: 0;
    margin-bottom: 15px;
    margin-top: 26px;
}

ggwp .tfl-popup .tfl-popup__search-input {
    color: #333;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1;
    padding: 10px 5px 12px;
    width: 100%;
    position: relative;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
   /* background-position-x: center 50%;
    background-position-y: bottom calc(100% - 1px);*/
    background: bottom no-repeat,50% 100%/*calc(100% - 1px)*/;
    transition: background ease-out;
    background-size: 0 100%,100% 100%;
    background-image:
        linear-gradient(to top, #1f2949 2px, rgba(255, 86, 5, 0) 2px),
        linear-gradient(to top, rgb(189, 189, 189) 1px, rgba(189, 189, 189, 0) 1px);
}

ggwp .tfl-popup .tfl-popup__search-input:focus{
    background-size: 100% 100%, 100% 100%;
    transition: .3s;
    outline: none;
}

ggwp .tfl-popup__search-input::-webkit-input-placeholder {color: #bbb;}
ggwp .tfl-popup__search-input::-moz-placeholder {color: #bbb;}
ggwp .tfl-popup__search-input:-ms-input-placeholder {color: #bbb;}
ggwp .tfl-popup__search-input:-moz-placeholder {color: #bbb;}

ggwp .tfl-popup__search-input:focus::-webkit-input-placeholder {color: #d5d5d5;}
ggwp .tfl-popup__search-input:focus::-moz-placeholder {color: #d5d5d5;}
ggwp .tfl-popup__search-input:focus:-ms-input-placeholder {color: #d5d5d5;}
ggwp .tfl-popup__search-input:focus:-moz-placeholder {color: #d5d5d5;}

.tfl-popup__clear-field {
    /*background: url("/local/templates/uyutnosti/components/twofingers/location/.default/img/clear_field.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);*/
    height: 14px;
    position: absolute;
    right: 35px;
    top: calc(50%);
    transform: translateY(-50%);
    width: 14px;
    display:none;
}

.tfl-popup__search-icon{
    height: 40%;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    text-align: right;
}

.tfl-popup__search-icon svg{
    fill: #d5d5d5;
    background-color: transparent;
    width: auto;
    height: 100%;
}

.tfl-popup__search-icon svg path{
    fill: #d5d5d5;
}

.tfl-popup__container{
    position: relative;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
}

.tfl-popup__container:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 18px;
    bottom: 0;
    z-index: 1;
    background-image: -moz-linear-gradient(top, rgba(255,255,255,0.001) 0%, #fff);
    background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.001) 0%, #fff);
    background-image: -o-linear-gradient(top, rgba(255,255,255,0.001) 0%, #fff);
    background-image: -ms-linear-gradient(top, rgba(255,255,255,0.001) 0%, #fff);
    background-image: linear-gradient(top, rgba(255,255,255,0.001) 0%, #fff);
}

.tfl-popup__container.tfl-popup__container_no-found:before{
    content: none;
}

.favorites-right-locations.tfl-popup__with-locations.tfl-popup__with-defaults .tfl-popup__container{
    grid-template-columns: 2fr 1fr;
}

.favorites-left-locations.tfl-popup__with-locations.tfl-popup__with-defaults .tfl-popup__container{
    grid-template-columns: 1fr 2fr;
}

.tfl-popup__scroll-container{
    overflow: hidden;
    overflow-y: auto;
    position: relative;
    display: none;
}

.tfl-popup__scroll-container + .tfl-popup__scroll-container{
    padding-left: 10px;
}

.tfl-popup__with-locations .tfl-popup__scroll-container.tfl-popup__locations,
.tfl-popup__with-defaults .tfl-popup__scroll-container.tfl-popup__defaults{
    display: block;
}

.tfl-popup__list {
    list-style: none outside none;
    padding: 0;
    line-height: 1.25;
    margin-bottom: 15px;
    -webkit-column-width: 150px;
    -moz-column-width: 150px;
    column-width: 150px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 10px;
    -moz-column-gap: 10px;
    column-gap: 10px;
    -webkit-column-rule: 0px solid #ccc;
    -moz-column-rule: 0 solid #ccc;
    column-rule: 0px solid #ccc;
    display: block;
}

.favorites-under-search .tfl-popup__defaults .tfl-popup__list{
    margin-top: 15px;
    margin-bottom: 0;
}

.tfl-popup__search-wrapper .tfl-popup__defaults .tfl-popup__list{
    margin-top: 30px;
    margin-bottom: 0;
}

.tfl-popup__list li {
    padding-bottom: 7.5px;
    overflow: hidden;
    list-style: none;
    page-break-inside: avoid;
    break-inside: avoid;
    padding-left: 0;
}

.tfl-popup__list li:before,
.tfl-popup__list li:after {
    content: none;
}

.tfl-popup__location-link {
    color: #333;
    text-decoration: none;
    border-bottom: 1px dashed #777;
}

.tfl-popup__location-link:hover {
    color: #333;
    border-bottom: 1px dotted #333;
}

.tfl-popup__defaults .tfl-popup__location-link {
    font-weight: 700;
    border-bottom: 1px dotted #333;
}

.tf-location__region {
    display: block;
    font-size: 0.7em;
    color: #999;
    line-height: 1;
    margin-top: 0.3em;
}

.tfl-popup-overlay{
    display: none;
    position: fixed;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: url('/local/templates/uyutnosti/components/twofingers/location/.default/img/custom-popup-overlay.png') repeat;
    z-index: 10000;
}

@-webkit-keyframes animate-circle {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes animate-circle {
    from {
        transform: scale(0);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 0;
    }
}

.tfl-popup-overlay__loader {
    --size: 10rem;

    position: fixed;
    top: 50%;
    left: 50%;
    height: var(--size);
    width: var(--size);
    transform: translateX(-50%) translateY(-50%);
}

.tfl-popup-overlay__loader > .tfl-popup-overlay__circle {
    --duration: 2s;

    position: absolute;
    height: inherit;
    width: inherit;
    /*background: #FFA5AB;*/
    background: #FFFFFF;
    border-radius: 50%;
    -webkit-animation: animate-circle var(--duration) cubic-bezier(.9,.24,.62,.79) infinite;
    animation: animate-circle var(--duration) cubic-bezier(.9,.24,.62,.79) infinite;
}

.tfl-popup-overlay__loader > .tfl-popup-overlay__circle:nth-of-type(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.tfl-popup-overlay__loader > .tfl-popup-overlay__circle:nth-of-type(2) {
    -webkit-animation-delay: calc(var(--duration) / -3);
    animation-delay: calc(var(--duration) / -3);
}

.tfl-popup-overlay__loader > .tfl-popup-overlay__circle:nth-of-type(3) {
    -webkit-animation-delay: calc(var(--duration) / -6);
    animation-delay: calc(var(--duration) / -6);
}

.tfl-popup__close{
    display: flex;
    position: absolute;
    cursor: pointer;
    opacity: 0.2;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
    align-items: center;
    justify-content: center;
}



.tfl-define-popup .tfl-popup__close{
    top: 0;
    right: 0;
}

.tfl-popup__close:hover {
    opacity: 0.5;
}

.tfl-popup__close:before,
.tfl-popup__close:after {
    position: absolute;
    content: '';
    width: 2px;
    background-color: #333;
    height: 20px;
}

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

.tfl-popup__close:after {
    transform: rotate(-45deg);
}
.tfl-popup__clear-field .tfl-popup__close{
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
}
.tfl-popup__clear-field .tfl-popup__close:before,
.tfl-popup__clear-field .tfl-popup__close:after {
    width: 2px;
    height: 15px;
    top: 0;
    left: 6px;
}

.tfl-define-popup .tfl-popup__close {
    width: 30px;
    height: 30px;

}

.tfl-define-popup .tfl-popup__close:before,
.tfl-define-popup .tfl-popup__close:after {
    width: 2px;
    height: 15px;
    top: 7px;
    left: 15px;
}

.tfl-body-freeze{
    overflow-y: hidden;
    margin-right: calc(-1 * (100vw - 100%));
    height: auto;
}

.tfl-body-blur {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}

.tfl-popup__nofound-mess{
    display: none;
    font-size: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    width: 100%;
    color: #d5d5d5;
    transform: translateY(-50%);
}

.tfl-popup__container_no-found .tfl-popup__nofound-mess{
    display: block;
}
/* End */


/* Start:/local/templates/uyutnosti/components/bitrix/menu/uyutnosti_top/style.css?1739168790581*/
/* Left menu*/
ul.left-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
}

ul.left-menu li
{
	padding: 10px 16px;
	background:#F5F5F5 url(/local/templates/uyutnosti/components/bitrix/menu/uyutnosti_top/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/uyutnosti/components/arturgolubev/search.title/uyutnosti/style.css?173916879216585*/
/* div.title-search-result {
	display: block !important;
} */

.bx_smart_searche, .bx_smart_searche *, .bx-searchtitle, .bx-searchtitle * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
}

.bx-searchtitle {
	margin: 10px 0 0;
}
.bx-searchtitle-history {
	margin-top: 5px;
}
	.bx-searchtitle-history a {
		color: #222;
		text-decoration: underline;
	}
	.bx-searchtitle-history a:hover {
		text-decoration: none;
	}
.bx-searchtitle-popup-history {
	padding: 0 8px 8px 8px;
}
	.bx-searchtitle-popup-history-title {
		font-size: 16px;
	}
	.bx-searchtitle-popup-history-item {
		padding: 4px 0;
	}
		.bx-searchtitle-popup-history-item::before {
			content: "";
			width: 16px;
			height: 16px;
			background: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/search-icon.svg) center center no-repeat;
			background-size: 12px auto;
			display: inline-block;
			vertical-align: middle;
			margin-right: 5px;
		}
		.bx-searchtitle-popup-history a {
			color: #222;
			text-decoration: underline;
			vertical-align: middle;
		}
		.bx-searchtitle-popup-history a:hover {
			text-decoration: none;
		}

.bx-searchtitle .bx-block-title {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #343434;
	text-transform: uppercase;
	font-size: 12px;
	margin-bottom: 9px;
	font-weight: 600;
}
.bx-searchtitle .bx-input-group {
	position: relative;
	display: table;
	border-collapse: separate;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.bx-searchtitle .bx-input-group {}
.bx-searchtitle .bx-input-group .bx-form-control {
	display: table-cell;
	position: relative;
	z-index: 2;
	float: left;
	width: 100%;
	margin-bottom: 0;
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #333;
	background-color: #f8fafc;
	border: 1px solid #d5dadc;
	border-right: none;
	border-radius: 1px 0 0 1px;
	outline: none;
	box-shadow: none !important;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bx-searchtitle .bx-input-group .bx-form-control:focus {
	background-color: #fff;
}
.bx-ios .bx-searchtitle .bx-input-group .bx-form-control {
	/* Fix of input shadow for IOS browsers. */
	background-image: -webkit-linear-gradient(#f8fafc 0%, #f8fafc 100%);
	background-image: linear-gradient(#f8fafc 0%, #f8fafc 100%);
}
.bx-searchtitle .bx-input-group-btn {
	position: relative;
	font-size: 0;
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
	display: table-cell;
	line-height: normal;
}
.bx-searchtitle .bx-input-group-btn button {
	position: relative;
	border: none;
	background: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/search-icon.png) center center no-repeat #95a1a8;
	display: inline-block;
	margin-bottom: 0;
	cursor: pointer;
	padding:0;
	border-radius: 0 1px 1px 0;
	color: #fff;
	font-size: 16px;
	line-height: 1.42857143;
	height: 34px;
	width: 40px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.bx-searchtitle .bx-input-group-btn button:hover {
	background-color: #1484CE;
}


div.title-search-result {
	border:0 none !important;
	border-top: 0 none;
	display:none;
	overflow:hidden;
	z-index:999;
	min-width: 200px;
	margin-top: 3px;
	background-color: #FFF;
	/* border-top: 0 none; */
	border-radius: 2px;
	box-shadow: 0px 0px 7px -2px #d6d6d6;
	
	/* display: block !important; */
}

div.title-search-fader {
	display:none;
	background-image: url('/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/fader.png');
	background-position: right top;
	background-repeat: repeat-y;
	position:absolute;
}

p.title-search-preview {
	font-size:12px;
}
div.title-search-result td.title-search-price span {
	font-size: 26px;
}

/*========================*/
.bx_smart_searche {
	padding-top:8px;
	
	border-top: 0 none;
	border-radius: 0 0 3px 3px;
}
.bx_smart_searche .bx_info_wrap{
	margin-left: 85px;
}
.bx_smart_searche .bx_img_element{
	float: left;
	padding: 5px;
	width: 75px;
	text-align: center;
}
.bx_smart_searche .bx_item_block{
	min-height: 65px;
	position: relative;
}
.bx_smart_searche .bx_image{
	/* width: 45px;
	height: 45px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border: 1px solid #e8e8e8; */
	display: inline-block;
	max-width: 100%;
}
.bx_smart_searche .bx_image.empty_image{
	background-image: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/image/noimg.png);
}
.bx_smart_searche .bx_item_element{
	padding: 8px 0;
}
.bx_smart_searche .bx_item_element_all_result {
	text-align: center;
}
.bx_smart_searche .bx_item_element hr{
	margin: 0;
	border: none;
	border-bottom: 1px solid #e5e5e5;
}
.bx_smart_searche .bx_item_element a{
	margin-top: 5px;
	display: inline-block;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	font-weight: bold;
}
.bx_smart_searche .bx_item_element a b{
	font-weight: bold;
}
.bx_smart_searche .bx_item_element a b{color: #000;}
.bx_smart_searche .bx_item_element a:hover,
.bx_smart_searche .bx_item_element a:hover b{text-decoration: underline;}
.bx_smart_searche .bx_item_preview_text{
	font-size:13px;
	padding: 5px 10px 5px 0;
}
.bx_smart_searche .bx_price{
	font-weight:bold;
	font-size:15px;
	margin-top: 5px;
}
.bx_smart_searche .bx_price .old{
	font-weight: normal;
	text-decoration: line-through;
	color: #636363;
	font-size: 12px;
	vertical-align: middle;
}
.bx_smart_searche .bx_item_block.all_result{min-height:0}
.bx_smart_searche .bx_item_block.others_result{
	min-height: 0;
	line-height: 12px;
	padding: 0;
}
.bx_smart_searche .bx_item_block.all_result .all_result_button{
	display: inline-block;
	font-size: 14px;
	background-color: #1485CE;
	border: 1px solid;
	border-color: #1485CE;
	color: #FFF;
	padding: 0 22px;
	height: 34px;
	text-decoration: none;
	border-radius: 2px;
	margin: 0 0 8px;
	
	line-height: 34px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .5px;
}
.bx_smart_searche .bx_item_block_title {
	font-weight: bold;
	font-size: 16px;
	margin: 4px 8px;
}
.bx_smart_searche .bx_item_block_href {
	display: block;
	text-decoration: none;
	margin-bottom: 5px;
	padding: 8px;
	line-height: 14px;
}
.bx_smart_searche .bx_item_block_href:hover {
	background-color: #feeed2;
}
.bx_smart_searche .bx_item_block_hrline {
	border-bottom: 1px solid #f5a61c;
	margin: 0 8px 5px;
}
.bx_item_block_item_clear {
	display: block;
	clear:both;
}
.bx_smart_searche .bx_item_block_item_info_wrap {
	display: block;
}
.bx_smart_searche .bx_item_block_item_info_wrap.wpic {
	padding-left: 39px;
}
.bx_smart_searche .bx_item_block_item_info {
	display: block;
}
.bx_smart_searche .bx_item_block_href_category_title {
	color: #a2a2a2;
	/* font-weight: bold; */
}
.bx_smart_searche .bx_item_block_href_category_name {
	color: #f5a61c;
	font-weight: bold;
	text-transform: uppercase;
}
.bx_smart_searche .bx_item_block_item_image {
	width: 34px;
	height: 34px;
	float:left;
	margin-right: 5px;
	position: relative;
	color: #333;
}
	.bx_smart_searche .bx_item_block_item_image img {
		position: absolute;
		top: 0;
		left:0;
		right:0;
		bottom:0;
		margin: auto;
		max-width: 100%;
		max-height: 100%;
	}
	.bx_item_block_item_image svg {

	}
.bx_smart_searche .bx_item_block_item_name {
	color: #333;
	overflow: hidden;
	height: 34px;
	display: block;
	line-height: 17px;
	display: flex;
}
.bx_smart_searche .bx_item_block_item_name_flex_align {
	margin: auto 0;
}
.bx_smart_searche .bx_item_block_item_simple_name {
	color: #333;
	display: block;
	line-height: 17px;
}
.bx_smart_searche .bx_item_block_item_name b, .bx_smart_searche .bx_item_block_item_simple_name b {
	color: #f5a61c;
}
.bx_smart_searche .bx_item_block_item_price {
	float:right;
	text-align: right;
	color: #333;
	line-height: 17px;
	padding-left: 5px;
}
.bx_smart_searche .bx_item_block_item_price.bx_item_block_item_price_only_one {
	line-height: 34px;
}
.bx_smart_searche .bx_item_block_item_price .bx_price_new {
	white-space: nowrap;
	font-weight: bold;
	display: block;
}
.bx_smart_searche .bx_item_block_item_price .bx_price_old {
	white-space: nowrap;
	text-decoration: line-through;
}
.bx_smart_searche .bx_item_block_item_text {
	color: #9b9b9b;
	display: block;
	margin-top: 8px;
	font-size: 13px;
	line-height: 15px;
}
.bx_smart_searche .bx_item_block_item_props {
	color: #9b9b9b;
	display: block;
	margin-top: 8px;
	font-size: 13px;
	line-height: 15px;
}
.bx_smart_searche .bx_item_block_item_text.wpic, .bx_smart_searche .bx_item_block_item_props.wpic {
	/* padding-left: 39px; */
}
.bx_item_block_item_prop_item {
	display: block;
}
.bx_smart_no_result_find {
	padding: 0 8px 8px;
}


/* clear cross */
.bx-searchtitle .bx-searchtitle-clear {
	position: absolute;
	top: 4px;
	right: 110%;
	width: 28px;
	height: 28px;
	z-index: 4;
	display: none;
	font-size: 28px;
	line-height: 28px;
	text-align: center;
	cursor: pointer;
	color: #666;
}
.bx-searchtitle .bx-searchtitle-clear:after{
	display: inline-block;
	content: "\00d7";
}

/* voice input */
.bx-searchtitle .bx-searchtitle-voice {
	position: absolute;
	top: 3px;
	right: 110%;
	width: 28px;
	height: 28px;
	z-index: 4;
	display: none;
	font-size: 28px;
	line-height: 28px;
	text-align: center;
	cursor: pointer;
	color: #666;
	background: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/voice.svg?v=3) center center no-repeat;
	background-size: 22px auto;
}
	.bx-searchtitle .bx-searchtitle-voice.voice-show {
		display: block;
	}

	.bx-searchtitle .bx-searchtitle-voice.active::after, .bx-searchtitle .bx-searchtitle-voice.active::before {
		content: '';
		position: absolute;
		border: 3px solid #3D64FF;
		left: -20px;
		opacity: 0;
		right: -20px;
		top: -20px;
		bottom: -20px;
		border-radius: 50%;
		animation: searchpulse 2.5s linear infinite;
	}

	.bx-searchtitle .bx-searchtitle-voice.active::after {
		animation-delay: 1.25s;
	}

	@keyframes searchpulse {
		0% {
			transform: scale(0.5);
			opacity: 0;
		}
		50% {
			opacity: 1;
		}
		100% {
			transform: scale(1.2);
			opacity: 0;
		}
	}



/* preloader base */
.bx-searchtitle .bx-searchtitle-preloader {
	position: absolute;
	top: 2px;
	right: 110%;
	width: 30px;
	height: 30px;
	z-index: 5;
	display: none;
	/* display: block; */
}
.bx-searchtitle .bx-searchtitle-preloader.view {
	background: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/loader_orange.gif) center center no-repeat #fff;
}



/* blue */
.bx_smart_searche.theme-blue .bx_item_block_item_image {
	color:#0083d1;
}
.bx-searchtitle.theme-blue .bx-input-group .bx-form-control {
	border-color:#0083d1;
}
.bx-searchtitle.theme-blue .bx-searchtitle-preloader.view {
	background-image: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/loader_blue.gif);
}
.bx_smart_searche.theme-blue .bx_item_block.all_result .all_result_button{
	background-color: #0083d1;
	border-color: #0083d1;
}
.bx-searchtitle.theme-blue .bx-input-group-btn button {
	background-color: #0083d1;
	border-color: #0083d1;
	color: #FFF;
}
.bx-searchtitle.theme-blue .bx-input-group-btn button:hover, .bx_smart_searche.theme-blue .bx_item_block.all_result .all_result_button:hover {
	background-color: #5ca6e4;
	border-color: #5ca6e4;
	text-decoration: none;
}
.bx_smart_searche.theme-blue .bx_item_element a b{
	color: #5ca6e4;
}
.bx_smart_searche.theme-blue .bx_item_block_href:hover {
	background-color: #b2d9f1;
}
.bx_smart_searche.theme-blue .bx_item_block_href_category_name {
	color:#0083d1;
}
.bx_smart_searche.theme-blue .bx_item_block_item_name b, .bx_smart_searche.theme-blue .bx_item_block_item_simple_name b {
	color:#0083d1;
}
.bx_smart_searche.theme-blue .bx_item_block_hrline {
	border-color: #0083d1;
}
/* black */
.bx_smart_searche.theme-black .bx_item_block_item_image {
	color:#333;
}
.bx-searchtitle.theme-black .bx-input-group .bx-form-control {
	border-color:#333;
}
.bx-searchtitle.theme-black .bx-searchtitle-preloader.view {
	background-image: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/loader_black.gif);
}
.bx_smart_searche.theme-black .bx_item_block.all_result .all_result_button{
	background-color: #333;
	border-color: #333;
}
.bx-searchtitle.theme-black .bx-input-group-btn button {
	background-color: #333;
	border-color: #333;
	color: #FFF;
}
.bx-searchtitle.theme-black .bx-input-group-btn button:hover, .bx_smart_searche.theme-black .bx_item_block.all_result .all_result_button:hover {
	background-color: #5c5c5c;
	border-color: #5c5c5c;
	text-decoration: none;
}
.bx_smart_searche.theme-black .bx_item_element a b{
	color: #5c5c5c;
}
.bx_smart_searche.theme-black {
	/* border:1px solid #333; */
	border-top: 0 none;
	border-radius: 0 0 3px 3px;
}
.bx_smart_searche.theme-black .bx_item_block_href:hover {
	background-color: #eaeaea;
}
.bx_smart_searche.theme-black .bx_item_block_href_category_name {
	color:#333;
}
.bx_smart_searche.theme-black .bx_item_block_item_name b, .bx_smart_searche.theme-black .bx_item_block_item_simple_name b {
	color:#333;
}
.bx_smart_searche.theme-black .bx_item_block_hrline {
	border-color: #333;
}
/* green */
.bx_smart_searche.theme-green .bx_item_block_item_image {
	color:#159ebb;
}
.bx-searchtitle.theme-green .bx-input-group .bx-form-control {
	border-color:#159ebb;
}
.bx-searchtitle.theme-green .bx-searchtitle-preloader.view {
	background-image: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/loader_green.gif);
}
.bx_smart_searche.theme-green .bx_item_block.all_result .all_result_button{
	background-color: #159ebb;
	border-color: #159ebb;
}
.bx-searchtitle.theme-green .bx-input-group-btn button {
	background-color: #159ebb;
	border-color: #159ebb;
	color: #FFF;
}
.bx-searchtitle.theme-green .bx-input-group-btn button:hover, .bx_smart_searche.theme-green .bx_item_block.all_result .all_result_button:hover {
	background-color: #44b1c9;
	border-color: #44b1c9;
	text-decoration: none;
}
.bx_smart_searche.theme-green .bx_item_element a b{
	color: #44b1c9;
}
.bx_smart_searche.theme-green .bx_item_block_href:hover {
	background-color: #d0ebf1;
}
.bx_smart_searche.theme-green .bx_item_block_href_category_name {
	color:#159ebb;
}
.bx_smart_searche.theme-green .bx_item_block_item_name b, .bx_smart_searche.theme-green .bx_item_block_item_simple_name b {
	color:#159ebb;
}
.bx_smart_searche.theme-green .bx_item_block_hrline {
	border-color: #159ebb;
}
/* red */
.bx_smart_searche.theme-red .bx_item_block_item_image {
	color:#E22B2B;
}
.bx-searchtitle.theme-red .bx-input-group .bx-form-control {
	border-color:#E22B2B;
}
.bx-searchtitle.theme-red .bx-searchtitle-preloader.view {
	background-image: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/loader_red.gif);
}
.bx_smart_searche.theme-red .bx_item_block.all_result .all_result_button{
	background-color: #E22B2B;
	border-color: #E22B2B;
}
.bx-searchtitle.theme-red .bx-input-group-btn button {
	background-color: #E22B2B;
	border-color: #E22B2B;
	color: #FFF;
}
.bx-searchtitle.theme-red .bx-input-group-btn button:hover, .bx_smart_searche.theme-red .bx_item_block.all_result .all_result_button:hover {
	background-color: #e95c5c;
	border-color: #e95c5c;
	text-decoration: none;
}
.bx_smart_searche.theme-red .bx_item_element a b{
	color: #e95c5c;
}
.bx_smart_searche.theme-green .bx_item_block_href:hover {
	background-color: #f9d4d4;
}
.bx_smart_searche.theme-red .bx_item_block_href_category_name {
	color:#E22B2B;
}
.bx_smart_searche.theme-red .bx_item_block_item_name b, .bx_smart_searche.theme-red .bx_item_block_item_simple_name b {
	color:#E22B2B;
}
.bx_smart_searche.theme-red .bx_item_block_hrline {
	border-color: #E22B2B;
}
/* yellow */
.bx_smart_searche.theme-yellow .bx_item_block_item_image {
	color:#F9A91D;
}
.bx-searchtitle.theme-yellow .bx-input-group .bx-form-control {
	border-color:#F9A91D;
}
.bx-searchtitle.theme-yellow .bx-searchtitle-preloader.view {
	background-image: url(/local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/images/loader_yellow.gif);
}
.bx_smart_searche.theme-yellow .bx_item_block.all_result .all_result_button{
	background-color: #F9A91D;
	border-color: #F9A91D;
}
.bx-searchtitle.theme-yellow .bx-input-group-btn button {
	background-color: #F9A91D;
	border-color: #F9A91D;
	color: #FFF;
}
.bx-searchtitle.theme-yellow .bx-input-group-btn button:hover, .bx_smart_searche.theme-yellow .bx_item_block.all_result .all_result_button:hover {
	background-color: #faba4a;
	border-color: #faba4a;
	text-decoration: none;
}
.bx_smart_searche.theme-yellow .bx_item_element a b{
	color: #faba4a;
}
.bx_smart_searche.theme-yellow .bx_item_block_href_category_name {
	color:#F9A91D;
}
.bx_smart_searche.theme-yellow .bx_item_block_item_name b, .bx_smart_searche.theme-yellow .bx_item_block_item_simple_name b {
	color:#F9A91D;
}
.bx_smart_searche.theme-yellow .bx_item_block_hrline {
	border-color: #F9A91D;
}
/* End */


/* Start:/local/templates/uyutnosti/components/bitrix/breadcrumb/uyutnosti/style.css?1739168790585*/
.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;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

/* End */


/* Start:/local/templates/uyutnosti/styles.css?17510310087536*/
header>.content .line.n1 .column_1,
section.download,
.search-page {
	display:none;
}

header>.content .line.n1 .column_2 {
}

.form-group.bx-soa-customer-field[data-property-id-row="35"],
.form-group.bx-soa-customer-field[data-property-id-row="36"],
.form-group.bx-soa-customer-field[data-property-id-row="37"],
.form-group.bx-soa-customer-field[data-property-id-row="38"],
.form-group.bx-soa-customer-field[data-property-id-row="39"],
.form-group.bx-soa-customer-field[data-property-id-row="40"],
.form-group.bx-soa-customer-field[data-property-id-row="41"],
.form-group.bx-soa-customer-field[data-property-id-row="42"],
.form-group.bx-soa-customer-field[data-property-id-row="43"],
.form-group.bx-soa-customer-field[data-property-id-row="44"],
.form-group.bx-soa-customer-field[data-property-id-row="45"]   {
	display:none !important;
}


form[name="form_auth"][data-step="1"] {

}

form[name="form_auth"] .step {
	display:none !important;
}

form[name="form_auth"][data-step="1"] .step.n1 {
	display:block !important;
}

form[name="form_auth"][data-step="2"] .step.n2 {
	display:block !important;
}

form span.button.n1 {
	padding:0 20px !important;
	line-height:54px !important;
	text-align:center !important;
}

form[name="form_auth"] .text {
    font-size: 14px;
    display: block;
    line-height: normal;
    color: #33333d;
    margin: 0 0 20px 0;
}
.change_phone {
    display: table;
    margin: 15px 0 0 0;
    text-align: center;
    width: 100%;
    float: left;
    color: #A4493D;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
}
.change_phone:hover {
	text-decoration:none;
}

#popup-window-content-modal_auth .error.active {
    color: red;
    margin: 5px 0 0 0;
    display: block;
}

#popup-window-content-modal_auth .re_code {
    margin: 5px 0 0 0;
    display: table;
    text-align: left;
    width: 100%;
    float: left;
    color: #A4493D;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
}

header>.content .line.n1 .column_1 {
	display: block;
}

header>.content .line.n2 .logo img[src="/local/templates/uyutnosti/images/logo_ny.svg"] {
    position: relative;
    margin: 5px 0 10.5px 0;
}

@media(max-width: 1180px){
	header>.content .line.n2 .logo img[src="/local/templates/uyutnosti/images/logo_ny.svg"] {
		margin: -2.5px 0 0 0;
	}
}


.col-md-5.mb-lg-0.col-12.mb-3.order-md-2.order-1.bx-soa-pp-desc-container {
	display:none !important;
}

.col.hide {
	display:none;
}

#yandex-id-container {
    float: left;
    width: 100%;
    margin: 20px 0 0 0;
}


section.basket > .content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_3 + .bx-soa-pp-company-image::before {
    content: "Самовывоз Охта Молл";
}

section.basket > .content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_86 + .bx-soa-pp-company-image::before {
    content: "Самовывоз Балкания Nova";
}

section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_86+.bx-soa-pp-company-image::after {
    content: "Санкт-Петербург, Балкания Nova (магазин Уютности)";
}

section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-delivery .bx-soa-pp-item-container .bx-soa-pp-company #ID_DELIVERY_ID_86+.bx-soa-pp-company-image {
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)' stroke='%23A4493D' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath clip-rule='evenodd' d='M22.928 19.23v-6.46c0-.477-.255-.917-.667-1.155l-5.594-3.23a1.33 1.33 0 0 0-1.334 0l-5.594 3.23a1.336 1.336 0 0 0-.667 1.154v6.46c0 .476.255.916.667 1.155l5.594 3.23a1.33 1.33 0 0 0 1.334 0l5.594-3.23a1.33 1.33 0 0 0 .667-1.153Z' stroke-width='1.25'/%3E%3Cpath d='M10 4H6.667A2.666 2.666 0 0 0 4 6.667V10M4 22v3.333A2.666 2.666 0 0 0 6.667 28H10M22 28h3.333A2.666 2.666 0 0 0 28 25.333V22M28 10V6.667A2.666 2.666 0 0 0 25.333 4H22' stroke-width='1.383'/%3E%3Cpath d='M16 23.787V16M9.25 12.103 16 16l6.75-3.897' stroke-width='1.25'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h32v32H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") !important;
}



.bx-soa-cart-total-line.delivery .bx-soa-cart-d br,
.bx-soa-cart-total-line.delivery .bx-soa-cart-d .bx-price-old {
	display:none;
}

.bx-soa-cart-total-line.delivery .bx-soa-cart-d .bx-soa-price-free {
	color:unset;
}

.bx-soa-cart-total-line.bonuses span {
	color: #a4493d !important;
}

section.basket>.content #bx-soa-order-form .bx-soa-cart-total .bx-soa-cart-total-line.bx-soa-cart-total-line-total {
	order:9 !important;
}

.bx-soa-cart-total-line.bx-soa-cart-total-line-total {
	position:relative;
    padding-top: 10px !important;
    margin-top: 10px !important;
}

.bx-soa-cart-total-line.bx-soa-cart-total-line-total::after {
	content:" ";
	display:block;
	width:85%;
	height:1px;
	left:7.5%;
	top:0;
	position:absolute;
	background:#f0f0f0;
}


.bx-soa-cart-total-line.bonuses_add {
	order:10 !important;
	margin-top: -10px !important;
}

.bx-soa-cart-total-line.bonuses_add .bx-soa-cart-t {
    font-size: 12px !important;
}

.bx-soa-cart-total-line.bonuses_add .bx-soa-cart-d {
    border-radius: 22px;
    background-color: #ebe0df;
	color:#a4493d !important;
	font-size: 11px !important;
	padding:3px 5px;
}



#bx-soa-orderSave .text {
	color: #7e8b91;
    font-family: "Vela Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin: 10px 0 0 0;
    display: block;
    float: left;
}

#bx-soa-orderSave .text a {
	text-decoration:underline;
	color:unset;
}

#bx-soa-orderSave .text a:hover {
	text-decoration:none;
}


button + label[for="agree_popup"] {
    margin:10px 0 0 0 !important
}
button + label[for="agree_popup"] a {
    color:unset;
}

.catalog_pc_menu .wrapper {
	z-index:3;
}

#yandex-id-container {
	display:none;
}

@media(max-width:767px){
	.product_page>.content .column.n1 .owl-wrapper.big .owl-carousel .owl-dots,
	section.slider>.content .owl-wrapper .owl-carousel .owl-dots {
		display:none;
	}
}

.cookie_alert_block {
    position: fixed;
    left: 20px;
    bottom: 20px;
    padding: 30px;
    background: #fff;
    z-index: 2;
    box-shadow: 0 4px 11px 0 rgba(51, 51, 61, 0.07);
    max-width: calc(100% - 40px);
    width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie_alert_block .text {
    font-size: 13px;
	float: left;
    width: calc(100% - 110px);
}

.cookie_alert_block .button {
	float: right;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: normal;
    color: #fff;
    border-radius: 22px;
    background-color: #a4493d;
    padding: 0 16px;
    line-height: 42px;
    text-decoration: none;
    cursor: pointer;
	width:95px;
	text-align: center;
}

.cookie_alert_block .button:hover {
	opacity:.8;
}

@media(max-width:767px){
	.cookie_alert_block {
		left: 0;
		max-width: 100%;
		width: 100%;
		bottom: 60px;
		display:table;
		padding:20px;
	}
	.cookie_alert_block.up {
		bottom: 122px;
	}
	.cookie_alert_block .text {
		font-size: 12px;
		width: 100% ;
	}
	.cookie_alert_block .button {
		font-size:14px;
		width: 100%;
		margin: 15px 0 0 0;
		line-height: 40px;
	}
}

.bx_smart_searche .bx_item_block.all_result .all_result_button {
	color:#fff !important;
}
/* End */


/* Start:/local/templates/uyutnosti/template_styles.css?17477309141797*/
.filter__btn{
    background: white;
}
.filter__input + .filter__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}

.filter__input + .filter__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 26px;
    cursor: pointer; }

.filter__input + .filter__label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #efe7e3;
    background: #ffffff;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s; }

.filter__input + .filter__label:after {
    content: '';
    position: absolute;
    opacity: 0;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: #d72a2f;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s; }

.filter__input:checked + .filter__label:after {
    opacity: 1; }

.filter__input:checked + .filter__label:before {
    border: 1px solid #cfb7aa; }


.carts-product__inner .carts-mini-item__img{
    width: auto;
}
.carts-product__inner .carts-big-item__img{
    background-size: contain;
    background-position: center;
}
.catalog-product__content,
.catalog-workroom__content{
    width: 100%;
}

.s-workroom-slider .catalog-items:nth-child(3n) {
    margin-right: 30px;
}

.bx_catalog_tile_slider_pagination{
    display: none;
}


section.basket>.content #bx-soa-order-form #bx-soa-order #bx-soa-paysystem .bx-soa-pp-item-container .row .bx-soa-pp-company:last-child {
	display:block !important;
}





/* End */
/* /local/templates/uyutnosti/css/animate.css?173916879257095 */
/* /local/templates/uyutnosti/css/owl.carousel.min.css?17391687923351 */
/* /local/templates/uyutnosti/css/owl.theme.default.min.css?17391687921013 */
/* /local/templates/uyutnosti/css/jquery.fancybox.min.css?173916879212795 */
/* /local/templates/uyutnosti/css/nouislider.min.css?17391687924220 */
/* /local/templates/uyutnosti/css/nice-select.min.css?17391687923117 */
/* /local/templates/uyutnosti/css/uyutnosti.ru_styles.css?1744813680466083 */
/* /local/templates/uyutnosti/css/uyutnosti_styles_2.css?17474665902470 */
/* /local/templates/uyutnosti/components/twofingers/location/.default/style.css?173916879211171 */
/* /local/templates/uyutnosti/components/bitrix/menu/uyutnosti_top/style.css?1739168790581 */
/* /local/templates/uyutnosti/components/arturgolubev/search.title/uyutnosti/style.css?173916879216585 */
/* /local/templates/uyutnosti/components/bitrix/breadcrumb/uyutnosti/style.css?1739168790585 */
/* /local/templates/uyutnosti/styles.css?17510310087536 */
/* /local/templates/uyutnosti/template_styles.css?17477309141797 */
